Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/owlinux1000/xploitlib
- Owner: owlinux1000
- License: mit
- Created: 2017-11-07T08:24:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-01T13:20:28.000Z (over 6 years ago)
- Last Synced: 2024-11-07T14:44:40.626Z (9 days 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 = 8888if ARGV[0] == "r" # remote
host = 'remote.host'
port = 9999
endSock.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/)