You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
Hello there!
I decided to try pyrebox a few days ago. On Linux examining Linux.
Here's my setup. Host - linux ubuntu (whatever doesn't matter). Target is Debian 9.9.0 amd64.
Problems:
ps command doesn't work - shows no processes at all! However vol linux_psaux works perfectly fine!
as ps doesn't work proc don't work, mon don't work etc.
And so debugging I went:
ps, proc, mon and all the rest don't work because find_procs don't work. It simply returns []
find_procs don't work because set<Process> processes is empty.
set<Process> processes is empty because the vmi_tlb_callback -> linux_vmi_tlb_callback -> initialize_init_task is not working. Lets look at initialize_init_task which seems like a ripoff from volatility rewritten in C.
initialize_init_task is looking for specific task name - "swapper" but there is no such or it can't find it.
it then tries the KSLR code and goes on to search for swapper/0\x00\x00\x00\x00\x00\x00 with memmem! Still doesn't find it!
i guess the reason for this failure is because most of the shifts values are hard coded whilst volatility
can take them from the profile!
by the way the initialization of the needle array cannot be optimized by the compiler.
Is there any progress on this issue?
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
The text was updated successfully, but these errors were encountered: