Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/NullArray/SBD
Static Binary Deployer. Download and deploy *Nix utilities on a compromised system.
https://github.com/NullArray/SBD
bash bash-script post-exploitation shell shellscript
Last synced: 22 days ago
JSON representation
Static Binary Deployer. Download and deploy *Nix utilities on a compromised system.
- Host: GitHub
- URL: https://github.com/NullArray/SBD
- Owner: NullArray
- License: gpl-3.0
- Created: 2018-10-05T17:48:14.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-06T12:15:38.000Z (almost 5 years ago)
- Last Synced: 2024-11-15T10:10:34.832Z (28 days ago)
- Topics: bash, bash-script, post-exploitation, shell, shellscript
- Language: Shell
- Homepage:
- Size: 28.3 KB
- Stars: 28
- Watchers: 5
- Forks: 9
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-hacking-lists - NullArray/SBD - Static Binary Deployer. Download and deploy *Nix utilities on a compromised system. (Shell)
README
# SBD
This script is designed to give the user access to Linux utilities that may otherwise be unavailabe on a compromised system.Besides including [BusyBox](https://busybox.net/about.html), SBD also provides functionality to download static binaries for net utilities namely; Ncat, Socat, Nmap, and Ngrok.
## Usage
After a system has been succesfully compromised `wget` or `git` SBD to the system in question, depending on what's available. From there making it executable and running it with `chmod +x sbd.sh && ./sbd.sh` should bring you to a menu. The options for which are as follows;
```
1) Help 4) Deploy BusyBox 7) Quit
2) Set Outpath 5) Deploy Net Utilities
3) Deploy All 6) Clean up```
The `Help` option shows this informational message. The `Set Outpath` option allows you to define a directory to which the static binaries will be deployed. `Deploy All` downloads all static binaries available with this tool. `Deploy BusyBox` downloads a BusyBox binary with built-in Linux Utilities. Choosing the `Deploy Net Utilities` option will download static binaries for Ncat, Socat, Nmap, and Ngrok. With Ngrok being a portforwarding/tunneling utility. `Clean up` removes all downloaded files and; `Quit` exits SBD.### Note
SBD was written to be a complimentary script to my [RootHelper](https://github.com/NullArray/RootHelper) tool. But I have decided to release it as a stand-alone version as well