CSE 343/443: Network Security

Homework1 Shellcode (due Sept 10th):

Description: Create shellcode that prints your last name.

 

name.c:

char shellcode[] = "put your shellcode here"; 

void shell() {  

  int *ret;   

  ret = (int *)&ret + 2;  

  (*ret) = (int)shellcode;

} 

int main() {    

  shell();   

  return 0;

}

 

gcc -g -z execstack -o name name.c

./name

cao

 

Note: Homework is collected at the beginning of class on the due date.
Please submit your homework to cse343443@gmail.com