A simple program to detect which files have file extensions that probably don't match their contents.
By Mike Peralta
- Python3
- pipenv
Before running inside pipenv, you probably want to ask pipenv to install your dependencies. Navigate to the project directory and execute:
pipenv install
Some instructions and examples for how to use this program.
Invoke a pipenv shell by cd'ing to the project directory and executing:
pipenv shell
From there you can run the program normally like:
python main.py --help
CD to the project directory and run:
pipenv run python main.py --help
The best way to see all available arguments is to run the program with the --help argument.
Special thanks to Professor Heckathorn for suggesting this idea as fun project for his Cyber Forensics class.