mobbdev 0.0.7 → 0.0.8

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 (2) hide show
  1. package/README.md +15 -10
  2. package/package.json +45 -46
package/README.md CHANGED
@@ -1,32 +1,37 @@
1
- # Mobb CLI (community tool)
1
+ # Bugsy
2
2
 
3
- [Mobb](https://www.mobb.dev) automates security vulnerability remediations.
3
+ Bugsy is a command-line interface (CLI) tool that provides automatic security vulnerability remediation for your code. It is the community edition version of [Mobb](https://www.mobb.dev), the first vendor-agnostic automatic security vulnerability remediation tool. Bugsy is designed to help developers easily identify and fix security vulnerabilities in their code.
4
4
 
5
5
  <img width="750" alt="Screenshot 2023-03-27 at 5 23 19 PM" src="https://user-images.githubusercontent.com/96389636/228070025-2a1c3aae-6b40-427f-a1e9-2b10ef97b5ea.png">
6
6
 
7
7
  ## What is [Mobb](https://www.mobb.dev)?
8
8
 
9
- [Mobb](https://www.mobb.dev) is the first vendor agnostic automatic security vulnerability remediation tool. It injests SAST results from Checkmarx One, GitHub Advanced Security, and Snyk Code and produces code fixes for the developer to review and commit to their code.
9
+ [Mobb](https://www.mobb.dev) is the first vendor-agnostic automatic security vulnerability remediation tool. It ingests SAST results from Checkmarx, GitHub Advanced Security, and Snyk and produces code fixes for developers to review and commit to their code.
10
10
 
11
- ## What does Mobb CLI (Community Tool) do?
11
+ ## What does Bugsy do?
12
12
 
13
- - Uses Snyk Code CLI to run a SAST analysis on a given GitHub repo
14
- - Analyzes the vulnerbilities report to identify issues that can be remediated
15
- - Produce the code fixes and redirect the user to the fix report page on [mobb.dev](https://www.mobb.dev)
13
+ - Uses Snyk CLI tool to run a SAST analysis on a given open-source GitHub repo
14
+ - Analyzes the vulnerability report to identify issues that can be remediated automatically
15
+ - Produces the code fixes and redirects the user to the fix report page on the Mobb platform
16
16
 
17
17
  ## Disclaimer
18
18
 
19
- This is an alpha version only capable of analyzing public GitHub repositories. We wrap Snyk Code CLI to produce SAST vulnerabilities report.
19
+ This is a community edition version that only analyzes public GitHub repositories.
20
+ Snyk CLI is used to produce a SAST vulnerability report.
20
21
 
21
22
  - Only Java projects are supported at the moment.
22
- - Only SQLi, CMDi, XSS, and XXE are supported at the moment.
23
+ - Only SQLi, CMDi, XSS, XXE, and Path Traversal are currently supported.
23
24
 
24
25
  ## Usage
25
26
 
27
+ You can use Bugsy from the command line. To evaluate and remediate a new open-source repository, you can run the following command:
28
+
26
29
  ```shell
27
30
  npx mobbdev https://github.com/mobb-dev/simple-vulnerable-java-project
28
31
  ```
29
32
 
33
+ Bugsy will automatically generate a fix for each supported vulnerability identified in the SAST results, present it to developers for review and commit to their code.
34
+
30
35
  ## Getting support
31
36
 
32
- If you need support using Mobb CLI, or just want to share your thoughts and learn more, you are more than welcome to join our [discord server](https://discord.gg/ks6Nz3H828)
37
+ If you need support using Bugsy or just want to share your thoughts and learn more, you are more than welcome to join our [discord server](https://discord.gg/ks6Nz3H828)
package/package.json CHANGED
@@ -1,47 +1,46 @@
1
1
  {
2
- "name": "mobbdev",
3
- "version": "0.0.7",
4
- "description": "Automated secure code remediation tool",
5
- "main": "index.js",
6
- "scripts": {
7
- "lint": "prettier --check . && eslint **/*.mjs",
8
- "lint:fix": "prettier --write . && eslint --fix **/*.mjs",
9
- "test": "DOTENV_ME=${ENV_VAULT_CLI} dotenv-vault pull development .env && TOKEN=$(../../scripts/login_auth0.sh) NODE_OPTIONS=--experimental-vm-modules jest",
10
- "prepack": "dotenv-vault pull production .env"
11
- },
12
- "bin": {
13
- "mobbdev": "bin/cli.mjs"
14
- },
15
- "author": "",
16
- "license": "MIT",
17
- "dependencies": {
18
- "colors": "1.4.0",
19
- "configstore": "6.0.0",
20
- "dotenv": "16.0.3",
21
- "extract-zip": "2.0.1",
22
- "form-data": "4.0.0",
23
- "got": "12.6.0",
24
- "open": "8.4.2",
25
- "snyk": "1.1118.0",
26
- "tmp": "0.2.1",
27
- "zod": "3.21.4"
28
- },
29
- "devDependencies": {
30
- "@jest/globals": "29.5.0",
31
- "eslint": "8.36.0",
32
- "jest": "29.5.0",
33
- "prettier": "2.8.4"
34
- },
35
- "engines": {
36
- "node": ">=8.5.0"
37
- },
38
- "files": [
39
- "bin",
40
- "src",
41
- "index.mjs",
42
- ".env",
43
- "README.md",
44
- "LICENSE",
45
- "package.json"
46
- ]
47
- }
2
+ "name": "mobbdev",
3
+ "version": "0.0.8",
4
+ "description": "Automated secure code remediation tool",
5
+ "main": "index.js",
6
+ "bin": {
7
+ "mobbdev": "bin/cli.mjs"
8
+ },
9
+ "author": "",
10
+ "license": "MIT",
11
+ "dependencies": {
12
+ "colors": "1.4.0",
13
+ "configstore": "6.0.0",
14
+ "dotenv": "16.0.3",
15
+ "extract-zip": "2.0.1",
16
+ "form-data": "4.0.0",
17
+ "got": "12.6.0",
18
+ "open": "8.4.2",
19
+ "snyk": "1.1118.0",
20
+ "tmp": "0.2.1",
21
+ "zod": "3.21.4"
22
+ },
23
+ "devDependencies": {
24
+ "@jest/globals": "29.5.0",
25
+ "eslint": "8.36.0",
26
+ "jest": "29.5.0",
27
+ "prettier": "2.8.4"
28
+ },
29
+ "engines": {
30
+ "node": ">=8.5.0"
31
+ },
32
+ "files": [
33
+ "bin",
34
+ "src",
35
+ "index.mjs",
36
+ ".env",
37
+ "README.md",
38
+ "LICENSE",
39
+ "package.json"
40
+ ],
41
+ "scripts": {
42
+ "lint": "prettier --check . && eslint **/*.mjs",
43
+ "lint:fix": "prettier --write . && eslint --fix **/*.mjs",
44
+ "test": "DOTENV_ME=${ENV_VAULT_CLI} dotenv-vault pull development .env && TOKEN=$(../../scripts/login_auth0.sh) NODE_OPTIONS=--experimental-vm-modules jest"
45
+ }
46
+ }