{"id":23419685,"url":"https://github.com/linuxmobile/bugbounty-flake","last_synced_at":"2025-10-30T06:31:32.341Z","repository":{"id":267984887,"uuid":"902600678","full_name":"linuxmobile/bugbounty-flake","owner":"linuxmobile","description":"Bug Bounty Flake","archived":false,"fork":false,"pushed_at":"2024-12-23T18:12:05.000Z","size":29913,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-08T16:12:38.658Z","etag":null,"topics":["bounty","bug","bugbounty","bugbounty-tool","cybersecurity","kali-linux","red","red-team","team"],"latest_commit_sha":null,"homepage":"","language":"Nix","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/linuxmobile.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-12-12T22:21:53.000Z","updated_at":"2025-01-16T18:21:51.000Z","dependencies_parsed_at":"2024-12-13T17:59:06.696Z","dependency_job_id":null,"html_url":"https://github.com/linuxmobile/bugbounty-flake","commit_stats":null,"previous_names":["linuxmobile/bugbounty-flake"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxmobile%2Fbugbounty-flake","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxmobile%2Fbugbounty-flake/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxmobile%2Fbugbounty-flake/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/linuxmobile%2Fbugbounty-flake/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/linuxmobile","download_url":"https://codeload.github.com/linuxmobile/bugbounty-flake/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238939141,"owners_count":19555605,"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":["bounty","bug","bugbounty","bugbounty-tool","cybersecurity","kali-linux","red","red-team","team"],"created_at":"2024-12-23T01:27:17.628Z","updated_at":"2025-10-30T06:31:26.946Z","avatar_url":"https://github.com/linuxmobile.png","language":"Nix","readme":"# Bug Bounty Development Environment with Nix\n\nA comprehensive and modular Nix development environment for bug bounty hunting,\nfeaturing carefully curated tools organized by category and custom scripts to\nenhance your workflow.\n\n## 🚀 Features\n\n- **Modular Organization**: Tools are organized into logical categories for\n  better management\n- **Custom Scripts**: Helpful scripts for reconnaissance, scanning, and\n  environment setup\n- **Integrated Terminal Multiplexer**: Preconfigured Zellij setup with custom\n  layout for bug bounty workflows\n- **Easy to Extend**: Simple structure to add or remove tools as needed\n\n## 📋 Included Tools Categories\n\n- **Reconnaissance**: `amass`, `subfinder`, `dnsx`, `nmap`, and more\n- **Vulnerability Scanning**: `nuclei`, `sqlmap`, `metasploit`, `dalfox`, etc.\n- **Web Proxies**: `burpsuite`, `wireshark`, `mitmproxy`\n- **API Testing**: `postman`, `insomnia`\n- **Network Analysis**: `interactsh`, `cdncheck`, `tcpdump`, etc.\n- **Content Discovery**: `ffuf`, `feroxbuster`, `gobuster`, `katana`, etc.\n- **Code Analysis**: `gitleaks`, `semgrep`, `trufflehog`, etc.\n\n## 🛠️ Installation\n\n1. Make sure you have Nix installed with flakes enabled\n2. Clone the repository:\n\n```bash\ngit clone https://github.com/linuxmobile/bugbounty-flake\ncd bugbounty-flake\n```\n\n3. Enter the development environment:\n\n```bash\nnix develop -c $SHELL\n```\n\nOr if you don't want to clone the repository.\n\n```bash\n# Using the latest commit from main branch\nnix develop github:linuxmobile/bugbounty-flake -c $SHELL\n```\n\n## 📚 Usage\n\n### Basic Commands\n\n```bash\n# Set up the initial directory structure\nsetup-bugbounty\n\n# Start the bug bounty environment with Zellij\nstart-environment\n\n# Perform subdomain enumeration\nrecon-subdomain example.com\n\n# Run vulnerability scanning\nscan-vulnerabilities targets.txt\n```\n\n### Zellij Layout\n\nThe environment comes with a predefined Zellij layout with three tabs:\n\n- **Recon**: Split pane for reconnaissance tools and results\n- **Web**: Split layout for browser/Burp Suite and notes\n- **Shell**: Full terminal for general commands\n\n## 🔧 Customization\n\n### Adding New Tools\n\n1. Choose or create appropriate category in `modules/packages/`\n2. Add your tool to the relevant category file:\n\n```nix\n# modules/packages/your-category.nix\n{ pkgs }:\nwith pkgs; [\n  existing-tools\n  your-new-tool    # Add your tool here\n]\n```\n\n3. Add the category to `modules/default.nix`:\n\n```nix\n{\n  packages = {\n    existing-categories = ...\n    newCategory = import ./packages/your-category.nix { inherit pkgs; };\n  };\n}\n```\n\n### Removing Tools/Modules\n\n1. Remove unwanted tools from the respective category file\n2. To remove an entire category:\n   - Delete the category file from `modules/packages/`\n   - Remove its entry from `modules/default.nix`\n\n### Modifying Scripts\n\nCustom scripts are located in `modules/scripts/`. You can:\n\n- Modify existing scripts in their respective files\n- Add new scripts by creating a new file and adding it to\n  `modules/scripts/default.nix`\n\n## 📂 Project Structure\n\n```\nbugbounty-flake/\n├── modules/\n│   ├── packages/           # Tool categories\n│   ├── scripts/           # Custom utility scripts\n│   ├── software/          # Configuration files\n│   └── default.nix        # Module organization\n└── flake.nix             # Main flake configuration\n```\n\n## 🤝 Contributing\n\nContributions are welcome! Please feel free to submit pull requests with:\n\n- New tools or categories\n- Improvements to existing scripts\n- Bug fixes\n- Documentation improvements\n\n## 📝 License\n\nThis project is licensed under the MIT License - see the LICENSE file for\ndetails.\n\n## ⚠️ Disclaimer\n\nThis environment is for educational purposes and authorized security testing\nonly. Always ensure you have permission before testing any systems or networks.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxmobile%2Fbugbounty-flake","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinuxmobile%2Fbugbounty-flake","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinuxmobile%2Fbugbounty-flake/lists"}