Logging and Context
Logging
log.info(text)
>>> log.info('Binary Base is at 0x400000')
[*] Binary Base is at 0x400000log.success(text)
>>> log.success('ASLR bypassed! Libc base is at 0xf7653000')
[+] ASLR bypassed! Libc base is at 0xf7653000log.error(text)
>>> log.success('The payload is too long')
[-] The payload is too longContext
context.arch = 'i386'
context.os = 'linux'
context.endian = 'little'
context.bits = 64Last updated
