├── README.md ├── brainpan ├── brainpan.exe ├── brainpan.py ├── finalexploit.py ├── offsetcalc.py └── offsetverify.py ├── fftpwin7 ├── fftp1.py ├── fftp2.py └── fftpbadchars.py ├── freefloatftp ├── ffftp.py ├── ffftp2.py └── ffftp3.py ├── minishare ├── minisharefive.py ├── minisharefour.py ├── minishareone.py ├── minisharethree.py └── minisharetwo.py ├── minisharewin7 ├── fuzzer.py ├── minishare.py ├── minisharebadchars.py ├── minisharesploit.py └── minishareverifyoffset.py ├── quickftppro └── qttftp.py ├── savant ├── savant1.py └── savant2.py ├── second ├── brainpan │ ├── badchars.py │ ├── bpfuzz.py │ ├── offsetcalc.py │ └── retaddress.py ├── freefloatftp │ ├── fftp1.py │ ├── fftp2.py │ ├── fftp3.py │ ├── fftp4.py │ └── fftp5.py ├── minishare │ ├── minisharefive.py │ ├── minisharefour.py │ ├── minishareone.py │ ├── minisharethree.py │ └── minisharetwo.py ├── slmail │ ├── badchars.py │ ├── exploit.py │ ├── fuzzer.py │ ├── offsetcalc.py │ ├── slmail.exe │ └── verifyoffset.py └── warftp │ ├── badchars.py │ ├── exploit.py │ ├── fuzzer.py │ ├── offsetverify.py │ ├── ret.py │ ├── retsploit.py │ └── retverify.py ├── server-strcpy ├── Server-Strcpy.exe ├── serverstrcpy.py ├── serverstrcpy2.py ├── serverstrcpy3.py ├── serverstrcpy4.py └── serverstrcpy5.py ├── simplewebserver ├── 142ba80cfca8f99ac36c92535728844c-sws-2.2-rc2-i686.exe ├── fuzzer.py ├── offsetcalculate.py ├── simplewebserver.exe └── usingretshellcode.py ├── slmail ├── badchars.py ├── eipoverwrite.py ├── fuzzer.py ├── jmpesp.py └── jmpesp2.py ├── warftp ├── ftpexploit.py ├── ftpexploitbreakpoint.py ├── ftpexploitbreakpointjumpesp.py ├── ftpexploitbreakpointjumpesp.py.save ├── ftpexploitbreakpointjumpespsecondgo.py ├── ftpexploitbreakpointjumpespthirdgo.py ├── ftpexploitshell.py └── ftpexploitverifybreakpoint.py └── win7PCman ├── pcman1.py ├── pcman2.py ├── pcman3.py └── pcman4.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/README.md -------------------------------------------------------------------------------- /brainpan/brainpan.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/brainpan/brainpan.exe -------------------------------------------------------------------------------- /brainpan/brainpan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/brainpan/brainpan.py -------------------------------------------------------------------------------- /brainpan/finalexploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/brainpan/finalexploit.py -------------------------------------------------------------------------------- /brainpan/offsetcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/brainpan/offsetcalc.py -------------------------------------------------------------------------------- /brainpan/offsetverify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/brainpan/offsetverify.py -------------------------------------------------------------------------------- /fftpwin7/fftp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/fftpwin7/fftp1.py -------------------------------------------------------------------------------- /fftpwin7/fftp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/fftpwin7/fftp2.py -------------------------------------------------------------------------------- /fftpwin7/fftpbadchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/fftpwin7/fftpbadchars.py -------------------------------------------------------------------------------- /freefloatftp/ffftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/freefloatftp/ffftp.py -------------------------------------------------------------------------------- /freefloatftp/ffftp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/freefloatftp/ffftp2.py -------------------------------------------------------------------------------- /freefloatftp/ffftp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/freefloatftp/ffftp3.py -------------------------------------------------------------------------------- /minishare/minisharefive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minishare/minisharefive.py -------------------------------------------------------------------------------- /minishare/minisharefour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minishare/minisharefour.py -------------------------------------------------------------------------------- /minishare/minishareone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minishare/minishareone.py -------------------------------------------------------------------------------- /minishare/minisharethree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minishare/minisharethree.py -------------------------------------------------------------------------------- /minishare/minisharetwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minishare/minisharetwo.py -------------------------------------------------------------------------------- /minisharewin7/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minisharewin7/fuzzer.py -------------------------------------------------------------------------------- /minisharewin7/minishare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minisharewin7/minishare.py -------------------------------------------------------------------------------- /minisharewin7/minisharebadchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minisharewin7/minisharebadchars.py -------------------------------------------------------------------------------- /minisharewin7/minisharesploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minisharewin7/minisharesploit.py -------------------------------------------------------------------------------- /minisharewin7/minishareverifyoffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/minisharewin7/minishareverifyoffset.py -------------------------------------------------------------------------------- /quickftppro/qttftp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/quickftppro/qttftp.py -------------------------------------------------------------------------------- /savant/savant1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/savant/savant1.py -------------------------------------------------------------------------------- /savant/savant2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/savant/savant2.py -------------------------------------------------------------------------------- /second/brainpan/badchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/brainpan/badchars.py -------------------------------------------------------------------------------- /second/brainpan/bpfuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/brainpan/bpfuzz.py -------------------------------------------------------------------------------- /second/brainpan/offsetcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/brainpan/offsetcalc.py -------------------------------------------------------------------------------- /second/brainpan/retaddress.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/brainpan/retaddress.py -------------------------------------------------------------------------------- /second/freefloatftp/fftp1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/freefloatftp/fftp1.py -------------------------------------------------------------------------------- /second/freefloatftp/fftp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/freefloatftp/fftp2.py -------------------------------------------------------------------------------- /second/freefloatftp/fftp3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/freefloatftp/fftp3.py -------------------------------------------------------------------------------- /second/freefloatftp/fftp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/freefloatftp/fftp4.py -------------------------------------------------------------------------------- /second/freefloatftp/fftp5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/freefloatftp/fftp5.py -------------------------------------------------------------------------------- /second/minishare/minisharefive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/minishare/minisharefive.py -------------------------------------------------------------------------------- /second/minishare/minisharefour.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/minishare/minisharefour.py -------------------------------------------------------------------------------- /second/minishare/minishareone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/minishare/minishareone.py -------------------------------------------------------------------------------- /second/minishare/minisharethree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/minishare/minisharethree.py -------------------------------------------------------------------------------- /second/minishare/minisharetwo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/minishare/minisharetwo.py -------------------------------------------------------------------------------- /second/slmail/badchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/badchars.py -------------------------------------------------------------------------------- /second/slmail/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/exploit.py -------------------------------------------------------------------------------- /second/slmail/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/fuzzer.py -------------------------------------------------------------------------------- /second/slmail/offsetcalc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/offsetcalc.py -------------------------------------------------------------------------------- /second/slmail/slmail.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/slmail.exe -------------------------------------------------------------------------------- /second/slmail/verifyoffset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/slmail/verifyoffset.py -------------------------------------------------------------------------------- /second/warftp/badchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/badchars.py -------------------------------------------------------------------------------- /second/warftp/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/exploit.py -------------------------------------------------------------------------------- /second/warftp/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/fuzzer.py -------------------------------------------------------------------------------- /second/warftp/offsetverify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/offsetverify.py -------------------------------------------------------------------------------- /second/warftp/ret.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/ret.py -------------------------------------------------------------------------------- /second/warftp/retsploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/retsploit.py -------------------------------------------------------------------------------- /second/warftp/retverify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/second/warftp/retverify.py -------------------------------------------------------------------------------- /server-strcpy/Server-Strcpy.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/Server-Strcpy.exe -------------------------------------------------------------------------------- /server-strcpy/serverstrcpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/serverstrcpy.py -------------------------------------------------------------------------------- /server-strcpy/serverstrcpy2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/serverstrcpy2.py -------------------------------------------------------------------------------- /server-strcpy/serverstrcpy3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/serverstrcpy3.py -------------------------------------------------------------------------------- /server-strcpy/serverstrcpy4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/serverstrcpy4.py -------------------------------------------------------------------------------- /server-strcpy/serverstrcpy5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/server-strcpy/serverstrcpy5.py -------------------------------------------------------------------------------- /simplewebserver/142ba80cfca8f99ac36c92535728844c-sws-2.2-rc2-i686.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/simplewebserver/142ba80cfca8f99ac36c92535728844c-sws-2.2-rc2-i686.exe -------------------------------------------------------------------------------- /simplewebserver/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/simplewebserver/fuzzer.py -------------------------------------------------------------------------------- /simplewebserver/offsetcalculate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/simplewebserver/offsetcalculate.py -------------------------------------------------------------------------------- /simplewebserver/simplewebserver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/simplewebserver/simplewebserver.exe -------------------------------------------------------------------------------- /simplewebserver/usingretshellcode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/simplewebserver/usingretshellcode.py -------------------------------------------------------------------------------- /slmail/badchars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/slmail/badchars.py -------------------------------------------------------------------------------- /slmail/eipoverwrite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/slmail/eipoverwrite.py -------------------------------------------------------------------------------- /slmail/fuzzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/slmail/fuzzer.py -------------------------------------------------------------------------------- /slmail/jmpesp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/slmail/jmpesp.py -------------------------------------------------------------------------------- /slmail/jmpesp2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/slmail/jmpesp2.py -------------------------------------------------------------------------------- /warftp/ftpexploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploit.py -------------------------------------------------------------------------------- /warftp/ftpexploitbreakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitbreakpoint.py -------------------------------------------------------------------------------- /warftp/ftpexploitbreakpointjumpesp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitbreakpointjumpesp.py -------------------------------------------------------------------------------- /warftp/ftpexploitbreakpointjumpesp.py.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitbreakpointjumpesp.py.save -------------------------------------------------------------------------------- /warftp/ftpexploitbreakpointjumpespsecondgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitbreakpointjumpespsecondgo.py -------------------------------------------------------------------------------- /warftp/ftpexploitbreakpointjumpespthirdgo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitbreakpointjumpespthirdgo.py -------------------------------------------------------------------------------- /warftp/ftpexploitshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitshell.py -------------------------------------------------------------------------------- /warftp/ftpexploitverifybreakpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/warftp/ftpexploitverifybreakpoint.py -------------------------------------------------------------------------------- /win7PCman/pcman1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/win7PCman/pcman1.py -------------------------------------------------------------------------------- /win7PCman/pcman2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/win7PCman/pcman2.py -------------------------------------------------------------------------------- /win7PCman/pcman3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/win7PCman/pcman3.py -------------------------------------------------------------------------------- /win7PCman/pcman4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freddiebarrsmith/Buffer-Overflow-Exploit-Development-Practice/HEAD/win7PCman/pcman4.py --------------------------------------------------------------------------------