Stalker represents a sophisticated tool utilized in the realm of Open Source Intelligence (OSINT). Its primary function is to facilitate the gathering of comprehensive information about individuals.
- Search Someone By Social Media Username.
- Get Someone's Information using a Phone Number.
- Add a Email/Gmail Information Gathering feature.
- Add More Websites To Search for the Social Media Username Information Gathering part.
- Try to get more Information on the Phone Number Information Gathering part.
- Add a self updating system.
- Organazie the code to be more readable and understandable.
Firstly, clone the GitHub repository to your local machine.
git clone https://github.com/SORRYSPLASH/Stalker.git
Next, navigate to the 'Stalker' directory using the 'cd' command.
cd Stalker
Finally, not only install the requirements, but also ensure they are upgraded to their latest versions.
pip install -r requirements.txt
To Retrieve Information Associated with a Phone Number
python Stalker -p (Your Phone Number Target Here)
To Extract Details Pertaining to a Social Media Username
python Stalker -u (Your Social Media Username Target Here)
We appreciate your interest in contributing to this project! Here are the steps to contribute:
-
Fork the Repository: Click on the 'Fork' button at the top right corner of this page. This will create a copy of this repository in your account.
-
Clone the Repository: Now, clone this repository to your machine. Click on the 'Code' button and then click the 'copy to clipboard' icon to copy the URL. Open your terminal and enter the following git command:
git clone copied-url-here
- Create a New Branch: Navigate to the directory of the project on your machine in your terminal and create a new branch using the following command:
git checkout -b your-new-branch-name
-
Make Your Changes: Make the necessary changes in your local copy of the project.
-
Commit and Push Your Changes: Once you have made your changes, commit them with a meaningful commit message. Use the following commands to add, commit, and push your changes:
git add .
git commit -m "your-commit-message"
git push origin your-new-branch-name
- Create a Pull Request: Go to your repository on GitHub, you'll see a 'Compare & pull request' button. Click on that button to create a pull request. Write a brief description of your changes and submit your pull request.
Thank you for your contribution!