Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/manmohan15214/web-path-bruteforcer-curl
A simple Web Path Bruteforcer using C++ Request: cURL for People wrapper built on top of libcurl. It is a CLI app.
https://github.com/manmohan15214/web-path-bruteforcer-curl
cli curl libcurl
Last synced: 5 days ago
JSON representation
A simple Web Path Bruteforcer using C++ Request: cURL for People wrapper built on top of libcurl. It is a CLI app.
- Host: GitHub
- URL: https://github.com/manmohan15214/web-path-bruteforcer-curl
- Owner: Manmohan15214
- Created: 2020-12-15T01:27:18.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2021-02-02T09:45:12.000Z (almost 4 years ago)
- Last Synced: 2024-10-31T20:07:12.811Z (5 days ago)
- Topics: cli, curl, libcurl
- Language: C++
- Homepage:
- Size: 3.19 MB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Web-Path-BruteForcer-cURL
#### A simple Web Path Bruteforcer using C++ Request: [cURL](https://github.com/whoshuu/cpr) for People wrapper built on top of [libcurl](https://curl.se/libcurl/).##### The CLI interface accepts these from the user:
• Webapp urls(can be multiple, space seperated)
• A file containing a list of webapp paths that need to be brute forced against the specified
• List of success status code according to user##### Sample Input:
Webapp urls: https://www.github.com
Webapp paths: (sample 5 lines out of the input file wordlist.txt)• admin
• info
• .git/config
• .htaccess
• backup.zipSuccess status codes(needs to be space seperated): 200 302
##### Sample Output:
A list of URLs that responded with any of the success status codes as provided in
the input by the user.• https://www.github.com/info [Status code 302]
• https://www.github.com/.htaccess [Status code 200]## Usage:
1) Clone repo to local machine.
2) Go to '[release](Release/)' folder.
- By default there is '[wordlist.txt](Release/wordlist.txt)' file containing wordlist which can be replaced with another text file having same name.
3) Run BruteForce.exe.## Screenshot