Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/owlinux1000/xploitlib

Exploit library for rubyist
https://github.com/owlinux1000/xploitlib

Last synced: about 11 hours ago
JSON representation

Exploit library for rubyist

Awesome Lists containing this project

README

        

# Xploit

## Usage

```
require 'xploit'

host = 'localhost'
port = 8888

if ARGV[0] == "r" # remote
host = 'remote.host'
port = 9999
end

Sock.open(host, port) do |s|

s.debug = true # default false

puts s.recvline

s.sendline("Here is shellcode")

s.shell

end
```

## Dependency

* [GNU Binutils](https://www.gnu.org/software/binutils/)