We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c825a70 commit 8063982Copy full SHA for 8063982
1 file changed
testssl.sh
@@ -2196,7 +2196,7 @@ connectivity_problem() {
2196
}
2197
2198
sanitze_http_header() {
2199
- # sed implemntations tested were sometime not fine with header containing x0d x0a (CRLF) which is the usual
+ # sed implementations tested were sometime not fine with header containing x0d x0a (CRLF) which is the usual
2200
# case. Also we use tr here to remove any crtl chars which the server side offers --> possible security problem
2201
# Only allowed now is LF + CR. See #2337. awk OTOH, see above, doesn't seem to care -- but not under MacOS
2202
sed -e '/^$/q' -e '/^[^a-zA-Z_0-9]$/q' $HEADERFILE | tr -d '\000-\011\013\014\016-\037' >$HEADERFILE.tmp
0 commit comments