File types

PST: #readpst <file> MDB: Used for reading mdb files: file://C:\Users\presc\AppData\Local\Temp\.EH2PD1\1.png //we type go after our commands to run them' To dump the db into a folder structure for easy viewing: #mkdir tables #for i in $(mdb-tables backup.mdb); do mdb-export backup.mdb $i > tables/$i; done //next we want to ignore any tables that are blank. We can see blank tables because the file will only be one line (the column names) and then we grep out for the number 1 output from wc. #cd tables; wc -l * | sort -n | grep -v '\b[1]\b' ZIP: fcrackzip: Password crack zip files:(the -p argument cant take log file paths) #fcrackzip -D -p ../rockyou.txt -u file.zip #unzip file.zip 7z: Unsupported compression method 99: #7z x <file> //extract a zip file #7z l -slt <file> //list contents of a zip file (can show encryption type) we can get this when unzip wont work so we should use 7z or another unzip tool in this case. //To format a 7z file for password cracking #zip2john <file.zip> > <newhashfile.hash> //crack the password #john <file> --wordlist=<list> //see below for a wordlist method //show the password that was found #john <file> --show JAVA: -unzip a jar file: #unzip BlockyCore.jar -view/decompile the jar files #jd-gui

Last updated