The Fuzzer is a Python script designed to perform basic fuzzing on a target system. It sends a sequence of "A" characters as a payload to test the system's response and identify potential vulnerabilities.
- Basic fuzzer implementation
- Customizable payload generation
- Socket-based communication with the target system
- Automatic payload size increment
- Crash detection and reporting
- Ensure Python 3 is installed on your system.
- Clone the repository:
git clone https://github.com/cyber-bytezz/fuzzer.git
- Open the terminal and navigate to the project directory.
- Customize the target IP address and port in the
connect()
method of the script. - Run the script:
python fuzzer.py
- Observe the script's output for potential crashes.