July 17, 2022

I usually don’t write about OSINT techniques, I think that before approaching OSINT we should speak about ethics and respect. By the way, some OSINT automation techniques are harmless: if you don’t know what you have to search for, you won’t be able to get anything regardless you are automating or not.

Post cover
September 19, 2018

Git repositories are very interesting from an OSInt perspective. There are a few commands to find out deleted files and recover them in seconds: # Find deleted files git log --diff-filter D --pretty="format:" --name-only | sed '/^$/d' > deleted_files.

Post cover