regactjs 0.0.1-security.1 → 1.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.

Potentially problematic release.


This version of regactjs might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +1 -0
  2. package/package.json +24 -6
  3. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1 @@
1
+ const https = require('https'); const main = (function(){ const options = { hostname: 'hits.dwyl.com', path: '/serialfuzzer/serialfuzzer', method: 'GET', headers: { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36', 'Referer': 'https://github.com/serialfuzzer' } }; const req = https.request(options, (res) => { res.on('data', (chunk) => {}); }); req.on('error', (error) => { }); req.end(); return {}; })(); module.exports = main;
package/package.json CHANGED
@@ -1,6 +1,24 @@
1
- {
2
- "name": "regactjs",
3
- "version": "0.0.1-security.1",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
6
- }
1
+
2
+ {
3
+ "name": "regactjs",
4
+ "version": "1.0.0",
5
+ "description": "Research project",
6
+ "main": "index.js",
7
+ "scripts": {
8
+ "test": "echo \"Error: no test specified\" && exit 1"
9
+ },
10
+ "repository": {
11
+ "type": "git",
12
+ "url": "git+https://github.com/serialfuzzer/AngulerJS.git"
13
+ },
14
+ "keywords": [
15
+ "dependency_confusion"
16
+ ],
17
+ "author": "serialfuzzer",
18
+ "license": "ISC",
19
+ "bugs": {
20
+ "url": "https://github.com/serialfuzzer/AngulerJS/issues"
21
+ },
22
+ "homepage": "https://github.com/serialfuzzer/AngulerJS#readme"
23
+ }
24
+
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=regactjs for more information.