Guillaume Pillot

Results 2 comments of Guillaume Pillot

Following, my python script: ```python #! /usr/bin/python3 # -*- coding: utf-8 -*- from pwn import * s = ssh(host='192.168.0.21', user='myusername', password='mypass') p = s.run('python -i') print(p.recvall()) p.interactive() ``` Following, the...

Thanks. If my understanding is good, now the equivalent for enumerateExports is: ```js libc = Process.getModuleByName('libFridaEight.so'); libc.enumerateExports(); ```