<?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: Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms in Operating System - HP-UX</title>
    <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7196321#M948611</link>
    <description>&lt;P&gt;Did you manage to find the answer of how to edit these files? WinSCP isn't working. I can connect via SSH but like you I can't find the commands needed to edit the files.&lt;/P&gt;</description>
    <pubDate>Tue, 12 Sep 2023 18:30:39 GMT</pubDate>
    <dc:creator>Dskmn</dc:creator>
    <dc:date>2023-09-12T18:30:39Z</dc:date>
    <item>
      <title>Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/6691343#M729800</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We have been asked to carry out the following activities by Audit team for hpux 11iv3 servers ;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1) Observation:--The SSH server is configured to use Cipher Block Chaining.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Recommendation :--Contact the vendor or consult product documentation to disable CBC mode cipher encryption, and enable CTR or GCM cipher&amp;nbsp; mode encryption.&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;2) Observation:--SSH is configured to allow MD5 and 96-bit MAC algorithms.&lt;BR /&gt;&amp;nbsp;&amp;nbsp; Recommendation :-Contact the vendor or consult product documentation to disable MD5 and 96-bit MAC algorithms.&lt;BR /&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2015 07:14:41 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/6691343#M729800</guid>
      <dc:creator>chindi</dc:creator>
      <dc:date>2015-01-07T07:14:41Z</dc:date>
    </item>
    <item>
      <title>Re: Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/6691532#M729801</link>
      <description>&lt;P&gt;There are a couple of sections in the ssh_config and sshd_config files that can be changed.&lt;BR /&gt;&lt;BR /&gt;Those are the "Ciphers" and the "MACs" sections of the config files.&lt;BR /&gt;&lt;BR /&gt;From the man page for ssh_config and sshd_config:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Ciphers&lt;BR /&gt;&lt;BR /&gt;Specifies the ciphers allowed for protocol version 2 in order ofpreference. Multiple ciphers must be comma-separated. Thesupported ciphers are ``3des-cbc'', ``aes128-cbc'', ``aes192-cbc'', ``aes256-cbc'', ``aes128-ctr'', ``aes192-ctr'', ``aes256-ctr'', ``aes128-gcm@openssh.com'', ``aes256-gcm@openssh.com'',``arcfour128'', ``arcfour256'', ``arcfour'', ``blowfish-cbc'',and ``cast128-cbc''.&lt;BR /&gt;&lt;BR /&gt;The default is:&lt;BR /&gt;&lt;BR /&gt;aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,aes128-gcm@openssh.com,aes256-gcm@openssh.com,arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr,aes192-ctr,aes256-ctr&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;MACs&lt;BR /&gt;&lt;BR /&gt;Specifies the MAC (message authentication code) algorithms inorder of preference. The MAC algorithm is used in protocolversion 2 for data integrity protection. Multiple algorithmsmust be comma-separated. The algorithms that contain ``-etm''calculate the MAC after encryption (encrypt-then-mac). These areconsidered safer and their use recommended.&lt;BR /&gt;&lt;BR /&gt;The default is:&lt;BR /&gt;&lt;BR /&gt;``hmac-md5-etm@openssh.com,hmac-sha1-etm@openssh.com,umac-64-etm@openssh.com, umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com&amp;lt;mailto:umac-128-etm@openssh.com,hmac-sha2-256-etm@openssh.com,hmac-sha2-512-etm@openssh.com&amp;gt;, hmac-ripemd160-etm@openssh.com,hmac-sha1-96-etm@openssh.com,hmac-md5-96-etm@openssh.com&amp;lt;mailto:hmac-ripemd160-etm@openssh.com,hmac-sha1-96-etm@openssh.com,hmac-md5-96-etm@openssh.com&amp;gt;, hmac-md5,hmac-sha1,umac-64@openssh.com,umac-128@openssh.com, hmac-sha2-256,hmac-sha2-512,hmac-ripemd160,hmac-sha1-96,hmac-md5-96''.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The lines in the ssh_config file, which are commented out on one of my test system are:&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;# Ciphers aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,aes128-cbc,3des-cbc&lt;BR /&gt;# MACs hmac-md5,hmac-sha1,umac-64@openssh.com,hmac-ripemd160&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;The sshd_config file does not have any example lines in it, but you can add the Ciphers and MACs line, exactly like the ssh_config file.&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;If you want to change them, uncomment the appropriate lines and add/change the appropriate items for each line. I would then stop / restart SSH to test the changes.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Jan 2015 15:06:51 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/6691532#M729801</guid>
      <dc:creator>Patrick Wallek</dc:creator>
      <dc:date>2015-01-07T15:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7087068#M729803</link>
      <description>&lt;P&gt;Hi Patrick,&lt;/P&gt;&lt;P&gt;What commands do I need to make the changes to these files?&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;ssh_config and sshd_config files&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 05 May 2020 18:18:49 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7087068#M729803</guid>
      <dc:creator>mrmahdy</dc:creator>
      <dc:date>2020-05-05T18:18:49Z</dc:date>
    </item>
    <item>
      <title>Re: Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7196321#M948611</link>
      <description>&lt;P&gt;Did you manage to find the answer of how to edit these files? WinSCP isn't working. I can connect via SSH but like you I can't find the commands needed to edit the files.&lt;/P&gt;</description>
      <pubDate>Tue, 12 Sep 2023 18:30:39 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7196321#M948611</guid>
      <dc:creator>Dskmn</dc:creator>
      <dc:date>2023-09-12T18:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Disable CBC mode cipher encryption , MD5 and 96-bit MAC algorithms</title>
      <link>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7196569#M948615</link>
      <description>&lt;P&gt;Hello&amp;nbsp;&lt;a href="https://community.hpe.com/t5/user/viewprofilepage/user-id/2170212"&gt;@Dskmn&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;Thank you for posting! Since you have posted in an old topic and there is no response yet, I would recommend you create a new topic using the "New Discussion" button, so the experts can check and guide you further.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Sep 2023 04:23:15 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-hp-ux/disable-cbc-mode-cipher-encryption-md5-and-96-bit-mac-algorithms/m-p/7196569#M948615</guid>
      <dc:creator>Sunitha_Mod</dc:creator>
      <dc:date>2023-09-15T04:23:15Z</dc:date>
    </item>
  </channel>
</rss>

