|
Project Information
Featured
Downloads
Links
|
Read register state of a given process from within ruby About reginfo here Example require 'reginfo'
include RegInfo
pid = fork do
system("tail -f txt")
end
puts getr("eip",pid) #here we get EIP
|