├── .gitignore ├── Exploits ├── Audiograbber_1.83 │ └── exploit.py ├── Dup_Scout_Enterprise_10.0.18 │ └── exploit.py ├── Easy_CD_DVD_Copy_1.3.24 │ └── exploit.py ├── Easy_Chat_Server_3.1 │ └── exploit.py ├── Easy_File_Sharing_Web_Server_7.2 │ └── exploit.py ├── Free_Float_FTP_Server_1.0 │ └── exploit.py ├── KarjaSoft_Sami_FTP_Server_2.0.1 │ └── exploit.py ├── KnFTP_Server_1.0.0 │ └── exploit.py ├── LabF_nfsAxe_FTP_Client_3.7 │ ├── exploit.py │ └── exploit_DEP.py ├── Light_HTTPD_0.1 │ └── exploit.py ├── MinaliC_Webserver_2.0.0 │ └── exploit.py ├── ProSysInfo_TFTP_Server_0.4.2 │ └── exploit.py ├── Protostar │ └── stack │ │ ├── stack0.py │ │ ├── stack1.py │ │ ├── stack2.py │ │ ├── stack3.py │ │ ├── stack4.py │ │ ├── stack5.py │ │ ├── stack6.py │ │ └── stack7.py ├── R_3.4.4 │ └── exploit.py ├── Ultra_MiniHTTPd_1.2 │ └── exploit.py └── VulnServer │ ├── KSTET │ └── exploit.py │ └── TRUN │ └── exploit.py ├── LICENSE ├── README.org ├── Templates ├── local │ ├── template_class_exploit.py │ └── template_exploit.py └── remote │ ├── ftp │ ├── client │ │ └── template_exploit.py │ └── server │ │ └── template_exploit.py │ ├── http │ ├── template_class_exploit.py │ └── template_exploit.py │ └── tftp │ └── template_exploit.py └── Tools ├── README.md ├── bin2op.py ├── disassemble.py ├── egghunter.py └── port-converter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/.gitignore -------------------------------------------------------------------------------- /Exploits/Audiograbber_1.83/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Audiograbber_1.83/exploit.py -------------------------------------------------------------------------------- /Exploits/Dup_Scout_Enterprise_10.0.18/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Dup_Scout_Enterprise_10.0.18/exploit.py -------------------------------------------------------------------------------- /Exploits/Easy_CD_DVD_Copy_1.3.24/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Easy_CD_DVD_Copy_1.3.24/exploit.py -------------------------------------------------------------------------------- /Exploits/Easy_Chat_Server_3.1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Easy_Chat_Server_3.1/exploit.py -------------------------------------------------------------------------------- /Exploits/Easy_File_Sharing_Web_Server_7.2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Easy_File_Sharing_Web_Server_7.2/exploit.py -------------------------------------------------------------------------------- /Exploits/Free_Float_FTP_Server_1.0/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Free_Float_FTP_Server_1.0/exploit.py -------------------------------------------------------------------------------- /Exploits/KarjaSoft_Sami_FTP_Server_2.0.1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/KarjaSoft_Sami_FTP_Server_2.0.1/exploit.py -------------------------------------------------------------------------------- /Exploits/KnFTP_Server_1.0.0/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/KnFTP_Server_1.0.0/exploit.py -------------------------------------------------------------------------------- /Exploits/LabF_nfsAxe_FTP_Client_3.7/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/LabF_nfsAxe_FTP_Client_3.7/exploit.py -------------------------------------------------------------------------------- /Exploits/LabF_nfsAxe_FTP_Client_3.7/exploit_DEP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/LabF_nfsAxe_FTP_Client_3.7/exploit_DEP.py -------------------------------------------------------------------------------- /Exploits/Light_HTTPD_0.1/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Light_HTTPD_0.1/exploit.py -------------------------------------------------------------------------------- /Exploits/MinaliC_Webserver_2.0.0/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/MinaliC_Webserver_2.0.0/exploit.py -------------------------------------------------------------------------------- /Exploits/ProSysInfo_TFTP_Server_0.4.2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/ProSysInfo_TFTP_Server_0.4.2/exploit.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack0.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack0.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack1.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack2.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack3.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack4.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack5.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack6.py -------------------------------------------------------------------------------- /Exploits/Protostar/stack/stack7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Protostar/stack/stack7.py -------------------------------------------------------------------------------- /Exploits/R_3.4.4/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/R_3.4.4/exploit.py -------------------------------------------------------------------------------- /Exploits/Ultra_MiniHTTPd_1.2/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/Ultra_MiniHTTPd_1.2/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/KSTET/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/VulnServer/KSTET/exploit.py -------------------------------------------------------------------------------- /Exploits/VulnServer/TRUN/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Exploits/VulnServer/TRUN/exploit.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/README.org -------------------------------------------------------------------------------- /Templates/local/template_class_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/local/template_class_exploit.py -------------------------------------------------------------------------------- /Templates/local/template_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/local/template_exploit.py -------------------------------------------------------------------------------- /Templates/remote/ftp/client/template_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/remote/ftp/client/template_exploit.py -------------------------------------------------------------------------------- /Templates/remote/ftp/server/template_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/remote/ftp/server/template_exploit.py -------------------------------------------------------------------------------- /Templates/remote/http/template_class_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/remote/http/template_class_exploit.py -------------------------------------------------------------------------------- /Templates/remote/http/template_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/remote/http/template_exploit.py -------------------------------------------------------------------------------- /Templates/remote/tftp/template_exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Templates/remote/tftp/template_exploit.py -------------------------------------------------------------------------------- /Tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Tools/README.md -------------------------------------------------------------------------------- /Tools/bin2op.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Tools/bin2op.py -------------------------------------------------------------------------------- /Tools/disassemble.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Tools/disassemble.py -------------------------------------------------------------------------------- /Tools/egghunter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Tools/egghunter.py -------------------------------------------------------------------------------- /Tools/port-converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dhn/OSCE/HEAD/Tools/port-converter.py --------------------------------------------------------------------------------