Project

rubypwn

0.0
No commit activity in last 3 years
No release in over 3 years
A simple library for CTF pwning challenges. Like Python's pwntools, it's used to help you write exploit quickly.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 2.1.0, ~> 2.1
>= 2.0.0, ~> 2.0
>= 1.8.0, ~> 1.8
>= 0.2.2, ~> 0.2
 Project Readme

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/