Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[java] Skip test failiing for APPSEC-54578 #2894

Merged
merged 1 commit into from
Aug 19, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions tests/appsec/rasp/test_sqli.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
@rfc("https://docs.google.com/document/d/1vmMqpl8STDk7rJnd3YBsa6O9hCls_XHHdsodD61zr_4/edit#heading=h.gv4kwto3561e")
@features.rasp_sql_injection
@scenarios.appsec_rasp
@flaky(context.library > "[email protected]", reason="APPSEC-54578")
class Test_Sqli_UrlQuery:
""" SQL Injection through query parameters """

Expand All @@ -32,6 +33,7 @@ def test_sqli_get(self):
@rfc("https://docs.google.com/document/d/1vmMqpl8STDk7rJnd3YBsa6O9hCls_XHHdsodD61zr_4/edit#heading=h.gv4kwto3561e")
@features.rasp_sql_injection
@scenarios.appsec_rasp
@flaky(context.library > "[email protected]", reason="APPSEC-54578")
class Test_Sqli_BodyUrlEncoded:
""" SQL Injection through a url-encoded body parameter """

Expand All @@ -55,6 +57,7 @@ def test_sqli_post_urlencoded(self):
@rfc("https://docs.google.com/document/d/1vmMqpl8STDk7rJnd3YBsa6O9hCls_XHHdsodD61zr_4/edit#heading=h.gv4kwto3561e")
@features.rasp_sql_injection
@scenarios.appsec_rasp
@flaky(context.library > "[email protected]", reason="APPSEC-54578")
class Test_Sqli_BodyXml:
""" SQL Injection through an xml body parameter """

Expand All @@ -79,6 +82,7 @@ def test_sqli_post_xml(self):
@rfc("https://docs.google.com/document/d/1vmMqpl8STDk7rJnd3YBsa6O9hCls_XHHdsodD61zr_4/edit#heading=h.gv4kwto3561e")
@features.rasp_sql_injection
@scenarios.appsec_rasp
@flaky(context.library > "[email protected]", reason="APPSEC-54578")
class Test_Sqli_BodyJson:
""" SQL Injection through a json body parameter """

Expand Down