├── Configs └── Ip.php ├── README.md ├── main.py ├── tracer-tester.png └── update.py /Configs/Ip.php: -------------------------------------------------------------------------------- 1 | \033[01;32m"; 26 | $NCL="\033[00m"; 27 | echo "$red"."└─".$grey."Enter IP/Domain: ". "$red"; 28 | $ip = readline(); 29 | $data = @unserialize(file_get_contents("http://ip-api.com/php/".$ip)); 30 | date_default_timezone_set($data['timezone']); 31 | system("clear"); 32 | 33 | if($data['status'] == 'success') { 34 | echo "\n ".$FCL."IP Address ".$MCL." ".$data['query']; 35 | echo "\n ".$FCL."Country code ".$MCL." ".$data['countryCode']; 36 | echo "\n ".$FCL."Country ".$MCL." ".$data['country']; 37 | echo "\n ".$FCL."Date & Time ".$MCL." ".date("F j, Y, g:i a"); 38 | echo "\n ".$FCL."Region code ".$MCL." ".$data['region']; 39 | echo "\n ".$FCL."Region ".$MCL." ".$data['regionName']; 40 | echo "\n ".$FCL."City ".$MCL." ".$data['city']; 41 | echo "\n ".$FCL."Zip code ".$MCL." ".$data['zip']; 42 | echo "\n ".$FCL."Time zone ".$MCL." ".$data['timezone']; 43 | echo "\n ".$FCL."ISP ".$MCL." ".$data['isp']; 44 | echo "\n ".$FCL."Organization ".$MCL." ".$data['org']; 45 | echo "\n ".$FCL."ASN ".$MCL." ".$data['as']; 46 | echo "\n ".$FCL."Latitude ".$MCL." ".$data['lat']; 47 | echo "\n ".$FCL."Longtitude ".$MCL." ".$data['lon']; 48 | echo "\n ".$FCL."Location ".$MCL." ".$data['lat'].",".$data['lon']; 49 | echo "\n\n$NCL"; 50 | 51 | } 52 | 53 | ?> -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Tracer-Tester
2 |

3 | Paris 4 | * `📱 💀`
5 | * `A Tracer-Tester for termux & Linux ` 6 | 7 | ## Disclaimer 8 | *This tool is for educational purposes only !* 9 | _Don't use this to take revenge_
10 | *I will not be responsible for any misuse* 11 | 12 | ## About 13 | * `Unlimited Testings` 14 | * `Cross Platform` 15 | * `Supports newest Android also` 16 | * `No balance will be deducted ` 17 | * `Working Apis` 18 | * `No missing Api issues,` 19 | * `Working with all Operators/Carriers` 20 | 21 | ## Tested On : 22 | 31 | 32 | ## Termux Issue: 33 | * `Termux App is no longer recieving updates on playstore` 34 | * `due to recently introduced Google Play policy ` 35 |
36 | 37 | DON'T WORRY 38 | * `We have a solution for that !` 39 |
40 | 41 | 42 | You can download the latest termux app and install it 43 | 44 | From here Link 45 | 46 | ## Usage 47 | 48 | 49 | 50 | #### For Termux 51 | 52 | Update the packages 53 | ```bash 54 | pkg up -y 55 | ``` 56 | Install some dependencies 57 | ```bash 58 | pkg install git wget python -y 59 | ``` 60 | Clone the repository 61 | ```bash 62 | git clone https://github.com/samay825/Tracer-Tester 63 | ``` 64 | Go to the Tracer-Tester directory 65 | ```bash 66 | cd Tracer-Tester 67 | ``` 68 | Install php 69 | ```bash 70 | pkg install php 71 | ``` 72 | Run the script 73 | ```bash 74 | python3 main.py 75 | ``` 76 | 77 | 78 | 79 | #### For Debian-based GNU/Linux distributions 80 | 81 | Update the packages 82 | ```bash 83 | apt-get update; apt-get upgrade -y 84 | ``` 85 | Install some dependencies 86 | ```bash 87 | apt-get install git wget python3 -y 88 | ``` 89 | Clone the repository 90 | ```bash 91 | git clone https://github.com/samay825/Tracer-Tester 92 | ``` 93 | Go to the Tracer-Tester directory 94 | ```bash 95 | cd Tracer-Tester 96 | ``` 97 | Install php 98 | ```bash 99 | sudo apt install php 100 | ``` 101 | Run the script 102 | ```bash 103 | sudo python3 main.py 104 | ``` 105 | 106 | 107 | ## Version 108 | * `Tracer-Tester v1.0` 109 | 110 | ## Features 111 | * `Trace IP Address` 112 | 113 | * `Check the Ports of tcp are connected or not !` 114 | 115 | * `Domain Lookup` 116 | 117 | ## Note 118 | * `This Tracer-Tester is used to trace ip & DoaminLookup & Ports ` 119 | 120 | ## Licence 121 | Apache 2.0 © Samay825 122 | 123 | 124 | ## Contact Us 125 | * `If you have any feedback or queries` 126 | * `Instagram: @sincryptzork` 127 | * `Telegram: @sincryptzork` 128 | 129 | ## Telegram Channel 130 | 131 | * `All updates of Team Sincryption will be posted here !` 132 | 133 | 134 | 135 | -------------------------------------------------------------------------------- /tracer-tester.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samay825/Tracer-Tester/d9798a138698c1d1e609c0e38ec0e620420adb59/tracer-tester.png -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- 1 | # colors 2 | r = "\033[1;31m" 3 | g = "\033[1;32m" 4 | y = "\033[1;33m" 5 | b = "\033[1;34m" 6 | d = "\033[2;37m" 7 | R = "\033[1;41m" 8 | Y = "\033[1;43m" 9 | B = "\033[1;44m" 10 | w = "\033[1;37m" 11 | g = "\033[0;90m" 12 | y = r 13 | 14 | #----------------modules 15 | from os import system,name 16 | from time import sleep 17 | 18 | 19 | # -----clear 20 | system('cls' if name=='nt' else 'clear') 21 | 22 | #-------update 23 | 24 | system('rm -rf main.py') 25 | sleep(0.1) 26 | 27 | system('wget https://raw.githubusercontent.com/samay825/Tracer-Tester/main/main.py') 28 | print(r+"└─ "+w+"\033[1;37m>> Script Updated <<") 29 | sleep(0.5) 30 | 31 | # ---------return to main.py file 32 | system('python main.py' if name=='nt' else 'python3 main.py') 33 | --------------------------------------------------------------------------------