<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Cisco IPS Error  [errno=&amp;quot;&amp;quot; 8] in Getting Data In</title>
    <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88931#M18456</link>
    <description>&lt;P&gt;dshpritz thank you for the answer! it has a few issues however. &lt;A href="http://answers.splunk.com/answers/105193/cisco-ips-error-errno-8/135759" target="_blank"&gt;http://answers.splunk.com/answers/105193/cisco-ips-error-errno-8/135759&lt;/A&gt; has an indentation error. &lt;BR /&gt;
Seanp this is the cause of your problem and the reason the sdeegetlog is not populating. &lt;/P&gt;

&lt;P&gt;In addition, not all cisco IPS SDEE servers run TLSv1, I had to set mine to SSLv3. Go to the cisco sdee server in your browser to check which version of ssl is needed. &lt;/P&gt;

&lt;P&gt;After fixing the indentation errors (copy paste issue perhaps?) and changing the manual SSL input to ssl_version=ssl.PROTOCOL_SSLv3 I was able to connect succesfully! &lt;/P&gt;

&lt;P&gt;seanp go ahead and try this and see if you can get it working. &lt;/P&gt;

&lt;P&gt;Dshspritz, can you edit your answer to correct the indentation? I will upload what is currently working for me, hopefully I dont' encounter the same indentation errors from copy paste into this splunk answers site. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# The section below is to override the default socket connection
# which will fail with these devices. The newer version of openssl
# in Python does not support the ciphers these devices would like to use
import httplib
from httplib import HTTPConnection, HTTPS_PORT
import ssl
import socket

    class HTTPSConnection(HTTPConnection):
            default_port = HTTPS_PORT

            def __init__(self, host, port=None, key_file=None, cert_file=None,
                         strict=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
                         source_address=None):
                HTTPConnection.__init__(self, host, port, strict, timeout,
                                        source_address)
                self.key_file = key_file
                self.cert_file = cert_file

            def connect(self):
                sock = socket.create_connection((self.host, self.port),
                                                self.timeout, self.source_address)
                if self._tunnel_host:
                    self.sock = sock
                    self._tunnel()
                self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv3)

    #now we override the one in httplib
    httplib.HTTPSConnection = HTTPSConnection
    # ssl_version corrections are done
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 28 Sep 2020 16:42:01 GMT</pubDate>
    <dc:creator>kdick</dc:creator>
    <dc:date>2020-09-28T16:42:01Z</dc:date>
    <item>
      <title>Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88915#M18440</link>
      <description>&lt;P&gt;I have been attempting to setup the Cisco IPS app for Splunk 6.  However I am getting the following error in the &lt;CODE&gt;sdee_get.log&lt;/CODE&gt;:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;INFO - Checking for exsisting SubscriptionID on host: &amp;lt;IPADDRESS&amp;gt;
INFO - No exsisting SubscriptionID for host: &amp;lt;IPADDRESS&amp;gt;
INFO - Attempting to connect to sensor: &amp;lt;IPADDRESS&amp;gt;
INFO - Successfully connected to: &amp;lt;IPADDRESS&amp;gt;
ERROR - Connecting to sensor - &amp;lt;IPADDRESS&amp;gt;: URLError: &amp;lt;urlopen error [Errno 8] _ssl.c:521: EOF occurred in violation of protocol&amp;gt;
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;where &lt;IPADDRESS&gt; is the IP address of the IPS.  Does anyone have any thoughts into what the error is?  Any help is greatly appreciated&lt;/IPADDRESS&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2013 19:31:05 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88915#M18440</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2013-10-08T19:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88916#M18441</link>
      <description>&lt;P&gt;This looks a whole lot like &lt;A href="https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/965371"&gt;https://bugs.launchpad.net/ubuntu/+source/openssl/+bug/965371&lt;/A&gt; which seems to be a bug in OpenSSL when attempting to do TLS version renegotiation.  The bug was fixed in OpenSSL upstream and in Debian / Ubuntu.  &lt;/P&gt;

&lt;P&gt;But, Splunk ships with its own version of OpenSSL.  In Splunk 6.0.0 it seems to be OpenSSL 1.0.1e, which is likely affected by this issue.&lt;/P&gt;

&lt;P&gt;Ther launchpad link above suggests some (very very very hackish) workarounds like updating python standard library files.  I would personally open a support case w/ Splunk and in the meanwhile perhaps downgrade to Splunk 5.0.5, which has an older OpenSSL.  Or, you could install a 5.0.5 forwarder just for your IPS app...&lt;/P&gt;</description>
      <pubDate>Tue, 08 Oct 2013 22:41:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88916#M18441</guid>
      <dc:creator>dwaddle</dc:creator>
      <dc:date>2013-10-08T22:41:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88917#M18442</link>
      <description>&lt;P&gt;I was starting get to that same conclusion but you are correct dwaddle.  I had a co-worker who has OpenSSL 0.9.8y (Windows) run:&lt;/P&gt;

&lt;P&gt;openssl s_client -connect &lt;IPADDRESS_IPS&gt;&lt;/IPADDRESS_IPS&gt;&lt;/P&gt;

&lt;P&gt;and connects no problem but when I run it using OpenSSL 1.0.1e it fails.  I will contact tech support and see what they say.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 14:55:57 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88917#M18442</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T14:55:57Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88918#M18443</link>
      <description>&lt;P&gt;Does this solution work? &lt;BR /&gt;
&lt;A href="http://answers.splunk.com/answers/40255/does-splunk-for-netwitness-support-ssl-access-to-the-rest-api"&gt;http://answers.splunk.com/answers/40255/does-splunk-for-netwitness-support-ssl-access-to-the-rest-api&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2013 22:42:48 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88918#M18443</guid>
      <dc:creator>Masa</dc:creator>
      <dc:date>2013-10-15T22:42:48Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88919#M18444</link>
      <description>&lt;P&gt;By the way, Cisco IPS app is not compatible with 6.0 as of today, 10/15/2013.&lt;/P&gt;</description>
      <pubDate>Tue, 15 Oct 2013 23:09:59 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88919#M18444</guid>
      <dc:creator>Masa</dc:creator>
      <dc:date>2013-10-15T23:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88920#M18445</link>
      <description>&lt;P&gt;Thank you for your responses.  In the end I setup a separate server as a Splunk 5.0.5 lightweight forwarder.  After reviewing the link Masa sent and my own results running the OpenSSL command, I am unsure as to the exact cause.  Perhaps its a combination.  Regardless, hopefully the developers of the application will update it soon.&lt;/P&gt;</description>
      <pubDate>Wed, 16 Oct 2013 17:05:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88920#M18445</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2013-10-16T17:05:20Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88921#M18446</link>
      <description>&lt;P&gt;seanp: Could you post how to setup that lightweight forwarder so that it will work with the IPS. &lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 15:09:14 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88921#M18446</guid>
      <dc:creator>timpet</dc:creator>
      <dc:date>2013-10-24T15:09:14Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88922#M18447</link>
      <description>&lt;P&gt;On the server to collect the IPS logs, I downloaded and installed the full version of Splunk 5.0.5 from &lt;A href="http://www.splunk.com/page/previous_releases" target="_blank"&gt;http://www.splunk.com/page/previous_releases&lt;/A&gt; which will be used for the lightweight forwarder.&lt;/P&gt;

&lt;P&gt;I then installed the IPS app through the GUI (just easier and encrypted the password)&lt;/P&gt;

&lt;P&gt;Under Data inputs » Files &amp;amp; directories I disabled $SPLUNK_HOME/etc/apps/Splunk_CiscoIPS/var/log/ as I do not need to index anything on the local server.  At that point I changed it to the lightweight forwarder which disables the GUI.  Then configured the inputs and outputs files.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:04:06 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88922#M18447</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T15:04:06Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88923#M18448</link>
      <description>&lt;P&gt;$SPLUNK_HOME/etc/system/local/inputs.conf (may be found in &lt;BR /&gt;
$SPLUNK_HOME\etc\apps\Splunk_CiscoIPS\local)&lt;BR /&gt;
[default]&lt;BR /&gt;
host = MyHost&lt;/P&gt;

&lt;P&gt;[monitor://$SPLUNK_HOME\etc\apps\Splunk_CiscoIPS\var\log\ips_sdee.log.MyIPS_IPAddress]&lt;BR /&gt;
sourcetype = cisco_ips_syslog&lt;BR /&gt;
source = SDEE&lt;BR /&gt;
disabled = false&lt;BR /&gt;
index=MyIndex&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:04:08 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88923#M18448</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T15:04:08Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88924#M18449</link>
      <description>&lt;P&gt;$SPLUNK_HOME/etc/system/local/outputs.conf&lt;BR /&gt;
[tcpout]&lt;BR /&gt;
defaultGroup = MyIndexer.MyDomain.com_9997&lt;/P&gt;

&lt;P&gt;[tcpout:MyIndexer.MyDomain.com_9997]&lt;BR /&gt;
server = MyIndexer.MyDomain.com:9997&lt;/P&gt;

&lt;P&gt;[tcpout-server://MyIndexer.MyDomain.com:9997]&lt;BR /&gt;
compressed = true&lt;BR /&gt;
sslCertPath = $SPLUNK_HOME\etc\auth\MyForwarderPrivateKey.pem&lt;BR /&gt;
sslPassword = &lt;CERTPASSWORD&gt;&lt;BR /&gt;
sslRootCAPath = $SPLUNK_HOME\etc\auth\MyRootCAPublicKey.pem&lt;BR /&gt;
sslVerifyServerCert = true&lt;/CERTPASSWORD&gt;&lt;/P&gt;

&lt;P&gt;Your outputs.conf file may appear different if you do not use your own CA certs.  Let me know if you have questions.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:04:11 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88924#M18449</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T15:04:11Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88925#M18450</link>
      <description>&lt;P&gt;Thanks for this. I think I have done everything from your posts.... on the new forwarding server I now see "- Successfully connected to: 10.x.x.x" in the sdee_get.log&lt;/P&gt;

&lt;P&gt;I am at least half way there now &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;

&lt;P&gt;I think I must have something wrong in the forwarding setup. From what I can tell if I don't use my own CA certs then I just remove the bottom 4 lines from the output.conf file. Here is mine:&lt;/P&gt;

&lt;P&gt;[tcpout]&lt;BR /&gt;
defaultGroup = MAINSPLNK.DOM.com_9997&lt;BR /&gt;
[tcpout: MAINSPLNK.DOM.com_9997]&lt;BR /&gt;
server = MAINSPLNK.DOM.com_9997&lt;BR /&gt;
[tcpout-server://MAINSPLNK.DOM.com_9997]&lt;BR /&gt;
compressed = true&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:04:15 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88925#M18450</guid>
      <dc:creator>timpet</dc:creator>
      <dc:date>2020-09-28T15:04:15Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88926#M18451</link>
      <description>&lt;P&gt;You should see the IPS logs are populating the following file:&lt;/P&gt;

&lt;P&gt;$SPLUNK_HOME\etc\apps\Splunk_CiscoIPS\var\log\ips_sdee.log.&lt;IPS_IPADDRESS&gt;&lt;/IPS_IPADDRESS&gt;&lt;/P&gt;

&lt;P&gt;If you are getting that far, it would be in your forwarder config.  You can always re-enable the GUI if you are more comfortable doing that than the .conf files.  Possibly look at another forwarder and copy and paste.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 15:04:18 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88926#M18451</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T15:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88927#M18452</link>
      <description>&lt;P&gt;Thanks a bunch. I was able to get this working once doing it through the GUI. You saved me a ton of time!&lt;/P&gt;</description>
      <pubDate>Thu, 24 Oct 2013 18:59:33 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88927#M18452</guid>
      <dc:creator>timpet</dc:creator>
      <dc:date>2013-10-24T18:59:33Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88928#M18453</link>
      <description>&lt;P&gt;A potential fix for this:&lt;/P&gt;

&lt;P&gt;Take the code below, and paste it into the bin/pysdee/pySDEE.py file, at the top, right after the stock import statements:&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# The section below is to override the default socket connection
# which will fail with these devices. The newer version of openssl
# in Python does not support the ciphers these devices would like to use
import httplib
from httplib import HTTPConnection, HTTPS_PORT
import ssl
import socket

class HTTPSConnection(HTTPConnection):
    "This class allows communication via SSL."
    default_port = HTTPS_PORT

    def __init__(self, host, port=None, key_file=None, cert_file=None,
        strict=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
        source_address=None):
        HTTPConnection.__init__(self, host, port, strict, timeout,
            source_address)
        self.key_file = key_file
        self.cert_file = cert_file

    def connect(self):
        "Connect to a host on a given (SSL) port."
        sock = socket.create_connection((self.host, self.port),
            self.timeout, self.source_address)
        if self._tunnel_host:
            self.sock = sock
            self._tunnel()
        # this is the only line we modified from the httplib.py file 
        # we added the ssl_version variable 
        self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_TLSv1) 

#now we override the one in httplib 
httplib.HTTPSConnection = HTTPSConnection 
# ssl_version corrections are done 
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 14 May 2014 20:00:45 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88928#M18453</guid>
      <dc:creator>dshpritz</dc:creator>
      <dc:date>2014-05-14T20:00:45Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88929#M18454</link>
      <description>&lt;P&gt;dshpritz, thank you for the post, however it is not working for me in Splunk 6.0.3.  With the added code in pySDEE.py as you describe the sdee_get.log no longer records anything success or failures.  Did you get this working with the Cisco IPS app?&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2014 20:58:58 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88929#M18454</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2014-05-20T20:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88930#M18455</link>
      <description>&lt;P&gt;I did, and it was tested in another place. In both places, this was using this app: &lt;A href="http://apps.splunk.com/app/528/"&gt;http://apps.splunk.com/app/528/&lt;/A&gt; for the event collection.&lt;/P&gt;</description>
      <pubDate>Tue, 20 May 2014 22:58:28 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88930#M18455</guid>
      <dc:creator>dshpritz</dc:creator>
      <dc:date>2014-05-20T22:58:28Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88931#M18456</link>
      <description>&lt;P&gt;dshpritz thank you for the answer! it has a few issues however. &lt;A href="http://answers.splunk.com/answers/105193/cisco-ips-error-errno-8/135759" target="_blank"&gt;http://answers.splunk.com/answers/105193/cisco-ips-error-errno-8/135759&lt;/A&gt; has an indentation error. &lt;BR /&gt;
Seanp this is the cause of your problem and the reason the sdeegetlog is not populating. &lt;/P&gt;

&lt;P&gt;In addition, not all cisco IPS SDEE servers run TLSv1, I had to set mine to SSLv3. Go to the cisco sdee server in your browser to check which version of ssl is needed. &lt;/P&gt;

&lt;P&gt;After fixing the indentation errors (copy paste issue perhaps?) and changing the manual SSL input to ssl_version=ssl.PROTOCOL_SSLv3 I was able to connect succesfully! &lt;/P&gt;

&lt;P&gt;seanp go ahead and try this and see if you can get it working. &lt;/P&gt;

&lt;P&gt;Dshspritz, can you edit your answer to correct the indentation? I will upload what is currently working for me, hopefully I dont' encounter the same indentation errors from copy paste into this splunk answers site. &lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;# The section below is to override the default socket connection
# which will fail with these devices. The newer version of openssl
# in Python does not support the ciphers these devices would like to use
import httplib
from httplib import HTTPConnection, HTTPS_PORT
import ssl
import socket

    class HTTPSConnection(HTTPConnection):
            default_port = HTTPS_PORT

            def __init__(self, host, port=None, key_file=None, cert_file=None,
                         strict=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
                         source_address=None):
                HTTPConnection.__init__(self, host, port, strict, timeout,
                                        source_address)
                self.key_file = key_file
                self.cert_file = cert_file

            def connect(self):
                sock = socket.create_connection((self.host, self.port),
                                                self.timeout, self.source_address)
                if self._tunnel_host:
                    self.sock = sock
                    self._tunnel()
                self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_SSLv3)

    #now we override the one in httplib
    httplib.HTTPSConnection = HTTPSConnection
    # ssl_version corrections are done
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:42:01 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88931#M18456</guid>
      <dc:creator>kdick</dc:creator>
      <dc:date>2020-09-28T16:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88932#M18457</link>
      <description>&lt;P&gt;Sorry for posting a new answer! I don't have enough Karma to comment apparently ¯_(ツ)_/¯&lt;/P&gt;</description>
      <pubDate>Thu, 22 May 2014 17:34:20 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88932#M18457</guid>
      <dc:creator>kdick</dc:creator>
      <dc:date>2014-05-22T17:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88933#M18458</link>
      <description>&lt;P&gt;kdick and dshpritz, thanks for the replies. Unfortunately the only the only way I have gotten this to work is by editing the $SPLUNK_HOME\Python-2.7\Lib\httplib.py library and adding the ssl_version:&lt;/P&gt;

&lt;P&gt;self.sock = ssl.wrap_socket(sock, self.key_file, self.cert_file, ssl_version=ssl.PROTOCOL_TLSv1)&lt;/P&gt;

&lt;P&gt;I have tried modifying the indents (tabs vs space) and new line character (LF vs CRLF). Could you expand on the issue with indents? Mind sharing the start of the $SPLUNK_HOME\etc\apps\Splunk_CiscoIPS\bin\pysdee\pySDEE.py file? Unfortunately Python is not one of my scripting languages&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:42:31 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88933#M18458</guid>
      <dc:creator>seanp</dc:creator>
      <dc:date>2020-09-28T16:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Cisco IPS Error  [errno="" 8]</title>
      <link>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88934#M18459</link>
      <description>&lt;P&gt;Hi Sean,&lt;/P&gt;

&lt;P&gt;The indent error is coming from these lines:&lt;/P&gt;

&lt;P&gt;1       if self._tunnel_host:&lt;BR /&gt;
2  self.sock = sock&lt;BR /&gt;
3  self._tunnel()&lt;/P&gt;

&lt;P&gt;It should be:&lt;BR /&gt;
1  if self._tunnel_host:&lt;BR /&gt;
2        self.sock = sock&lt;BR /&gt;
3        self._tunnel()&lt;/P&gt;

&lt;P&gt;Python will throw an error on the first one because it is expecting an indentation after the if. &lt;/P&gt;

&lt;P&gt;The code I had in my post will not work for you as I have hardcoded SSLv3 and you need TLSv1. I have uploaded the full PSYDEE script that should work for you onto pastebin: &lt;A href="http://pastebin.com/jCdhjHED" target="_blank"&gt;http://pastebin.com/jCdhjHED&lt;/A&gt; &lt;/P&gt;

&lt;P&gt;Please try and replace your pySDEE.py file with that. Let me know how that works.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Sep 2020 16:42:39 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Getting-Data-In/Cisco-IPS-Error-errno-quot-quot-8/m-p/88934#M18459</guid>
      <dc:creator>kdick</dc:creator>
      <dc:date>2020-09-28T16:42:39Z</dc:date>
    </item>
  </channel>
</rss>

