{"id":19280799,"url":"https://github.com/lalaio1/pathbrut","last_synced_at":"2026-02-22T09:03:01.876Z","repository":{"id":257059174,"uuid":"857216501","full_name":"lalaio1/PathBrut","owner":"lalaio1","description":"A multi-threaded tool for discovering hidden directories and files on web servers using customizable wordlists and extensions.","archived":false,"fork":false,"pushed_at":"2024-09-14T04:38:25.000Z","size":812,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-11T23:36:01.602Z","etag":null,"topics":["bruteforce","cybersecurity","path-transversal","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lalaio1.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}},"created_at":"2024-09-14T04:23:15.000Z","updated_at":"2024-11-08T15:37:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"303ca7b5-1340-4024-b472-a783971c67f7","html_url":"https://github.com/lalaio1/PathBrut","commit_stats":null,"previous_names":["lalaio1/pathbrut"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/lalaio1/PathBrut","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lalaio1%2FPathBrut","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lalaio1%2FPathBrut/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lalaio1%2FPathBrut/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lalaio1%2FPathBrut/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lalaio1","download_url":"https://codeload.github.com/lalaio1/PathBrut/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lalaio1%2FPathBrut/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267639569,"owners_count":24119780,"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","status":"online","status_checked_at":"2025-07-29T02:00:12.549Z","response_time":2574,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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","cybersecurity","path-transversal","python"],"created_at":"2024-11-09T21:20:40.816Z","updated_at":"2025-10-26T15:31:44.292Z","avatar_url":"https://github.com/lalaio1.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🛠️ Directory Bruter\n\n![DirectoryBrutser](https://raw.githubusercontent.com/lalaio1/PathBrut/main/8d131694.png)\n\n**Directory Bruter** is a powerful tool for directory brute-forcing on web servers. It helps to discover hidden directories and files by making HTTP requests with a list of potential directory names and extensions.\n\n![DirectoryBruter](https://raw.githubusercontent.com/lalaio1/PathBrut/main/1.png)\n\n## 📋 Features\n\n- 🚀 Multi-threaded for fast execution.\n- 📂 Supports custom wordlists for flexible scanning.\n- 🌐 Configurable HTTP headers with random User-Agent.\n- 💾 Option to save results to a file.\n- 🛠️ Verbose mode for detailed logs and errors.\n\n## 🛠️ Installation\n\n1. **Clone the repository:**\n\n   ```bash\n   git clone https://github.com/lalaio1/PathBrut.git\n   ```\n\n2. **Navigate to the directory:**\n\n   ```bash\n   cd PathBrut\n   ```\n\n3. **Install the required dependencies:**\n\n   ```bash\n   pip install -r requirements.txt\n   ```\n\n## 🚀 Usage\n\nTo use Directory Bruter, run the script with the necessary arguments. Here's a basic example:\n\n```bash\npython PathBrut.py -u http://example.com -w /path/to/wordlist.txt -t 10 -o -v -e .php,.html\n```\n\n## 📜 Arguments\n\n| Argument      | Description                                                   | Default    |\n|---------------|---------------------------------------------------------------|------------|\n| `-u`, `--url` | Target URL (e.g., `http://example.com`)                       | Required   |\n| `-w`, `--wordlist` | Path to the wordlist file                                  | Required   |\n| `-t`, `--threads` | Number of threads to use (default is 1)                    | 1          |\n| `-o`, `--output` | Save results to a file                                     | Disabled   |\n| `-v`, `--verbose` | Verbose mode (show detailed logs and errors)               | Disabled   |\n| `-e`, `--extensoes` | List of extensions to try (e.g., `.php,.exe,.bak`)         | None       |\n\n### Example Commands\n\n1. **Basic Scan:**\n\n   ```bash\n   python PathBrut.py -u http://example.com -w /path/to/wordlist.txt\n   ```\n\n2. **Scan with Custom Threads and Verbose Output:**\n\n   ```bash\n   python PathBrut.py -u http://example.com -w /path/to/wordlist.txt -t 5 -v\n   ```\n\n3. **Scan with Extensions and Save Results:**\n\n   ```bash\n   python PathBrut.py -u http://example.com -w /path/to/wordlist.txt -e .php,.html -o\n   ```\n\n## 📂 Examples\n\n### Basic Usage\n\n```bash\npython PathBrut.py -u http://example.com -w /path/to/wordlist.txt\n```\n\nOutput:\n```\n\u003e Target: http://example.com\n-----------------------------------------\n[+] 200: http://example.com/admin\n[+] 200: http://example.com/login\n[-] 404: http://example.com/hidden\n```\n\n### Advanced Usage with Extensions and Verbose Mode\n\n```bash\npython PathBrut.py -u http://example.com -w /path/to/wordlist.txt -e .php,.html -v\n```\n\nOutput:\n```\n\u003e Target: http://example.com\n-----------------------------------------\n[+] 200: http://example.com/admin.php\n[+] 200: http://example.com/login.html\n[-] 404: http://example.com/hidden.php\n[ERROR] Request failed: http://example.com/unknown.php\n```\n\n## 📝 License\n\nThis project is licensed under the [MIT License](LICENSE).\n\n## 📞 Contact\n\nFor any issues or inquiries, please open an issue on [GitHub](https://github.com/lalaio1/PathBrut/issues).\n\n---\n\nMade with ❤️ by [lalaio1](https://github.com/lalaio1)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flalaio1%2Fpathbrut","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flalaio1%2Fpathbrut","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flalaio1%2Fpathbrut/lists"}