mobbdev 1.0.50 → 1.0.51

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/dist/index.mjs +16 -3
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -154,6 +154,7 @@ var IssueType_Enum = /* @__PURE__ */ ((IssueType_Enum2) => {
154
154
  IssueType_Enum2["MissingCspHeader"] = "MISSING_CSP_HEADER";
155
155
  IssueType_Enum2["MissingEqualsOrHashcode"] = "MISSING_EQUALS_OR_HASHCODE";
156
156
  IssueType_Enum2["MissingHstsHeader"] = "MISSING_HSTS_HEADER";
157
+ IssueType_Enum2["MissingSslMinversion"] = "MISSING_SSL_MINVERSION";
157
158
  IssueType_Enum2["NonFinalPublicStaticField"] = "NON_FINAL_PUBLIC_STATIC_FIELD";
158
159
  IssueType_Enum2["NonReadonlyField"] = "NON_READONLY_FIELD";
159
160
  IssueType_Enum2["NoEquivalenceMethod"] = "NO_EQUIVALENCE_METHOD";
@@ -1069,7 +1070,8 @@ var issueTypeMap = {
1069
1070
  ["CODE_IN_COMMENT" /* CodeInComment */]: "Code in Comment",
1070
1071
  ["REGEX_MISSING_TIMEOUT" /* RegexMissingTimeout */]: "Regex Missing Timeout",
1071
1072
  ["FRAMEABLE_LOGIN_PAGE" /* FrameableLoginPage */]: "Frameable Login Page",
1072
- ["USE_OF_HARD_CODED_CRYPTOGRAPHIC_KEY" /* UseOfHardCodedCryptographicKey */]: "Use of Hardcoded Cryptographic Key"
1073
+ ["USE_OF_HARD_CODED_CRYPTOGRAPHIC_KEY" /* UseOfHardCodedCryptographicKey */]: "Use of Hardcoded Cryptographic Key",
1074
+ ["MISSING_SSL_MINVERSION" /* MissingSslMinversion */]: "Missing SSL MinVersion"
1073
1075
  };
1074
1076
  var issueTypeZ = z5.nativeEnum(IssueType_Enum);
1075
1077
  var getIssueTypeFriendlyString = (issueType) => {
@@ -1972,7 +1974,8 @@ var fixDetailsData = {
1972
1974
  ["CODE_IN_COMMENT" /* CodeInComment */]: void 0,
1973
1975
  ["REGEX_MISSING_TIMEOUT" /* RegexMissingTimeout */]: void 0,
1974
1976
  ["FRAMEABLE_LOGIN_PAGE" /* FrameableLoginPage */]: void 0,
1975
- ["USE_OF_HARD_CODED_CRYPTOGRAPHIC_KEY" /* UseOfHardCodedCryptographicKey */]: void 0
1977
+ ["USE_OF_HARD_CODED_CRYPTOGRAPHIC_KEY" /* UseOfHardCodedCryptographicKey */]: void 0,
1978
+ ["MISSING_SSL_MINVERSION" /* MissingSslMinversion */]: void 0
1976
1979
  };
1977
1980
 
1978
1981
  // src/features/analysis/scm/shared/src/commitDescriptionMarkup.ts
@@ -2534,9 +2537,19 @@ var logForging2 = {
2534
2537
  }
2535
2538
  };
2536
2539
 
2540
+ // src/features/analysis/scm/shared/src/storedQuestionData/go/missingSslMinversion.ts
2541
+ var missingSslMinversion = {
2542
+ minTlsVersion: {
2543
+ content: () => "What is the minimum version of Transport Layer Security (TLS) you allow? Ensure compatibility between the server and clients.",
2544
+ description: () => "",
2545
+ guidance: () => ""
2546
+ }
2547
+ };
2548
+
2537
2549
  // src/features/analysis/scm/shared/src/storedQuestionData/go/index.ts
2538
2550
  var vulnerabilities10 = {
2539
- ["LOG_FORGING" /* LogForging */]: logForging2
2551
+ ["LOG_FORGING" /* LogForging */]: logForging2,
2552
+ ["MISSING_SSL_MINVERSION" /* MissingSslMinversion */]: missingSslMinversion
2540
2553
  };
2541
2554
  var go_default2 = vulnerabilities10;
2542
2555
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "Automated secure code remediation tool",
5
5
  "repository": "git+https://github.com/mobb-dev/bugsy.git",
6
6
  "main": "dist/index.js",