{"id":29196938,"url":"https://github.com/hackfutsec/phpbruter","last_synced_at":"2026-04-22T21:33:58.977Z","repository":{"id":300881072,"uuid":"1007467371","full_name":"HackfutSec/PhpBruter","owner":"HackfutSec","description":"**PhpBruter** is an advanced security testing tool designed for professional penetration testers to assess the security of phpMyAdmin installations.","archived":false,"fork":false,"pushed_at":"2025-06-24T03:55:45.000Z","size":19,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-02T06:46:08.979Z","etag":null,"topics":["bruteforce","ctf-challenges","ctf-tools","database","ethical-hacking","panel","pentest-tool","phpmyadmin","python3","tools"],"latest_commit_sha":null,"homepage":"https://github.com/HackfutSec/PhpBruter","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/HackfutSec.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-24T03:44:05.000Z","updated_at":"2025-06-24T03:59:30.000Z","dependencies_parsed_at":"2025-06-24T04:37:41.618Z","dependency_job_id":"95d42005-4dbc-40b0-abdb-43973066b459","html_url":"https://github.com/HackfutSec/PhpBruter","commit_stats":null,"previous_names":["hackfutsec/phpbruter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HackfutSec/PhpBruter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackfutSec%2FPhpBruter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackfutSec%2FPhpBruter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackfutSec%2FPhpBruter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackfutSec%2FPhpBruter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HackfutSec","download_url":"https://codeload.github.com/HackfutSec/PhpBruter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HackfutSec%2FPhpBruter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32156603,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-22T17:06:48.269Z","status":"ssl_error","status_checked_at":"2026-04-22T17:06:19.037Z","response_time":58,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["bruteforce","ctf-challenges","ctf-tools","database","ethical-hacking","panel","pentest-tool","phpmyadmin","python3","tools"],"created_at":"2025-07-02T06:39:43.796Z","updated_at":"2026-04-22T21:33:58.960Z","avatar_url":"https://github.com/HackfutSec.png","language":"Python","readme":"Here's a comprehensive README.md file for your GitHub repository:\n\n```markdown\n# PhpBruter - phpMyAdmin Enterprise Pentesting Tool\n\n![Banner](https://freeimage.host/i/screenshot-2025-06-24-1.FTnzmqg)\n\n**PhpBruter** is an advanced security testing tool designed for professional penetration testers to assess the security of phpMyAdmin installations. This enterprise-grade tool provides multiple attack vectors to test authentication security with features like credential brute-forcing, password spraying, and custom wordlist attacks.\n\n## Features\n\n- 🚀 **Multi-mode operation** (Default scan, Wordlist attack, Single test, Password spray)\n- 🔒 **Thread-safe operations** with configurable thread limits\n- 📊 **Results persistence** (Automatically saves found credentials to JSON)\n- 🌐 **Proxy support** for routing traffic through intermediaries\n- 🕵️ **IP rotation** with random X-Forwarded-For headers\n- ⏱️ **Performance metrics** with response time tracking\n- 🎨 **Color-coded output** for easy result interpretation\n- 📁 **Wordlist validation** with proper error handling\n\n## Installation\n\n1. Clone the repository:\n```bash\ngit clone https://github.com/HackfutSec/PhpBruter.git\ncd PhpBruter\n```\n\n2. Install dependencies:\n```bash\npip install requests colorama\n```\n\n## Usage\n\nBasic usage:\n```bash\npython3 phpmyadmin_pentest.py [target_url]\n```\n\nOr run without arguments for interactive mode:\n```bash\npython3 phpmyadmin_pentest.py\n```\n\n### Modes Available:\n1. **Default Credential Scan** - Tests common phpMyAdmin credentials\n2. **Custom Wordlist Attack** - Uses provided username and password wordlists\n3. **Single Credential Test** - Tests one specific username/password combination\n4. **Password Spray Attack** - Tests one username against a password wordlist\n\n## Configuration\n\nEdit the `CONFIG` dictionary in the script to customize:\n```python\nCONFIG = {\n    \"user_agents\": [...],  # Customize user agents\n    \"default_users\": [...],  # Add default usernames\n    \"default_passwords\": [...],  # Add default passwords\n    \"timeout\": 15,  # Request timeout\n    \"delay\": 1.5,  # Delay between attempts\n    \"max_threads\": 5,  # Maximum concurrent threads\n    \"results_file\": \"scan_results.json\",  # Output file\n    \"proxy\": None  # Configure proxies if needed\n}\n```\n\n## Sample Wordlists\n\nExample wordlists are provided in the `wordlists/` directory:\n- `common_users.txt` - Common phpMyAdmin usernames\n- `common_passwords.txt` - Common phpMyAdmin passwords\n\n## Legal Disclaimer\n\n⚠️ **This tool is for authorized security testing and educational purposes only.**  \nThe developers assume no liability and are not responsible for any misuse or damage caused by this program. Only use on systems you own or have permission to test.\n\n## License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n## Contributing\n\nPull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.\n\n## Screenshot\n\n![Sample Usage](https://freeimage.host/i/screenshot-2025-06-24-1.FTnzmqg)\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackfutsec%2Fphpbruter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackfutsec%2Fphpbruter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackfutsec%2Fphpbruter/lists"}