<?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 How to fix CIPHER mismatch error &amp;quot;no common encryption algorithm(s)&amp;quot; trying to access HTTP Event Collector on Splunk Cloud? in Security</title>
    <link>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287144#M7673</link>
    <description>&lt;P&gt;Trying to send logs to Splunk Cloud via HEC errors due to cipher mismatch between server and client.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl -k 'https://splunkserver.cloud.splunk.com:8088/services/collector/event/1.0' -H 'Authorization: Splunk XXXX -d '{"event":"Hello, World!"}'
curl: (35) Cannot communicate securely with peer: no common encryption algorithm(s).
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Even connecting to port 8088 in browser gives ERR_SSL_VERSION_OR_CIPHER_MISMATCH, so Splunk Cloud is completely unusable right now. How to enable more encryption algorithms?&lt;/P&gt;</description>
    <pubDate>Tue, 29 Sep 2020 09:53:32 GMT</pubDate>
    <dc:creator>rjhazelwood</dc:creator>
    <dc:date>2020-09-29T09:53:32Z</dc:date>
    <item>
      <title>How to fix CIPHER mismatch error "no common encryption algorithm(s)" trying to access HTTP Event Collector on Splunk Cloud?</title>
      <link>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287144#M7673</link>
      <description>&lt;P&gt;Trying to send logs to Splunk Cloud via HEC errors due to cipher mismatch between server and client.&lt;/P&gt;

&lt;PRE&gt;&lt;CODE&gt;curl -k 'https://splunkserver.cloud.splunk.com:8088/services/collector/event/1.0' -H 'Authorization: Splunk XXXX -d '{"event":"Hello, World!"}'
curl: (35) Cannot communicate securely with peer: no common encryption algorithm(s).
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;Even connecting to port 8088 in browser gives ERR_SSL_VERSION_OR_CIPHER_MISMATCH, so Splunk Cloud is completely unusable right now. How to enable more encryption algorithms?&lt;/P&gt;</description>
      <pubDate>Tue, 29 Sep 2020 09:53:32 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287144#M7673</guid>
      <dc:creator>rjhazelwood</dc:creator>
      <dc:date>2020-09-29T09:53:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix CIPHER mismatch error "no common encryption algorithm(s)" trying to access HTTP Event Collector on Splunk Cloud?</title>
      <link>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287145#M7674</link>
      <description>&lt;PRE&gt;&lt;CODE&gt; curl -k &lt;A href="https://hostname.cloud.splunk.com:8088/services/collector" target="test_blank"&gt;https://hostname.cloud.splunk.com:8088/services/collector&lt;/A&gt; -H 'Authorization: Splunk 740E3ADC-3214-45DA-9F30-44F7A837BAA2' -d '{"event":"event1"} {"event":"event2"}'
curl: (35) Cannot communicate securely with peer: no common encryption algorithm(s).
&lt;/CODE&gt;&lt;/PRE&gt;

&lt;P&gt;I am also facing the same issue from splunk documents says that its working but tried a lot . I am using splunk cloud self trail. Does any one is having solution for this. Thanks&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 17:00:38 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287145#M7674</guid>
      <dc:creator>vvelpuri</dc:creator>
      <dc:date>2016-09-23T17:00:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to fix CIPHER mismatch error "no common encryption algorithm(s)" trying to access HTTP Event Collector on Splunk Cloud?</title>
      <link>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287146#M7675</link>
      <description>&lt;P&gt;This will not work for splunk self-service, the ECC certs that splunk uses are too strong, this is a known issue. However i would also suggest looking at the following post.&lt;BR /&gt;
&lt;A href="http://stackoverflow.com/questions/31107851/how-to-fix-curl-35-cannot-communicate-securely-with-peer-no-common-encryptio"&gt;http://stackoverflow.com/questions/31107851/how-to-fix-curl-35-cannot-communicate-securely-with-peer-no-common-encryptio&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;Basically you specify the required cipher explicitly as an option. Now which one to specify, you figure this out by checking the ciphers on server.&lt;/P&gt;

&lt;P&gt;Okay I was able to fix this. So basically you understand that curl does not support even one of the ciphers that server is willing to negotiate.&lt;BR /&gt;
Note that the I was testing this on a ubuntu machine. curl that was present on my ubuntu machine was not using openssl. I think that the default curl that you get by doing sudo apt-get is not built with openssl. So I built curl following this post &lt;BR /&gt;
&lt;A href="http://askubuntu.com/questions/764443/how-to-compile-curl-with-ssl-support"&gt;http://askubuntu.com/questions/764443/how-to-compile-curl-with-ssl-support&lt;/A&gt;&lt;/P&gt;

&lt;P&gt;After that I was able to make curl request.&lt;BR /&gt;
I also have a mac and I was able to make curl request successfully from there.&lt;BR /&gt;
I also had another colleague of mine who was not able to do so from mac.&lt;BR /&gt;
So I think a solution would be to build curl from source specifying an SSL library to build with ( this may depend on the os that you are using).&lt;BR /&gt;
Let me know how it goes.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Sep 2016 17:53:07 GMT</pubDate>
      <guid>https://community.splunk.com/t5/Security/How-to-fix-CIPHER-mismatch-error-quot-no-common-encryption/m-p/287146#M7675</guid>
      <dc:creator>rdimri_splunk</dc:creator>
      <dc:date>2016-09-23T17:53:07Z</dc:date>
    </item>
  </channel>
</rss>

