Forum Discussion
Aantat
Cirrus
Jan 13, 2023Send Attackers IP to another system via API
Hi experts! I'm newbie here and I need your help. I have a task to send Attackers IP to another system via API. For example I've a ASM and there are some triggered violation. I want to send that Att...
Hi Roman,
It sounds like the web app is using http:// references to itself instead of https:// in the response headers and/or payload. To fix this, you could look for configuration options in the web app itself to tell the app that it's being SSL proxied. Or you could rewrite the http:// references to https:// using a STREAM::expression based iRule:
http://devcentral.f5.com/wiki/iRules.stream__expression.ashx
Aaron
- Mar 22, 2007Not sure about SNMP, but you can get the cpu usage information from the iControl System.SystemInfo.get_cpu_usage_information() method.
- May 10, 2007I just upgraded to SOAP::Lite 0.66 and it turns out the SOAP::Lite folks have deprecated the "uri" subroutine (which was in the past the way to specify which namespace to use with the soap calls).
http://www.soaplite.com/2005/04/tturitt_and_ttu.html
Click here$soap = SOAP::Lite -> uri('urn:iControl:System/SystemInfo') -> proxy("$sProtocol://$sHost:$sPort/iControl/iControlPortal.cgi");
$soap = SOAP::Lite -> ns('urn:iControl:System/SystemInfo') -> proxy("$sProtocol://$sHost:$sPort/iControl/iControlPortal.cgi");