mobbdev 1.0.28 → 1.0.29

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 -1
  2. package/package.json +1 -1
package/dist/index.mjs CHANGED
@@ -3206,11 +3206,26 @@ var openRedirect2 = {
3206
3206
  }
3207
3207
  };
3208
3208
 
3209
+ // src/features/analysis/scm/shared/src/storedQuestionData/python/uncheckedLoopCondition.ts
3210
+ var uncheckedLoopCondition3 = {
3211
+ loopLimit: {
3212
+ content: () => "Please define a maximum loop limit",
3213
+ description: () => `Setting this number to a reasonable value will prevent the vulnerability`,
3214
+ guidance: () => ""
3215
+ },
3216
+ varName: {
3217
+ content: () => "Please define a variable name",
3218
+ description: () => `We need to define a variable to be used as a counter to limit the loop`,
3219
+ guidance: () => ""
3220
+ }
3221
+ };
3222
+
3209
3223
  // src/features/analysis/scm/shared/src/storedQuestionData/python/index.ts
3210
3224
  var vulnerabilities13 = {
3211
3225
  ["CSRF" /* Csrf */]: csrf2,
3212
3226
  ["LOG_FORGING" /* LogForging */]: logForging5,
3213
- ["LOG_FORGING" /* LogForging */]: openRedirect2
3227
+ ["OPEN_REDIRECT" /* OpenRedirect */]: openRedirect2,
3228
+ ["UNCHECKED_LOOP_CONDITION" /* UncheckedLoopCondition */]: uncheckedLoopCondition3
3214
3229
  };
3215
3230
  var python_default2 = vulnerabilities13;
3216
3231
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mobbdev",
3
- "version": "1.0.28",
3
+ "version": "1.0.29",
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",