Seeker - Find Geolocation with High Accuracy

2 min read

Seeker - Find Geolocation with High Accuracy

Introduction

Concept behind Seeker is simple, just like we host phishing pages to get credentials why not host a fake page that requests your loction just like many popular location based websites. Seeker Hosts a fake website on In Built PHP Server and uses Ngrok, website asks for Location Permission and if the user allows it, we can get :

  • Longitude
  • Latitude
  • Accuracy
  • Altitude - Not always available
  • Direction - Only available if user is moving
  • Speed - Only available if user is moving

Along with Location Information we also get Device Information without any permissions :

  • Operating System
  • Platform
  • Number of CPU Cores
  • Amount of RAM - Approximate Results
  • Screen Resolution
  • GPU information
  • Browser Name and Version
  • Public IP Address

This tool is a Proof of Concept and is for Educational Purposes Only, Seeker shows what data a malicious website can gather about you and your devices and why you should not click on random links and allow critical permissions such as Location etc.

  • Other tools and services offer IP Geolocation which is not very accurate and does not give location of user.
  • Generally if a user accepts location permsission, Accuracy of the information recieved is **accurate to approximately 30 meters**.

Tested On :

  • Kali Linux 2018.2
  • Ubuntu 18.04
  • Arch Linux based Distro
  • Termux
  • Kali Linux (WSL)
  • Parrot OS
  • Zorin OS

Installation

Ubuntu/Kali Linux

git clone https://github.com/thewhiteh4t/seeker.git
cd seeker/
chmod 777 install.sh
./install.sh

#OR using Docker


# Install docker

curl -fsSL https://get.docker.com -o get-docker.sh
sh get-docker.sh

# Build Seeker

cd seeker/
docker build -t seeker .

# Launch seeker

docker run -t --rm seeker
Arch Linux Based Distro

# Install docker

pacman -Syy pacman -S docker
systemctl start docker.service

# Build Seeker

cd seeker/
docker build -t seeker .

# Launch seeker

docker run -t --rm seeker

Demo


I am Kunal and I am 14 years old

You may like these posts

  • Guide For Install Saycheese Tool In Termux. (Updated)With the help of Saycheese tool you can access front camera of smartphone or laptop.Installation Commands #professor { borde…
  • Guide For Install PhoneSploit Tool In Termux.PhoneSploit is tool for remote ADB Exploitation. With the help of this tool you can control android device by just IP address.Installat…
  • Guide For Install Windows 10 In Termux.This Guide include process for install and run windows 10 in any android phone with the help of termux. Without Rooting your device. You can …
  • Guide For Install FBI Tool In Termux.FBI tool is also called as facebook bot, you can automate so many tasks by FBI tool.Installation Commands #professor { border: 1px solid gre…
  • Guide For Install Kali Nethunter In Non Rooted Android Device via Termux With Graphical User Interface.Kali Nethunter is developed by offensive security which gives you complete ex…
  • Guide For Install PhoneInfoga Tool In Termux. PhoneInfoga is Information Gathering Tool. This tool help you to find information by just typing phone number.Installation Commands #…

Post a Comment