ome organizations publicly distribute configuration files and keys for VPN systems. Cisco profile configuration files (PCFs) contain IPsec VPN client variables, including the following:
• VPN server endpoint addresses
• Plaintext credentials (group name and password)
• Encrypted credentials (an obfuscated group password)
using google search strings:
crack / decode the passwords
Offline
Extract metadata from the data we have.
exiftool
exiftool poissonrecon.pdf
Strings
-e >>> for 16 bit big-endian unicode
-el >>> for 16 bit little-endian unicode
-n >>> set minimum caracter length
-a >>> ascii
-u >>> unicode
strings -n 4 test.elf
tesseract
find text in images
apt install tesseract-ocr
apt-get install tesseract-ocr-LANG
apt-get install tesseract-ocr-all
for x in *.jpg; do tesseract $x stdout -psm 11 -l eng >> tesser.out; done