@vulcn/plugin-payloads 0.2.0 → 0.3.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.
- package/LICENSE +662 -0
- package/dist/index.cjs +76 -339
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +59 -50
- package/dist/index.d.ts +59 -50
- package/dist/index.js +70 -337
- package/dist/index.js.map +1 -1
- package/package.json +29 -14
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vulcn/plugin-payloads",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "0.3.0",
|
|
4
|
+
"description": "Security payload loader plugin for Vulcn — curated XSS, SQLi, and injection attack payloads with built-in libraries, PayloadBox integration, and custom payload file support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -24,19 +24,24 @@
|
|
|
24
24
|
"files": [
|
|
25
25
|
"dist"
|
|
26
26
|
],
|
|
27
|
-
"scripts": {
|
|
28
|
-
"build": "tsup",
|
|
29
|
-
"dev": "tsup --watch",
|
|
30
|
-
"clean": "rm -rf dist",
|
|
31
|
-
"typecheck": "tsc --noEmit"
|
|
32
|
-
},
|
|
33
27
|
"keywords": [
|
|
34
28
|
"vulcn",
|
|
35
29
|
"plugin",
|
|
36
|
-
"payloads",
|
|
30
|
+
"security-payloads",
|
|
31
|
+
"attack-payloads",
|
|
32
|
+
"xss-payloads",
|
|
33
|
+
"sqli-payloads",
|
|
34
|
+
"injection-payloads",
|
|
37
35
|
"xss",
|
|
38
36
|
"sqli",
|
|
39
|
-
"
|
|
37
|
+
"sql-injection",
|
|
38
|
+
"penetration-testing",
|
|
39
|
+
"security-testing",
|
|
40
|
+
"payloadbox",
|
|
41
|
+
"wordlist",
|
|
42
|
+
"fuzzing",
|
|
43
|
+
"owasp",
|
|
44
|
+
"web-security"
|
|
40
45
|
],
|
|
41
46
|
"author": "rawlab",
|
|
42
47
|
"license": "AGPL-3.0",
|
|
@@ -45,17 +50,27 @@
|
|
|
45
50
|
"url": "git+https://github.com/vulcnize/vulcn.git",
|
|
46
51
|
"directory": "plugins/payloads"
|
|
47
52
|
},
|
|
53
|
+
"homepage": "https://docs.vulcn.dev",
|
|
54
|
+
"bugs": {
|
|
55
|
+
"url": "https://github.com/vulcnize/vulcn/issues"
|
|
56
|
+
},
|
|
48
57
|
"peerDependencies": {
|
|
49
|
-
"@vulcn/engine": "^0.
|
|
58
|
+
"@vulcn/engine": "^0.4.0"
|
|
50
59
|
},
|
|
51
60
|
"devDependencies": {
|
|
52
61
|
"@types/node": "^22.0.0",
|
|
53
|
-
"@vulcn/engine": "workspace:*",
|
|
54
62
|
"tsup": "^8.0.0",
|
|
55
|
-
"typescript": "^5.7.0"
|
|
63
|
+
"typescript": "^5.7.0",
|
|
64
|
+
"@vulcn/engine": "0.4.0"
|
|
56
65
|
},
|
|
57
66
|
"dependencies": {
|
|
58
67
|
"yaml": "^2.4.0",
|
|
59
68
|
"zod": "^3.24.0"
|
|
69
|
+
},
|
|
70
|
+
"scripts": {
|
|
71
|
+
"build": "tsup",
|
|
72
|
+
"dev": "tsup --watch",
|
|
73
|
+
"clean": "rm -rf dist",
|
|
74
|
+
"typecheck": "tsc --noEmit"
|
|
60
75
|
}
|
|
61
|
-
}
|
|
76
|
+
}
|