MOSINT is a simple OSINT tool that helps find publicly available information related to email addresses. It collects data from different online sources and displays the results in a single terminal window. You can install MOSINT in Termux to perform email reconnaissance and OSINT tasks.
Here’s what you can do with MOSINT in Termux:
- Search information related to email addresses.
- Check for data breaches.
- Perform DNS lookups.
- Search related emails.
- Check email reputation.
- Gather OSINT information from multiple sources.
Install MOSINT in Termux
Below are the simple commands to install MOSINT in Termux. Copy and run each command one by one to install the tool.
Update Termux packages.
pkg update && pkg upgrade -yInstall Git and Golang.
pkg install git golang -yClone the MOSINT repository.
git clone https://github.com/alpkeskin/mosintMove into the source directory.
cd mosint/v3Build the MOSINT binary.
go build -o mosint ./cmd/mosintCopy the example configuration file.
cp ../example-config.yaml ~/.mosint.yamlMOSINT is now installed and ready to use.
Use MOSINT in Termux
Display the help menu.
./mosint --helpCheck the installed version.
./mosint --versionSearch information related to an email address.
./mosint user@example.comUse a custom configuration file.
./mosint -c ~/.mosint.yaml user@example.comSave results into a JSON file.
./mosint -o result.json user@example.comRun in silent mode.
./mosint -s -o result.json user@example.comSaves the results without displaying detailed output in the terminal.
End Note
MOSINT is a lightweight OSINT tool that can help investigate email addresses and explore publicly available information. You can install and use MOSINT in Termux to practice email reconnaissance, gather OSINT data, and learn more about information gathering techniques.
