1. Push 0x00000000 onto the stack by XOR’ing the accumulator (EAX) with itself
2. Push //bin/sh in reverse
3. Make EBX point to //bin/sh on the stack using ESP (mov ebx, esp)
4. Push 0x00000000 using EAX and point EDX to it using ESP (push eax and mov edx, esp)
5. Push the address of //bin/sh on the stack an make ECX point to it using ESP.
6. Since EAX is 0, move 11 into the AL.
7. Int 0x80, and you got your shell!