Go to file
Hung-Chi Su 900d64ec85 add xor function 2015-11-07 20:33:28 +08:00
bin add some comments 2015-09-09 21:50:17 +08:00
docs add args sample 2015-10-28 00:22:41 +08:00
lib add xor function 2015-11-07 20:33:28 +08:00
.gitignore ignore all *.gem 2015-09-06 19:06:36 +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 version 0.0.17 2015-10-28 00:17:12 +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/