mobbdev 0.0.23 → 0.0.24

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 +14 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,26 +1,34 @@
1
1
  # Bugsy
2
2
 
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.
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 automated security vulnerability remediation tool. Bugsy is designed to help developers quickly identify and fix security vulnerabilities in their code.
4
4
 
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">
5
+ <img width="1888" alt="Screenshot 2023-07-13 at 5 22 11 PM" src="https://github.com/mobb-dev/autofixer/assets/96389636/f1861bfe-c024-4976-aa57-8b6c1e2f4029">
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 ingests SAST results from Checkmarx, GitHub Advanced Security, and Snyk and produces code fixes for developers 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, CodeQL (GitHub Advanced Security), OpenText Fortify, and Snyk and produces code fixes for developers to review and commit to their code.
10
10
 
11
11
  ## What does Bugsy do?
12
12
 
13
+ Bugsy has two modes - Analyze (the user has a pre-generated SAST report from one of the supported SAST tools) and Scan (no SAST report needed).
14
+
15
+ Scan
16
+
13
17
  - Uses Snyk CLI tool to run a SAST analysis on a given open-source GitHub repo
14
18
  - Analyzes the vulnerability report to identify issues that can be remediated automatically
15
19
  - Produces the code fixes and redirects the user to the fix report page on the Mobb platform
16
20
 
21
+ Analyze
22
+
23
+ - Analyzes the vulnerability report to identify issues that can be remediated automatically
24
+ - Produces the code fixes and redirects the user to the fix report page on the Mobb platform
25
+
17
26
  ## Disclaimer
18
27
 
19
- This is a community edition version that only analyzes public GitHub repositories.
28
+ This is a community edition version that only analyzes public GitHub repositories. Analyzing private repositories is allowed for a limited amount of time.
20
29
  Snyk CLI is used to produce a SAST vulnerability report.
21
30
 
22
- - Only Java projects are supported at the moment.
23
- - Only SQLi, CMDi, XSS, XXE, and Path Traversal are currently supported.
31
+ - Only Java and Node.js projects are supported at the moment.
24
32
 
25
33
  ## Usage
26
34
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "0.0.23",
3
+ "version": "0.0.24",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "main": "index.mjs",
6
6
  "scripts": {