Go to file
Hung-Chi Su 61cbfc1200 require elf 2015-09-06 01:21:35 +08:00
docs add primitive infra of docs 2015-08-27 12:12:04 +08:00
lib require elf 2015-09-06 01:21:35 +08:00
.gitignore rubypwn first commitgit st1git st1 2015-08-26 22:23:57 +08:00
Gemfile rubypwn first commitgit st1git st1 2015-08-26 22:23:57 +08:00
README.md Update README.md 2015-08-27 10:43:45 +08:00
rubypwn.gemspec add elf.rb 2015-09-04 22:35:05 +08:00

README.md

rubypwn

Ruby - pwn tools

How to install

$ gem install rubypwn

$ irb
2.2.2 :001 > require 'rubypwn'
 => true
2.2.2 :002 > e = Exec.new "ls -la"
 => #<Exec:0x007fdf32e6f320>
2.2.2 :003 > e.gets
total 16
 => "total 16\n"
2.2.2 :004 > Asm.compile("mov eax, 1")
 => "b801000000"
2.2.2 :005 >

Documentation

https://rubypwn.readthedocs.org/en/latest/