Tagged Questions
The fuzzing tag has no wiki summary.
5
votes
2answers
119 views
Is there a utility which given an ANTLR grammar will produce matching strings?
I have an ANTLR grammar and I would like to fuzz my parser.
5
votes
2answers
869 views
Network or Transport Layer Fuzzing
How do I go about executing a fuzzing strategy to stress a network stack, specifically at the third and fourth layers (network and transport)? I've looked at frameworks to generate fuzzers, like ...
5
votes
5answers
1k views
Frameworks for network protocol fuzzing?
Can anyone recommend any programmer-friendly (i.e. extensible) frameworks or systems for performing network level packet fuzzing?
I'm looking for such a system where I can program in additional ...
4
votes
3answers
243 views
Fuzzing the Linux Kernel: A student in peril.
I am currently a student at a university studying a computing related degree and my current project is focusing on finding vulnerabilities in the Linux kernel. My aim is to both statically audit as ...
4
votes
2answers
238 views
Fuzz-testing XML-parser
I want to fuzz-test a XML-parser and wonder if there are some appropriate fuzzers.
It would be nice not only generate random garbage, but take advantages of existing schema specification like XSD or ...
4
votes
2answers
388 views
Looking for a Java fuzzing library or fuzzer tool with a good API
Are there any fuzzer libraries out there for Java?
I'd like to sprinkle fuzzing capabilities into existing Java web-based automated integration tests. I've done a lot of searching but I'm coming up ...
3
votes
1answer
342 views
Ruby: Fuzzing through all unicode characters (UTF8/Encoding/String Manipulation)
I can't iterate over the entire range of unicode characters.
I searched everywhere...
I am building a fuzzer and want to embed into a url, all unicode characters (one at a time).
For example:
...
2
votes
3answers
98 views
Fuzzing/reverse engineering virtual machines
I'm a beginner/intermediate at reverse engineering and I’m trying to make the leap to expert. I want to do a project on virtual machines specifically escaping them and was wondering if fuzzing could ...
2
votes
1answer
205 views
How to write fuzzing tests against the Linux KVM?
It should be the case that the Linux kernel, when it is a host kernel, should not be adversely affected by what a guest kernel executes inside a virtual machine.
I'd like to test that property by ...
2
votes
1answer
236 views
MPEG4 AVC header size?
Just one question : what is the size in bytes of the header of a .mp4 file ?
The goal is to fuzz just this header.
Thanks
Karl
1
vote
3answers
160 views
Where find H.264 standard?
I would like to write a little fuzzer for H.264 but I am not aware about the file format.
Could you give me the standard please, in order to forge correct (and therefore incorrect) h.264 files.
...
1
vote
1answer
212 views
Has the Delphi Win32 VCL been Fuzz Tested?
To anyone's knowledge has the Delphi Win32 VCL ever been fuzz tested?
0
votes
1answer
87 views
User Interface Fuzzing - Android
Is there any way to be able to fuzz test the UI portions of any application? Basically I just want to throw some random user input data (ie. press button, select tool, insert query into text box ...) ...
0
votes
0answers
47 views
IO Error when trying to open Fuzzed files MediaPlayer - Android
is there a way to sort of force the MediaPlayer API to prepare a fuzzed up file (in this case it's a .wav file)? I've inserted 5 fuzzed wav files and only 1 out of 5 is able to be prepared by ...
0
votes
2answers
388 views
Using Ruby to fuzz FTP Server
Hey, I'm new to Ruby and trying to learn by porting some progs from one language to another. Right now I'm working on an FTP fuzzer in Ruby that mirrors this perl script:
use Net::FTP;
$target = ...