hashcat on OS X

git clone https://github.com/hashcat/hashcat.git mkdir -p hashcat/deps git clone https://github.com/KhronosGroup/OpenCL-Headers.git hashcat/deps/OpenCL cd hashcat/ make ./example0.sh  

escaping docker environment variables

This is the solution: Using single-quotes instead of double-quotes Escape the ampersand & to \& Not escaping the exclamation mark ! e.g. docker run -i -t -rm \ -e 'LDAP_FILTER=(\&(objectCategory=person)(objectClass=user)' \ -e...
en_USEnglish