Questions tagged [fuzzer]

A fuzzer is a tool used to provide invalid and unexpected data to the inputs of a program in order to obtain crashes, memory leaks or invalid program states.

A fuzzer is a tool used to provide invalid and unexpected data to the inputs of a program in order to obtain crashes, memory leaks or invalid program states.

37 questions
0
votes
1 answer

Fuzzing with Peach / XML

I am very new to peach fuzzer and am trying to use it with netzob to fuzz undocumented protocols. I have managed to export my netzob capture into a peach pit xml file as shown below:
0
votes
1 answer

Google Closure Compiler Fuzzer Config

I am trying to run the google closure compiler fuzzer, but it's asking for a config file. In the /build/classes/ directory I run java -cp ../compiler.jar com.google.javascript.jscomp.fuzzing.Driver --number_of_runs 5 --config It returns Option…
0
votes
1 answer

implementing a network fuzzer over a vnc server?

i want to implement a network fuzzer over a vnc server as a final year project . I want to code both the fuzzer and the vnc server from the scratch . Can i know how feasible it is ? And some good tutorials on it?
Hick
  • 35,524
  • 46
  • 151
  • 243
-1
votes
1 answer

Fuzzer for Python dictionaries

I am currently looking for a fuzzer for Python dictionaries. I am already aware of some fuzzing tools such as: Burp Peach However, they seem a bit broader of what I am looking for. Actually, my goal is to provide a Python dictionary to a given…
pafede2
  • 1,626
  • 4
  • 23
  • 40
-2
votes
1 answer

Looking for SFTP-Stresser/Fuzzer

I am working for a company that is providing File-Share-Software for all sorts of Protocols such as FTP, SFTP, FTPS and so on. One of our customers is facing an issue with Key-Auth and spontaneously login-problems. Going trough the code I am pretty…
Steven
  • 187
  • 2
  • 9
-3
votes
1 answer

PHP fuzzer for security checking (Radamsa)

Does anyone know a good fuzzer for checking PHP security? I am using a Mac and just installed the Radamsa fuzzer from git but I don't know how to use it. Does anyone have any suggestions?
Kostas
  • 140
  • 1
  • 13
-3
votes
3 answers

UnboundLocalError: local variable 'fuzzables' referenced before assignment

I have problem with python script. When I try to run it with some parameters, I get following error: print json.dumps(filter(lambda x: x.get('url'), [x.as_dict() for x in fuzzables]), indent=4) UnboundLocalError: local variable 'fuzzables'…
1 2
3