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...
- 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");