Last Modified: Feb 14, 2025
Affected Product(s):
BIG-IP APM
Known Affected Versions:
17.1.1, 17.1.1.1, 17.1.1.2, 17.1.1.3, 17.1.1.4, 17.1.2, 17.1.2.1
Opened: Jun 10, 2024 Severity: 3-Major
Noticed an error in the Developer Tools console Uncaught TypeError: Illegal invocation
Unable to access the application via portal access
Configuration of portal access for an application with a popup window.
Custom iRule is available to mitigate this issue. ================================================ when REWRITE_REQUEST_DONE { if { [HTTP::path] ends_with "//path to home page" } { REWRITE::post_process 1 set rewrite_new 1 } } when REWRITE_RESPONSE_DONE { if {[info exists rewrite_new]} { unset rewrite_new set rewrite_str {opener.dialogWin.win.close()} set rewrite_str_len [string length $rewrite_str] set strt [string first $rewrite_str [REWRITE::payload]] if {$strt > 0} { REWRITE::payload replace $strt 28 {opener.dialogWin.win = window; opener.dialogWin.win.close()} } } } ================================================
None