{"id":29045477,"url":"https://github.com/mswell/burnrecon","last_synced_at":"2025-06-26T16:12:26.344Z","repository":{"id":39686445,"uuid":"491251757","full_name":"mswell/burnrecon","owner":"mswell","description":"is a tool to automate and organize reconnaissance operations.","archived":false,"fork":false,"pushed_at":"2023-09-06T12:54:38.000Z","size":158,"stargazers_count":24,"open_issues_count":11,"forks_count":11,"subscribers_count":4,"default_branch":"main","last_synced_at":"2025-06-20T21:37:20.484Z","etag":null,"topics":["bugbounty","mongodb","pentesting","python","recon","subdomain-enumeration"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mswell.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-05-11T19:46:41.000Z","updated_at":"2024-08-09T09:35:07.000Z","dependencies_parsed_at":"2023-02-04T10:00:28.509Z","dependency_job_id":null,"html_url":"https://github.com/mswell/burnrecon","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/mswell/burnrecon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mswell%2Fburnrecon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mswell%2Fburnrecon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mswell%2Fburnrecon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mswell%2Fburnrecon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mswell","download_url":"https://codeload.github.com/mswell/burnrecon/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mswell%2Fburnrecon/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262099751,"owners_count":23258674,"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":["bugbounty","mongodb","pentesting","python","recon","subdomain-enumeration"],"created_at":"2025-06-26T16:12:25.268Z","updated_at":"2025-06-26T16:12:26.335Z","avatar_url":"https://github.com/mswell.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003c!-- markdownlint-disable --\u003e\n\u003ch1 align=\"center\"\u003e\n    BurnRecon\n\u003c/h1\u003e\n\u003c!-- markdownlint-restore --\u003e\n\n[![Licence](https://img.shields.io/github/license/Ileriayo/markdown-badges?style=for-the-badge)](./LICENSE) ![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge\u0026logo=python\u0026logoColor=ffdd54) ![MongoDB](https://img.shields.io/badge/MongoDB-%234ea94b.svg?style=for-the-badge\u0026logo=mongodb\u0026logoColor=white) ![Docker](https://img.shields.io/badge/docker-%230db7ed.svg?style=for-the-badge\u0026logo=docker\u0026logoColor=white)\n\n----\n\n\n# Description\n\n**BurnRecon** is a tool to automate and organize reconnaissance operations.\n\nBuilt with ❤️ and:\n\n- [Python](https://www.python.org/)\n- [Mongodb](https://www.mongodb.com/pt-br)\n- [docker](https://www.docker.com/)\n- [docker-compose](https://docs.docker.com/compose/install/)\n\n----\n# VPS Credit\nIf you need a VPS and are signing up for a new Digital Ocean account, [please use my link!](https://m.do.co/c/9624063f1b18) \n\n[![DigitalOcean Referral Badge](https://web-platforms.sfo2.digitaloceanspaces.com/WWW/Badge%203.svg)](https://www.digitalocean.com/?refcode=9624063f1b18\u0026utm_campaign=Referral_Invite\u0026utm_medium=Referral_Program\u0026utm_source=badge)\n\n# Instalation\n\nRun with docker: **recommended 🍺**\n# TODO: change docker-compose to docker compose\n```bash\ngit clone https://github.com/mswell/burnrecon.git\ndocker-compose up -d\n```\n\nIf run without docker\n\n## **Requirement: python 3.7 or higher**\n\n```bash\ngit clone https://github.com/mswell/burnrecon.git\ncd burnrecon\n./install_hacktools.sh\npip3 install -r requirements.txt\n```\n\n## **Requirement: docker and docker-compose**\n\nIf you use a local instance mongodb, use docker-compose to start your local mongoDB.\n\n```bash\ndocker-compose up -d mongo\n```\n\n# Settings\n\nIf you use docker-compose to run burnrecon, your settings for DB connection are in the file `docker-compose.yml`,\n\n```yaml\nversion: '3.1'\n\nservices:\n  app:\n    build:\n      context: .\n      dockerfile: Dockerfile\n    stdin_open: true\n    tty: true\n    depends_on:\n      - mongo\n    environment:\n      DYNACONF_MONGO_INITDB_ROOT_USERNAME: 'root'\n      DYNACONF_MONGO_INITDB_ROOT_PASSWORD: 'toor'\n      DYNACONF_MONGO_DB_ADDRESS: 'mongo'\n    networks:\n      - backend\n```\n\nFor tokens I recommended to use `.secrets.yml`.\n\nYou need to set your config in [settings](burnrecon/settings.toml) file.\n\n```toml\n[database]\naddress = 'localhost'\n```\n\nYou need to set your secrets in the [secrets](burnrecon/.secrets_example.toml) file.\n\n```toml\nMONGO_DB_USER = 'root'\nMONGO_DB_PASS = 'toor'\nDISCORD_TOKEN = ''\n```\n\n## **Please remember to mv .secrets_example.toml to .secrets.toml**\n\n----\n\n# Usage\n\nTo use local cli see [cli wiki](https://github.com/mswell/burnrecon/wiki/cli-usage)\n\nTo use docker see [docker wiki](https://github.com/mswell/burnrecon/wiki/Docker-usage)\n\n## Development\n\nRead the [CONTRIBUTING.md](CONTRIBUTING.md) file.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmswell%2Fburnrecon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmswell%2Fburnrecon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmswell%2Fburnrecon/lists"}