Mar 27, 2026 - For details about updated CVE-2025-53521 (BIG-IP APM vulnerability), refer to K000156741.

Forum Discussion

2 Replies

  • I found code example in PS but not in Java and it appear there is no javadoc...

     

  • I found it, it's the SystemSession, part of the iControl Interfaces :

    iControl.Interfaces icInterfaces = new iControl.Interfaces();
    
    icInterfaces.initialize(BigIPHostname, login, password) ; 
    
    try {
        icInterfaces.getSystemSession().set_recursive_query_state(CommonEnabledState.STATE_ENABLED) ;
    } catch (Exception E) {
        web.println("Error while icInterfaces.getSystemSession().set_recursive_query_state(CommonEnabledState.STATE_ENABLED)") ; 
        web.println(E.toString()) ; 
    }