The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
23 views
+50

Fuzz test (framework) web application?

Are there frameworks that can perform fuzztesting on WebApplications? I know that Selenium and WebDriver are used to build tests for web-applications, but I am particulary interested in libraries, ...
1
vote
1answer
18 views

Writing a 802.11 fuzzer which supports testing with WPA security enabled

I'm writing a fuzzer (in python) and the testing environment will be using WPA/WPA2 security. For this, I will need to either write a WPA encryption/decryption module myself or reuse WPA code from ...
1
vote
0answers
36 views

Best option to fuzz a C Network Program

I have a client/server simple program in C. I want to test the server running on different machine with random inputs. I have looked at 'Bunny-the-fuzzer' but from what I can understand It wont be ...
1
vote
2answers
57 views

Problems with subprocess, encoding and logging with sqlite

I have searched for quite a while for the answer to this question and I think a lot of it has to do with my unfamiliarity with how the subprocess module works. This is for a fuzzing program if anyone ...
0
votes
1answer
58 views

Looking for vulnerable SMTP remote server can use for pentesing

I'm looking for a remote SMTP server that I can use for pentesting (Fuzzing): It need to be open source for download It need to have some vulnerable such as buffer-overflow for it to crash. As I ...
-1
votes
1answer
105 views

automating or fuzzing all possible combinations for command line options to a python script [closed]

i mean i have a python program say abc which will take command line options like below abc -a=(which should be integer) -b=epochtime -c=pathtodownload etc., case1: what i need is any fuzzer which ...
0
votes
0answers
99 views

How to write a SPIKE Fuzzing script to fuzz FTP server (FreeFloatFTP Server)?

I am currently having problems to write a SPIKE fuzzing script to fuzz an FreeFloatFTP server which I am using. I need a spike script to fuzz the server to make it crash to see how many bytes are ...
0
votes
1answer
69 views

Fuzzing dynamic assigned ports with sulley

1st... big thx for all the great answers I already found here!! I hope someone can help me here also... I want to fuzz a network protocol with sulley. The problem is that the port I need to fuzz is ...
1
vote
2answers
97 views

How to change input field size with selenium

I am testing a web application with selenium and I am having a little problem with one specific input field. Is there any way to change the size of a input field with selenium? Example: The max ...
2
votes
1answer
201 views

iOS jailbreak exploits, The effects of exploits and how to manage them

The Syringe project let's you "inject" exploits to the iOS, but what does the exploits actually do ? When i look inside the limera1n exploit, i don't get what it actually does, and i can't seem to ...
1
vote
0answers
100 views

Need help on analyzing a crash for security issues [closed]

I was fuzzing an user-mode application, it crashed and of course it is repeatable. 00998b8f ff7604 push dword ptr [esi+4] ds:002b:00000004=???????? therefore I need to know is ...
1
vote
2answers
227 views

Tools for Feature Extraction from Binary Data of Images

I am working on a project where I am have image files that have been malformed (fuzzed i.e their image data have been altered). These files when rendered on various platforms lead to ...
0
votes
0answers
38 views

Vulnerable C webapps [closed]

I'm looking for old software that is vulnerable to any of the following: Format string exploits, buffer overflow exploits, command inclusion or information disclosure. I know that there are ...
1
vote
1answer
89 views

Starting a service from python as a child process

If I am starting a service (net start abc) from python, how can I make it such the service starts as a child process under python but not as a system process. More Info: I am starting a webserver ...
0
votes
0answers
121 views

Small C applications that are vulnerable to fuzzing(and have the source code available)

Could anyone please point me in the direction of a small c application that is known to be vulnerable to fuzzing(I will be fuzzing it using zzuf) that has the source code available and is easily ...
2
votes
2answers
167 views

How to pass inputs from a script to command line

I am a new newbie to scripting, fuzzing, and buffer overflows. I understand the basic concepts behind them though. I am looking for a way to pass input from a script (I am thinking perl) to a ...
0
votes
2answers
222 views

Socket.receive in python

I made a simple TCP fuzzer in Python. I need it to be able to receive some response and if I didn't get the response, break the loop. My code is this: import socket from time import sleep import sys ...
2
votes
2answers
688 views

How to do fuzzing testing with Selenium

I'm new to Selenium, and also fuzz testing. I see that Selenium IDE only allows the fixed test cases. But then fuzz testing seems to be helpful. So what's behind a fuzz testing, what kind of tests ...
0
votes
1answer
145 views

Fuzzing virtual drivers tools

I'm looking to fuzz virtual drivers, I've read the other questions about this but they don't really go anywhere. Basically looking to see if there's an obvious tool I've missed and want to know if ...
6
votes
3answers
1k 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 ...
0
votes
1answer
386 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 ...) ...
2
votes
3answers
318 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 ...
5
votes
2answers
1k 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 ...
2
votes
1answer
439 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 ...
0
votes
3answers
682 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 = ...
2
votes
1answer
686 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
936 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
239 views

Has the Delphi Win32 VCL been Fuzz Tested?

To anyone's knowledge has the Delphi Win32 VCL ever been fuzz tested?
4
votes
2answers
703 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: ...
5
votes
2answers
162 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.
6
votes
2answers
2k 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 ...
6
votes
2answers
686 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 ...
7
votes
5answers
2k 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 ...