https://github.com/owlinux1000/xploitlib
Exploit library for rubyist
https://github.com/owlinux1000/xploitlib
Last synced: over 1 year ago
JSON representation
Exploit library for rubyist
- Host: GitHub
- URL: https://github.com/owlinux1000/xploitlib
- Owner: owlinux1000
- License: mit
- Created: 2017-11-07T08:24:59.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T13:20:28.000Z (about 8 years ago)
- Last Synced: 2025-02-16T12:58:33.043Z (over 1 year ago)
- Language: Ruby
- Size: 21.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
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/)