Hi to day I will show you How to Find Some One Location Via on Termux Android 5.0 or Lates - No Root Needed so this way is so easy for beginner users.
IP Address is an address on the computer for the computer can be connected to another computer, IP Address consists of 4 Blocks, each Block in the contents by the numbers 0 - 255. Examples of IP Address such as 192.168.100.1, 10.57.38.223, this is IPv4.
So guys, This time I will try to show you how to find information some ip address by using Termux, but just calm down because your android device does not have to be in the root to do that.
So guys, This time I will try to show you how to find information some ip address by using Termux, but just calm down because your android device does not have to be in the root to do that.
So firt time, you need to download and install the termux app on your android (its free). After you have to finish it, you need to open it and type the command bellow step by step:
"apt list""pkg install python" or "packages install python""ls""git clone https://github.com/maldevel/IPGeoLocation.git""ls IPGeolocation""chmod +x ipgeolocation.py""pip install -r requirements.txt""python ipgeolocation.py -m"
I'll try to describe the fist line command above:
'apt list'
let you see list of the tools you can install.
'pkg install python' is command to install the python on your termux.
'ls'
is a Linux shell command that lists directory contents of files and directories. but to show more you can type 'tree' command and hit enter.
'git clone [url]'
git clone is a Git command line utility which is used to target an exiting repository and create a clone or copy of the target repository.
'ipgeolocation'
Geolocation is the identification or estimation of the real-world geographic location of an object, such as a radar source, mobile phone, or Internet-connected computer terminal.
'chmod +x'
chmod +x
or chmod a+x
('all plus executable bit') makes the file executable by everyone.
If you do this to a directory, it makes the directory searchable, instead. I.e., you can list the contents of a directory that you have +x permission on.
'pip install -r requirement.txt'
This a python utility, pip also supports installing from " requirements files", which provide an easy way to specify a whole environment to be installed.
'python ipgeolocation.py'
IPGeoLocation is a Python based tool designed to retrieve IP geolocation information from the ip-api service, useful for building into your security tools
Comments