@mailpoet/components 0.0.1-security → 1.0.1768733149

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 @mailpoet/components might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/README.md +9 -3
  2. package/index.js +7 -0
  3. package/package.json +9 -3
package/README.md CHANGED
@@ -1,5 +1,11 @@
1
- # Security holding package
1
+ # Security Research Package
2
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.
3
+ **Package**: @mailpoet/components
4
+ **Version**: 1.0.1768733149
5
+ **Purpose**: Authorized dependency confusion testing
4
6
 
5
- Please refer to www.npmjs.com/advisories?search=%40mailpoet%2Fcomponents for more information.
7
+ This package was published as part of authorized security research.
8
+
9
+ If you're seeing this package installed in your project, your build system may be vulnerable to dependency confusion attacks.
10
+
11
+ Contact your security team immediately.
package/index.js ADDED
@@ -0,0 +1,7 @@
1
+ console.log('[Security Research] Public package @mailpoet/components@1.0.1768733149 loaded');
2
+ console.log('[Security Research] This is a proof-of-concept for dependency confusion testing');
3
+ module.exports = {
4
+ packageName: '@mailpoet/components',
5
+ version: '1.0.1768733149',
6
+ message: 'Security research package - authorized testing'
7
+ };
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "@mailpoet/components",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.1768733149",
4
+ "description": "Security research package - components",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "preinstall": "echo '[Security Research] Package @mailpoet/components was installed from public registry'"
8
+ },
9
+ "keywords": ["security-research"],
10
+ "author": "Security Researcher",
11
+ "license": "ISC"
6
12
  }