https://github.com/at0mxploit/r3po
Recon + Exploit + Post-Exploitation + Misc modular kitty for security automation (All this yapping to say I just forget commands so I need scripts for it.)
https://github.com/at0mxploit/r3po
Last synced: 9 months ago
JSON representation
Recon + Exploit + Post-Exploitation + Misc modular kitty for security automation (All this yapping to say I just forget commands so I need scripts for it.)
- Host: GitHub
- URL: https://github.com/at0mxploit/r3po
- Owner: At0mXploit
- Created: 2025-09-27T15:15:37.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2025-09-27T15:48:22.000Z (10 months ago)
- Last Synced: 2025-09-27T17:35:56.799Z (10 months ago)
- Language: Shell
- Homepage:
- Size: 5.86 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# R3po
Recon + Exploit + Post-Exploitation + Misc modular kitty for security automation. (All this yapping to say I just forget commands so I need scripts for it.)
## Misc
#### [Hostfile](https://github.com/At0mXploit/R3po/blob/main/Misc/hostfile.sh) - Adding hostfile is annoying.
### Usage:
```bash
$ hostfile
Usage:
hostfile [--linux|--windows] [SHORTNAME]
Adds or updates an entry in the hosts file.
hostfile [--linux|--windows] -R
Removes any entry containing the specified domain or hostname.
hostfile --setup
Installs this script to /usr/bin/hostfile with proper permissions (requires sudo).
hostfile -h | --help
Show this help message.
Examples:
# Add AD box entry on Linux (with shortname):
./hostfile --linux 10.10.10.5 dc.htb.local dc
# Add normal Linux box entry (no shortname):
./hostfile --linux 10.10.10.10 hack.htb
# Add Windows hosts entry (via WSL):
./hostfile --windows 10.10.10.10 hack.htb
# Remove entry by domain or shortname:
./hostfile --linux -R hack.htb
./hostfile --linux -R dc
# Setup the script (move to /usr/bin and set permissions):
sudo chmod +x hostfile
sudo ./hostfile --setup
```
---