summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-02-03 11:33:31 +0100
committerFabian Affolter <mail@fabian-affolter.ch>2023-02-03 11:52:14 +0100
commit4333dd5ffc42ef73e89a189be3bdeeefb11013b2 (patch)
treec4b266c363f94a1d9496e5b596c7cf63e754def3 /pkgs/tools
parentad9a2fa941a23faed448c70556831c35cbbc8d61 (diff)
wapiti: 3.1.3 -> 3.1.6
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/security/wapiti/default.nix25
1 files changed, 15 insertions, 10 deletions
diff --git a/pkgs/tools/security/wapiti/default.nix b/pkgs/tools/security/wapiti/default.nix
index 6aec3dd105f2..d58d7188c11d 100644
--- a/pkgs/tools/security/wapiti/default.nix
+++ b/pkgs/tools/security/wapiti/default.nix
@@ -5,19 +5,20 @@
python3.pkgs.buildPythonApplication rec {
pname = "wapiti";
- version = "3.1.3";
+ version = "3.1.6";
format = "setuptools";
src = fetchFromGitHub {
owner = "wapiti-scanner";
repo = pname;
rev = version;
- sha256 = "sha256-alrJVe4Miarkk8BziC8Y333b3swJ4b4oQpP2WAdT2rc=";
+ hash = "sha256-b377nPXvpxg+WDNgjxm2RoJ5jNt7MTES2Bspxsvo/wc=";
};
propagatedBuildInputs = with python3.pkgs; [
aiocache
aiosqlite
+ arsenic
beautifulsoup4
brotli
browser-cookie3
@@ -63,15 +64,15 @@ python3.pkgs.buildPythonApplication rec {
"test_bad_separator_used"
"test_blind"
"test_chunked_timeout"
- "test_cookies"
- "test_drop_cookies"
- "test_save_and_restore_state"
- "test_explorer_extract_links"
"test_cookies_detection"
+ "test_cookies"
"test_csrf_cases"
"test_detection"
"test_direct"
+ "test_dom_detection"
+ "test_drop_cookies"
"test_escape_with_style"
+ "test_explorer_extract_links"
"test_explorer_filtering"
"test_false"
"test_frame"
@@ -79,21 +80,21 @@ python3.pkgs.buildPythonApplication rec {
"test_html_detection"
"test_implies_detection"
"test_inclusion_detection"
+ "test_merge_with_and_without_redirection"
"test_meta_detection"
+ "test_multi_detection"
"test_no_crash"
"test_options"
"test_out_of_band"
- "test_multi_detection"
- "test_vulnerabilities"
"test_partial_tag_name_escape"
"test_prefix_and_suffix_detection"
"test_qs_limit"
"test_rare_tag_and_event"
"test_redirect_detection"
"test_request_object"
+ "test_save_and_restore_state"
"test_script"
"test_ssrf"
- "test_merge_with_and_without_redirection"
"test_tag_name_escape"
"test_timeout"
"test_title_false_positive"
@@ -102,6 +103,7 @@ python3.pkgs.buildPythonApplication rec {
"test_unregistered_cname"
"test_url_detection"
"test_verify_dns"
+ "test_vulnerabilities"
"test_warning"
"test_whole"
"test_xss_inside_tag_input"
@@ -111,9 +113,12 @@ python3.pkgs.buildPythonApplication rec {
"test_xss_with_weak_csp"
"test_xxe"
# Requires a PHP installation
- "test_timesql"
"test_cookies"
+ "test_loknop_lfi_to_rce"
"test_redirect"
+ "test_timesql"
+ "test_xss_inside_href_link"
+ "test_xss_inside_src_iframe"
# TypeError: Expected bytes or bytes-like object got: <class 'str'>
"test_persister_upload"
];