September 3, 2007
Mangle modification
/*
trivial binary file fuzzer by Ilja van Sprundel.
Modified by localhost(rusydi[@]k-elektronik.nl)
careful, sometimes broke your binary
*/
#include
#include
#include
#include
#include
#include
#include
int getseed(void) {
int fd = open(”/dev/urandom”, O_RDONLY);
int r;
if (fd < 0) {
perror(”open”);
exit(0);
}
read(fd, &r, sizeof(r));
close(fd);
return(r);
}
int main(int argc, char **argv) {
int fd;
char *p, *name;
unsigned char c;
unsigned [...]






