Top 5 hacking tools that hacker you to get information about their victim, In this blog post one by one we are going to see all tools with installation commands
To install this type you must have Android (With Termux) / Linux / Ubuntu / Windows or any OS that supports Linux commands
The Name of all tools that we are going to use in this blog post!
1 StagHide
2 MackPhish
3 SEEKER
4 FSOCEITY
5 OsintGram
1 StagHide: Steghide is a steganography program that can hide data in various image and audio files. The color- respectively sample-frequencies are not changed thus making the embedding resistant against first-order statistical tests.
Features:
- compression of embedded data
- encryption of embedded data
- embedding of a checksum to verify the integrity of the extracted data
- support for JPEG, BMP, WAV, and AU files
Installation Commands
git clone https://github.com/TermuxHackz/steghide
cd steghide
bash install.sh
bash steghide.sh
2 MackPhish: MaskPhish is not any Phishing tool. It's just a proof of concept of "URL Making Technology". It is a simple Bash Script to hide phishing URLs under a normal-looking URL (google.com or facebook.com). It can be integrated into Phishing tools (with proper credits) to see at the URL is legit.
Installation Commands Upload soon!
3 SEEKER: The concept behind Seeker is simple, just like we host phishing pages to get credentials why not host a fake page that requests your location like many popular location-based websites. Seeker Hosts a fake website that asks for Location Permission and if the target allows it, we can get :
- Longitude
- Latitude
- Accuracy
- Altitude - Not always available
- Direction - Only available if a user is moving
- Speed - Only available if a user is moving
Kali Linux / Arch Linux / Ubuntu / Fedora / Parrot OS / Termux
git clone https://github.com/theh4t/seeker.git
cd seeker/
chmod +x install.sh
./install.sh
4 FSOCIETY: fsociety is a penetration testing framework that consists of all penetration testing tools that a hacker needs. It includes all the tools involved in the Mr. Robot Series.
INSTALLATION COMMADS
git clone https://github.com/Manisso/fsociety.git
cd society
python fsociety.py
5 OsintGram: Osintgram is an OSINT tool on Instagram to collect, analyze, and run reconnaissance.
Installation ⚙️
Fork/Clone/Download this repo
git clone https://github.com/Datalux/Osintgram.git
Navigate to the directory
cd Osintgram
Create a virtual environment for this project
python3 -m venv venv
Load the virtual environment
- On Windows Powershell:
.\venv\Scripts\activate.ps1
- On Linux and Git Bash:
source venv/bin/activate
- On Windows Powershell:
Run
pip install -r requirements.txt
Open the
credentials.ini
file in theconfig
folder and write your Instagram account username and password in the corresponding fieldsAlternatively, you can run the
make setup
command to populate this file for you.Run the main.py script in one of two ways
- As an interactive prompt
python3 main.py <target username>
- Or execute your command straight away
python3 main.py <target username> --command <command>
- As an interactive prompt
0 Comments