mobbdev 0.0.66 → 0.0.67
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.
- package/dist/index.mjs +2 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2228,6 +2228,8 @@ var getIssueType = (issueType) => {
|
|
|
2228
2228
|
return "Cookie is not HttpOnly";
|
|
2229
2229
|
case "INSECURE_COOKIE" /* InsecureCookie */:
|
|
2230
2230
|
return "Insecure Cookie";
|
|
2231
|
+
case "TRUST_BOUNDARY_VIOLATION" /* TrustBoundaryViolation */:
|
|
2232
|
+
return "Trust Boundary Violation";
|
|
2231
2233
|
default: {
|
|
2232
2234
|
return issueType ? issueType.replaceAll("_", " ") : "Other";
|
|
2233
2235
|
}
|