mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-01-03 23:39:45 +01:00
Amend fix for newer grep versions
See also PR #2243, issue #2241 Removes unneeded escape for exclamation mark. This is for 3.0. 3.2 has the fix already.
This commit is contained in:
parent
40c6be790b
commit
a0c0c73b66
@ -3020,7 +3020,7 @@ sub_f5_bigip_check() {
|
||||
ip="$(f5_hex2ip6 ${cookievalue:$offset:32})"
|
||||
out "${spaces}F5 cookie (IPv6 pool in routed domain "; pr_svrty_medium "$routed_domain"; out "): "; pr_italic "$cookiename "; prln_svrty_medium "${ip}:${port}"
|
||||
fileout "cookie_bigip_f5" "MEDIUM" "Information leakage: F5 cookie $cookiename $cookievalue is IPv6 pool member in routed domain $routed_domain ${ip}:${port}" "$cve" "$cwe"
|
||||
elif grep -Eq '^\!.*=$' <<< "$cookievalue"; then
|
||||
elif grep -Eq '^!.*=$' <<< "$cookievalue"; then
|
||||
if [[ "${#cookievalue}" -eq 81 ]] ; then
|
||||
savedcookies="${savedcookies} ${cookiename}=${cookievalue:1:79}"
|
||||
out "${spaces}Encrypted F5 cookie named "; pr_italic "${cookiename}"; outln " detected"
|
||||
|
Loading…
Reference in New Issue
Block a user