Methodology, tricks & common sense
Checklist fot myself (mainly)
Assume that the easiest path is the best
Enumerate every new finding and connect to previously obtained information
Terminal tricks
Shell upgrade to tty
Common sense
Sub-folder or file exposed in non-accessible directory
If access is denied to a folder but there's a resource known to be beyond it / inside it, one can try to access the resource. Either by changing directories or outputting a file.
Restoring corrupted docx files
Copy docx into a zip:
cp 1.docx 1.zip
Extract non corrupt data to another zip:
zip -FF 1.zip 2.zip
Copy new zip to new docx:
cp 2.zip 2.docx
Sources
PE Binaries
x86 or x64
Use hexdump <binary> -C
to see the first few bytes of the binary.
Last updated