Skip to content
/ wphisher Public

Hello! ( wphisher ) A phisher program created by the Whmer and sasame society, this program has some features. Phisher from [WhatsApp, Instagram, Facebook, Tik Tok, Location]

License

Notifications You must be signed in to change notification settings

whmer/wphisher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WPhisher

whmer society 👩‍💻

Hello! ( whmerphisher ) A phisher program created by the Whmer && sasame society, this program has some features. Phisher from [WhatsApp, Instagram, Facebook, Tik Tok, Location]


Installation [ Termux ] 🚀

F-Droid (Download Termux Clicke Me)

  • Installation commands

git clone https://github.com/whmer/wphisher.git

cd wphisher

chmod +x install.sh

bash install.sh

index.js - source code | it returns data from a given IP

const http = require('http');
const fs = require('fs');
const readline = require('readline');

const rl = readline.createInterface({
  input: process.stdin,
  output: process.stdout
});

rl.question('\n[-] IP : ', (ip) => {
  http.get(`http://ipinfo.io/${ip}/geo`, (resp) => {
    let data = '';

    resp.on('data', (chunk) => {
      data += chunk;
    });
    resp.on('end', () => {
      const parsedData = JSON.parse(data);
      const formattedData = JSON.stringify(parsedData, null, 2);
      console.log(formattedData);
      fs.writeFile('./auth/sam_info_ip.dat', formattedData, { flag: 'a'}, (err) => {
        if (err) throw err;
      });
    });

  }).on("error", (err) => {
    console.log("\nErro: " + err.message);
  });

  rl.close();
});



© 2024 whmer, version [0.2.3]

About

Hello! ( wphisher ) A phisher program created by the Whmer and sasame society, this program has some features. Phisher from [WhatsApp, Instagram, Facebook, Tik Tok, Location]

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published