Skip to content
/ seeker Public
forked from thewhiteh4t/seeker

Find GeoLocation with High Accuracy...

License

Notifications You must be signed in to change notification settings

xuacker/seeker

 
 

Repository files navigation

Seeker

Introduction

Seeker utilizes HTML5, Javascript, JQuery and PHP to grab Device Information and GeoLocation with High Accuracy.

Seeker Hosts a fake website on Apache Server and uses Ngrok to generate a SSL link which 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 can 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 purely 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.

Note : On iPhone due to some reason location accuracy is approximately 65 meters.

Tested On :

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

Installation

Ubuntu/Kali Linux

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

# After Installation just type seeker in console

# 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

asciicast

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

Termux

cd seeker/termux
chmod 777 install.sh
./install.sh

# After Installation just type seeker in console

If you are unable to get ngrok url that means ngrok is unable to resolve dns, switch to Mobile Data instead of WiFi and it should work, this is a problem with ngrok.

asciicast

Demo

Youtube - https://www.youtube.com/watch?v=ggUGPq4cjSM

About

Find GeoLocation with High Accuracy...

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 49.1%
  • JavaScript 15.7%
  • PHP 10.0%
  • Shell 9.1%
  • CSS 7.4%
  • HTML 6.7%
  • Dockerfile 2.0%