Skip to content

Commit

Permalink
feat(scan): add new css_injection test type (#161)
Browse files Browse the repository at this point in the history
Closes #160
  • Loading branch information
aborovsky authored Jul 31, 2023
1 parent fdf1ed4 commit 694c51d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/SecTester.Scan/Models/TestType.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ public enum TestType
CommonFiles,
CookieSecurity,
Csrf,
CssInjection,
[EnumMember(Value = "cve_test")]
Cve,
DateManipulation,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ public class MessageSerializerTests
new object[] { TestType.CommonFiles, @"""common_files""" },
new object[] { TestType.CookieSecurity, @"""cookie_security""" },
new object[] { TestType.Csrf, @"""csrf""" },
new object[] { TestType.CssInjection, @"""css_injection""" },
new object[] { TestType.Cve, @"""cve_test""" },
new object[] { TestType.DateManipulation, @"""date_manipulation""" },
new object[] { TestType.DefaultLoginLocation, @"""default_login_location""" },
Expand Down

0 comments on commit 694c51d

Please sign in to comment.