pentester 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.
Files changed (3) hide show
  1. package/README.md +14 -0
  2. package/bin/cli.js +17 -0
  3. package/package.json +34 -0
package/README.md ADDED
@@ -0,0 +1,14 @@
1
+ # pentester
2
+
3
+ Full-scale web / network / API penetration testing toolkit, powered by **Insomnia**.
4
+
5
+ Docs, downloads, and getting started: **[insom.ai](https://insom.ai)**
6
+
7
+ ```bash
8
+ npm install -g pentester
9
+ pentester
10
+ ```
11
+
12
+ ## License
13
+
14
+ UNLICENSED — proprietary. © Insomnia / insom.ai.
package/bin/cli.js ADDED
@@ -0,0 +1,17 @@
1
+ #!/usr/bin/env node
2
+ "use strict";
3
+
4
+ const pkg = require("../package.json");
5
+
6
+ process.stdout.write(
7
+ [
8
+ "",
9
+ " pentester — full-scale web / network / API penetration testing toolkit",
10
+ "",
11
+ " Powered by Insomnia.",
12
+ " Docs, downloads & getting started: https://insom.ai",
13
+ "",
14
+ ` v${pkg.version}`,
15
+ "",
16
+ ].join("\n") + "\n"
17
+ );
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "pentester",
3
+ "version": "1.0.0",
4
+ "description": "Pentester — full-scale web/network/API penetration testing toolkit launcher (insom.ai)",
5
+ "bin": {
6
+ "pentester": "bin/cli.js"
7
+ },
8
+ "scripts": {
9
+ "test": "node bin/cli.js --version"
10
+ },
11
+ "keywords": [
12
+ "pentest",
13
+ "penetration-testing",
14
+ "security",
15
+ "web-security",
16
+ "network-scanner",
17
+ "api-security",
18
+ "insomnia",
19
+ "appsec"
20
+ ],
21
+ "homepage": "https://insom.ai",
22
+ "bugs": {
23
+ "url": "https://insom.ai"
24
+ },
25
+ "author": "Insomnia (insom.ai)",
26
+ "license": "UNLICENSED",
27
+ "engines": {
28
+ "node": ">=14"
29
+ },
30
+ "files": [
31
+ "bin/",
32
+ "README.md"
33
+ ]
34
+ }