Memcached
Steps
1) Nmap scan
sudo nmap RHOST -p 11211 -sU -sS --script memcached-info2) Install tools
npm install -g memcached-cli
sudo apt install libmemcached-tools3) Authenticate
memcached-cli USERNAME:PASSWORD@RHOST:112114) Print stats of memcached port
echo -en "\x00\x00\x00\x00\x00\x01\x00\x00stats\r\n" | nc -q1 -u 127.0.0.1 112115) Memcached commands
Alternate way to dump info from server
View secrets
Upload a file to the memcached server
Last updated