Hello
I need a proxy connection when I use TA-tenable-easm on splunk. Is there a way or a guide to set up proxy on TA-tenable-easm?
@KwonTaeHoon - The Add-on you are referring to is built by Tenable Inc. I would recommend creating support ticket with Tenable to find if they would add support for proxy to the Add-on.
Alternatively, if you are a developer, you can modify line no. 12 of asm_processor.py file inside the bin folder of the Add-on to add proxy settings like this: (only valid for Add-on version 1.0.2)
self.tasm = TenableASM(self.api_key,hostname=hostname, proxies={'http':'http://10.10.1.10:3128','https': 'http://10.10.1.10:1080'})
(Replace your proxy info here)
I hope this helps!!! Kindly upvote if it does!!!
@KwonTaeHoon - The Add-on you are referring to is built by Tenable Inc. I would recommend creating support ticket with Tenable to find if they would add support for proxy to the Add-on.
Alternatively, if you are a developer, you can modify line no. 12 of asm_processor.py file inside the bin folder of the Add-on to add proxy settings like this: (only valid for Add-on version 1.0.2)
self.tasm = TenableASM(self.api_key,hostname=hostname, proxies={'http':'http://10.10.1.10:3128','https': 'http://10.10.1.10:1080'})
(Replace your proxy info here)
I hope this helps!!! Kindly upvote if it does!!!
Hello VatsalJagani
Thanks to you, it worked out well.