Updated Slides, Code, Readme
This commit is contained in:
16
README
16
README
@@ -1,16 +0,0 @@
|
||||
_____ __ __ ___ _ _ __ ___ ___ ___ _ ____ ____
|
||||
/ ___/| | | / _]| | | | / ] / \ | \ / _] | | / || \
|
||||
( \_ | | | / [_ | | | | / / | || \ / [_ _____ | | | o || o )
|
||||
\__ || _ || _]| |___ | |___ / / | O || D || _] || |___ | || |
|
||||
/ \ || | || [_ | || / \_ | || || [_|_____|| || _ || O |
|
||||
\ || | || || || \ || || || | | || | || |
|
||||
\___||__|__||_____||_____||_____|\____| \___/ |_____||_____| |_____||__|__||_____|
|
||||
|
||||
|
||||
Collection of Shellcode Lab Sessions at from different cons the past years. Consists of PDF Slides and Example codes.
|
||||
|
||||
x86_32 - This is the Shellcode Lab for IA-32 saying 32Bit Intel CPUs
|
||||
x86_64 - This is the Shellcode Lab for IA-64 saying 64Bit Intel CPUs
|
||||
|
||||
Cheers
|
||||
dash
|
||||
19
README.md
19
README.md
@@ -1 +1,18 @@
|
||||
# Shellcode-Lab
|
||||
# SHELLCODE-LAB
|
||||
|
||||
_____ __ __ ___ _ _ __ ___ ___ ___ _ ____ ____
|
||||
/ ___/| | | / _]| | | | / ] / \ | \ / _] | | / || \
|
||||
( \_ | | | / [_ | | | | / / | || \ / [_ _____ | | | o || o )
|
||||
\__ || _ || _]| |___ | |___ / / | O || D || _] || |___ | || |
|
||||
/ \ || | || [_ | || / \_ | || || [_|_____|| || _ || O |
|
||||
\ || | || || || \ || || || | | || | || |
|
||||
\___||__|__||_____||_____||_____|\____| \___/ |_____||_____| |_____||__|__||_____|
|
||||
|
||||
|
||||
Collection of Shellcode Lab Sessions at from different cons the past years. Consists of PDF Slides and Example codes.
|
||||
|
||||
x86_32 - This is the Shellcode Lab for IA-32 saying 32Bit Intel CPUs
|
||||
x86_64 - This is the Shellcode Lab for IA-64 saying 64Bit Intel CPUs
|
||||
|
||||
Cheers
|
||||
dash
|
||||
|
||||
Binary file not shown.
@@ -2,9 +2,9 @@
|
||||
|
||||
unsigned char shellcode[] = "";
|
||||
|
||||
main()
|
||||
int main()
|
||||
{
|
||||
printf("Shellcode Length: %d\n", sizeof(shellcode) - 1);
|
||||
printf("Shellcode Length: %ld\n", sizeof(shellcode) - 1);
|
||||
int (*ret)() = (int(*)())shellcode;
|
||||
ret();
|
||||
}
|
||||
Reference in New Issue
Block a user