Fuzzing Vulnserver with Sulley: Part 3
Introduction Vulnserver is a vulnerable server written by Stephen Bradshaw whose blog is located here: grey-corner. This server was written intentionally to be vulnerable, so we can learn fuzzing on it. It's kinda hard to learn fuzzing if we don't have any existing vulnerabilities in place to test ...
Fuzzing Vulnserver with Peach: Part 2
Introduction The vulnserver.exe server is a vulnerable server that was written specifically for fuzing purposes. Therefore the software intentionally contains vulnerabilities that we can exploit to gain control over the target operating system. Peach is a fuzzer that is capable of performing both generation and mutation based fuzzing. It ...
Fuzzing Vulnserver: Discovering Vulnerable Commands: Part 1
Introduction Vulnserver is a Windows TCP server running on port 9999. It was written by Stephen Bradshaw whose blog is located here. The server was intentionally written to be vulnerable, for the purpose of learning how to fuzz a real target. The problem is that when we're learning, we ...
Sulley Fuzzing Framework Intro
Sulley Fuzzing Framework Sulley is python fuzzing framework that can be used to fuzz file formats, network protocols, command line arguments, and other codes. In this three-part series, we'll learn how to fuzz a threaded TCP server application called Vulnserver using a Sulley fuzzing framework. In this first article ...