Forum Discussion
rpuga
Jun 27, 2018Nimbostratus
ASM: Failed to convert character
Hello everyone,
I have an application protected by ASM using charset UTF-8. What happens is that sometimes I get some false-positives because the user browser is not using the charset informed i...
Renato
Jun 27, 2018Altostratus
If you know which one is the problematic client and the policy element affected, you are able to allow traffic when it happens using iRule.
Something like this:
when ASM_REQUEST_VIOLATION
{
set asmdata [ASM::violation_data]
if {([lindex $asmdata 0] contains "VIOLATION_CHAR_CONV")}
{
if { [string tolower [HTTP::header User-Agent]] contains "msie" }
{
ASM::unblock
}
}
}
Recent Discussions
Related Content
DevCentral Quicklinks
* Getting Started on DevCentral
* Community Guidelines
* Community Terms of Use / EULA
* Community Ranking Explained
* Community Resources
* Contact the DevCentral Team
* Update MFA on account.f5.com
Discover DevCentral Connects