preeny
preeny copied to clipboard
Some helpful preload libraries for pwning stuff.
Hi i have problem with preeny that all binary's required GLIBS 2.34 although i have gilbs 2.34 already install on my ubuntu 21.04 and i test it on the 22.04...
Hi! I not sure if `preeny` can work well with other architectures for example `arm`. What I'm trying to do is to 'desocket' an arm-based binary by `preeny` and to...
I am fuzzing a network program and using desock to run the application from standard input. Is this considered to be a safe operation or will this result in less...
# export LD_PRELOAD=$PWD/deptrace.so; # strace -e open /bin/ls ^C # -- Another console strace -p 7572 strace: Process 7572 attached --- stopped by SIGSTOP --- ^C strace: Process 7572 detached...
Hello, first of all thank you for your code! I tried desock with test file provided in the repo and it works well. Then I moved onto a target I'm...
When trying to use redis with desock I ran into an issue where redis would exit right after it receives any input in STDIN, using gdb I found out that...
Consider the following `sock.py` Python file: ``` import socket s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.connect(("127.0.0.1", 31337)) print(s.recv(200)) print(s.recv(200)) ``` Now run `ncat -l --sh-exec 'echo 1' -k` and then the file...
Hi, While testing the desock.so with provided "sock" program from tests folder, when executing it, it doesn't go further than printing "HI!", I would also think it should print "You...
Hello! Thanks for your awesome codes! Here I have some questions about the accept function in src/desock.c. After writte the accept function ,I think all the accept will return a...
This is probably an easy fix - I used to find myself hacking preeny for my own needs quite a lot once and I found it a bit annoying that...