{"id":13551578,"url":"https://github.com/qeeqbox/osint","last_synced_at":"2025-10-15T07:40:10.651Z","repository":{"id":38877113,"uuid":"359927291","full_name":"qeeqbox/osint","owner":"qeeqbox","description":"Build custom OSINT tools and APIs (Ping, Traceroute, Scans, Archives, DNS, Scrape, Whois, Metadata \u0026 built-in database for more info) with this python package","archived":false,"fork":false,"pushed_at":"2021-07-11T02:58:00.000Z","size":3501,"stargazers_count":85,"open_issues_count":0,"forks_count":14,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-03-27T08:11:17.700Z","etag":null,"topics":["dns","osint","ping","python","scan","scraper","tool","traceroute","whois"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/qeeqbox.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2021-04-20T19:20:16.000Z","updated_at":"2025-02-13T19:06:44.000Z","dependencies_parsed_at":"2022-09-26T16:21:06.098Z","dependency_job_id":null,"html_url":"https://github.com/qeeqbox/osint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeeqbox%2Fosint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeeqbox%2Fosint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeeqbox%2Fosint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/qeeqbox%2Fosint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/qeeqbox","download_url":"https://codeload.github.com/qeeqbox/osint/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248750831,"owners_count":21155791,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dns","osint","ping","python","scan","scraper","tool","traceroute","whois"],"created_at":"2024-08-01T12:01:50.688Z","updated_at":"2025-10-15T07:40:05.630Z","avatar_url":"https://github.com/qeeqbox.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e \u003cimg src=\"https://raw.githubusercontent.com/qeeqbox/osint/main/readme/osint_logo.png\"\u003e\u003c/p\u003e\n\nBuild custom OSINT tools and APIs with this python package - It includes different OSINT modules (Ping, Traceroute, Scans, Archives, DNS, Scrape, Whois, Metadata) for performing reconnaissance on the target, and a built-in database for mapping and visuialzing some of the reconnaissance results. \n\nThe final results is a json output that can be intergrated with other projects\n\n## Install\n```bash\npip3 install osint\n```\n\n## Usage Example - Scan ips or domains for http and https\n```python\n#Remember you need higher privileges\n\nfrom osint import QBDns, QBScan\ntargets = QBDns().convert_to_ips([\"http://test.com\",\"1.2.3.4\"] )\ntargets = QBScan().run(targets,[80,443])\nprint(targets)\n```\n\n## Usage Example - Extract text from domains\n```python\n#Remember you need higher privileges\n\nfrom osint import QBDns, QBHost, QBExtract\ntargets = QBDns().convert_to_ips([\"http://test.com\"] )\ntargets = QBHost().run(targets)\ntargets = QBExtract().run(targets,function=\"text\")\nprint(targets)\n```\n\n## Usage Example - Interact with the built-in database (Search the entire database for a value)\n```python\nfrom osint import QBGetInfo\nprint(QBGetInfo().search_all(8080))\nor \nprint(QBGetInfo().search_all(\"8080\"))\n```\n\n## Current modules\n#### QBDns() - Dns lookups\n```python\nQBDns().convert_to_ips(targets)\n```\n- `targets` List of target domains or ips, the results is needed for the rest of modules e.g. [\"http://test...\",\"1.2.3.4\"] \n\n#### QBHost() - Extract host information and cert\n```python\nQBHost().run(targets, function)\n```\n- `targets` from QBDns().convert_to_ips() function\n- `function` all, cert or content\n\n#### QBCached() - Check archive.org from snapshots\n```python\nQBCached().run(targets, from_date_in, to_date_in)\n```\n\n- `targets` from QBDns().convert_to_ips() function\n- `from_date_in`   #start date as month/year e.g. 12/2020\n- `to_date_in`     #end date as month/year e.g. 12/2021 \n\n#### QBExtract() - Extract text from pages\n```python\nQBExtract().run(targets, function)\n```\n- `targets` from QBDns().convert_to_ips() function\n- `function` all, text, metadata, links, image or language\n\n#### QBScan() - Extract text from pages\n```python\nQBScan.run(targets, ports, function)\n```\n- `targets` from QBDns().convert_to_ips() function\n- `ports` ports to scan e.g. [80,443]\n- `function` all, sync, tcp, xmas, fin, null, ack, window or udp\n\n#### QBTraceRoute() - Extract text from pages\n```python\nQBTraceRoute.run(targets)\n```\n- `targets` from QBDns().convert_to_ips() function\n\n#### QBPing() - Ping host\n```python\nQBPing.run(targets, function)\n```\n- `targets` from QBDns().convert_to_ips() function\nfunction       #all, arp, icmp or udp\n\n#### QBWhois() - Whois information\n```python\nQBWhois.run(targets)\n```\n- `targest` from QBDns().convert_to_ips() function\n\n#### QBICS() - Industrial Control Systems Scanning\n```python\nQBICS.run(targets)\n```\n- `targets` from QBDns().convert_to_ips() function\n\nQBICS() module is not available and currently under testing\n\n## Built-in Database\n```\ncountries_ids (country text, ctry text, cntry text, cid int, latitude int, longitude int, flag text)\ncountries_ips (ipfrom bigint, ipto bigint, registry text, assigned int, ctry text, cntry text, country text)\ndns_servers (dns text, description text)\nlanguages (ctry text, language text)\nports (port int, protocol text, service text, description text)\nreserved_ips (ipfrom bigint, ipto bigint, description text)\ntemp_emails (email text, description text, blocked boolean)\nurl_shorteners (URL text, description text)\n```\n\n## acknowledgement\nBy using this framework, you are accepting the license terms of all these packages: `scapy tld netifaces dnspython beautifulsoup4 requests pyOpenSSL lxml langdetect`\n\n## Other Projects\n[![](https://github.com/qeeqbox/.github/blob/main/data/social-analyzer.png)](https://github.com/qeeqbox/social-analyzer) [![](https://github.com/qeeqbox/.github/blob/main/data/analyzer.png)](https://github.com/qeeqbox/analyzer) [![](https://github.com/qeeqbox/.github/blob/main/data/chameleon.png)](https://github.com/qeeqbox/chameleon) [![](https://github.com/qeeqbox/.github/blob/main/data/url-sandbox.png)](https://github.com/qeeqbox/url-sandbox) [![](https://github.com/qeeqbox/.github/blob/main/data/mitre-visualizer.png)](https://github.com/qeeqbox/mitre-visualizer) [![](https://github.com/qeeqbox/.github/blob/main/data/woodpecker.png)](https://github.com/qeeqbox/woodpecker) [![](https://github.com/qeeqbox/.github/blob/main/data/docker-images.png)](https://github.com/qeeqbox/docker-images) [![](https://github.com/qeeqbox/.github/blob/main/data/seahorse.png)](https://github.com/qeeqbox/seahorse) [![](https://github.com/qeeqbox/.github/blob/main/data/rhino.png)](https://github.com/qeeqbox/rhino)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqeeqbox%2Fosint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fqeeqbox%2Fosint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fqeeqbox%2Fosint/lists"}