ML
    • Recent
    • Categories
    • Tags
    • Popular
    • Users
    • Groups
    • Register
    • Login

    Securing SSH

    IT Discussion
    ssh ssh keys security
    11
    60
    4.7k
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • IRJI
      IRJ @JaredBusch
      last edited by

      @JaredBusch said in Securing SSH:

      @IRJ said in Securing SSH:

      You would store your key in an encrypted drive like druva or one drive

      Umm WUT.

      You don't store your key anywhere. Because that makes it useless.

      Are you reusing the same key on different user devices?

      Not your personal key of course. A break glass key for root access. You get a root key for all cloud servers that should be different from your user key. That was the key I was talking about storing.

      1 Reply Last reply Reply Quote 0
      • black3dynamiteB
        black3dynamite
        last edited by black3dynamite

        On my Fedora laptop and desktop this is what I do.

        # Generating a new ED25519 key with a password
        ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
        
        # Generating a new ED25519 key without a password
        ssh-keygen -o -a 100 -t ed25519 -N '' -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
        

        When I use a key that requires a password, I use ssh-agent so I don't have to enter my password.

        # Run ssh-agent and then use ssh-add
        eval "$(ssh-agent -s)"
        ssh-add ~/.ssh/id_ed25519
        
        pmonchoP 1 Reply Last reply Reply Quote 0
        • stacksofplatesS
          stacksofplates @IRJ
          last edited by

          @IRJ said in Securing SSH:

          @hobbit666 said in Securing SSH:

          I think the common things i've seen so far are -

          PasswordLess access i.e. Public/Private Keys
          Timeouts
          Disallow root logon
          Harden Firewall
          White-list IP's that can access.

          That is a good quick list, but we can add use vpn and/bastion host for access to that list.

          Yeah this wasn't for a cloud deployment so it was the perimeter device. I incorrectly called it a jump box for some reason. It's really a bastion host.

          1 Reply Last reply Reply Quote 0
          • pmonchoP
            pmoncho @black3dynamite
            last edited by

            @black3dynamite said in Securing SSH:

            On my Fedora laptop and desktop this is what I do.

            # Generating a new ED25519 key with a password
            ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
            

            May be a stupid question but, should we use passwords?

            DustinB3403D black3dynamiteB 2 Replies Last reply Reply Quote 0
            • DustinB3403D
              DustinB3403 @pmoncho
              last edited by

              @pmoncho said in Securing SSH:

              @black3dynamite said in Securing SSH:

              On my Fedora laptop and desktop this is what I do.

              # Generating a new ED25519 key with a password
              ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
              

              May be a stupid question but, should we use passwords?

              You can, but you'd have to enter that password every time to connect using your SSH key.

              black3dynamiteB 1 Reply Last reply Reply Quote 0
              • black3dynamiteB
                black3dynamite @pmoncho
                last edited by

                @pmoncho said in Securing SSH:

                @black3dynamite said in Securing SSH:

                On my Fedora laptop and desktop this is what I do.

                # Generating a new ED25519 key with a password
                ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
                

                May be a stupid question but, should we use passwords?

                It's for protecting your private key.

                1 Reply Last reply Reply Quote 0
                • black3dynamiteB
                  black3dynamite @DustinB3403
                  last edited by

                  @DustinB3403 said in Securing SSH:

                  @pmoncho said in Securing SSH:

                  @black3dynamite said in Securing SSH:

                  On my Fedora laptop and desktop this is what I do.

                  # Generating a new ED25519 key with a password
                  ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
                  

                  May be a stupid question but, should we use passwords?

                  You can, but you'd have to enter that password every time to connect using your SSH key.

                  Unless use ssh-agent.

                  DustinB3403D 1 Reply Last reply Reply Quote 0
                  • DustinB3403D
                    DustinB3403 @black3dynamite
                    last edited by

                    @black3dynamite said in Securing SSH:

                    @DustinB3403 said in Securing SSH:

                    @pmoncho said in Securing SSH:

                    @black3dynamite said in Securing SSH:

                    On my Fedora laptop and desktop this is what I do.

                    # Generating a new ED25519 key with a password
                    ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
                    

                    May be a stupid question but, should we use passwords?

                    You can, but you'd have to enter that password every time to connect using your SSH key.

                    Unless use ssh-agent.

                    How is ssh-agent storing your keypair password? It would have to be plain-text, wouldn't it? Which kind of defeats the point of adding a password to the keypair if the password for the pair is in plain-text. . .

                    black3dynamiteB 1 Reply Last reply Reply Quote 0
                    • black3dynamiteB
                      black3dynamite @DustinB3403
                      last edited by

                      @DustinB3403 said in Securing SSH:

                      @black3dynamite said in Securing SSH:

                      @DustinB3403 said in Securing SSH:

                      @pmoncho said in Securing SSH:

                      @black3dynamite said in Securing SSH:

                      On my Fedora laptop and desktop this is what I do.

                      # Generating a new ED25519 key with a password
                      ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
                      

                      May be a stupid question but, should we use passwords?

                      You can, but you'd have to enter that password every time to connect using your SSH key.

                      Unless use ssh-agent.

                      How is ssh-agent storing your keypair password? It would have to be plain-text, wouldn't it? Which kind of defeats the point of adding a password to the keypair if the password for the pair is in plain-text. . .

                      It's not stored in plain-text.

                      https://www.emtec.com/ssh/agent.html
                      c13e81b6-b25e-4ecb-9fee-94fb1ed55391-image.png

                      pmonchoP 1 Reply Last reply Reply Quote 2
                      • pmonchoP
                        pmoncho @black3dynamite
                        last edited by

                        @black3dynamite said in Securing SSH:

                        @DustinB3403 said in Securing SSH:

                        @black3dynamite said in Securing SSH:

                        @DustinB3403 said in Securing SSH:

                        @pmoncho said in Securing SSH:

                        @black3dynamite said in Securing SSH:

                        On my Fedora laptop and desktop this is what I do.

                        # Generating a new ED25519 key with a password
                        ssh-keygen -o -a 100 -t ed25519 -C "$(whoami)@$(hostname)_$(date +%Y-%m-%d_%H:%M:%S%z)" -f ~/.ssh/id_ed25519
                        

                        May be a stupid question but, should we use passwords?

                        You can, but you'd have to enter that password every time to connect using your SSH key.

                        Unless use ssh-agent.

                        How is ssh-agent storing your keypair password? It would have to be plain-text, wouldn't it? Which kind of defeats the point of adding a password to the keypair if the password for the pair is in plain-text. . .

                        It's not stored in plain-text.

                        https://www.emtec.com/ssh/agent.html
                        c13e81b6-b25e-4ecb-9fee-94fb1ed55391-image.png

                        Well damn. This is interesting to know. If that is the case, it just may be beneficial to use a passphrase if only done once per 8 hours. I can handle that.

                        1 Reply Last reply Reply Quote 3
                        • hobbit666H
                          hobbit666
                          last edited by

                          Silly question, i think i know the answer but checking 🙂
                          If i'm using a windows machine logging in as a domain user - myname@domain.co.uk

                          I want to use SSH key pairs to log into my Zabbix Server. This was setup (On linux CentOS8) with two users when installing "root" and "zabb02".

                          Do i need a user called myname (or myname@domain.co.uk) on the zabbix server?

                          Also guess i generate the key pair on my Windows machine and upload the pub side to the Server(s)

                          DashrenderD scottalanmillerS 2 Replies Last reply Reply Quote 0
                          • DashrenderD
                            Dashrender @hobbit666
                            last edited by

                            @hobbit666 said in Securing SSH:

                            Silly question, i think i know the answer but checking 🙂
                            If i'm using a windows machine logging in as a domain user - myname@domain.co.uk

                            I want to use SSH key pairs to log into my Zabbix Server. This was setup (On linux CentOS8) with two users when installing "root" and "zabb02".

                            Do i need a user called myname (or myname@domain.co.uk) on the zabbix server?

                            Also guess i generate the key pair on my Windows machine and upload the pub side to the Server(s)

                            I'm taking a stab here because it's been two hours with no reply.

                            I'm going to say no, you don't I have several VMs that I SSH into all the time, and non of them have my domain account on them, yet the Windows machine I'm on is on an AD.

                            You could try to setup pass-through authentication, but the whole keypair thing goes away (I think)... though you could try to setup kerberos authentication on your Zabbix box so you can login using AD creds.

                            1 Reply Last reply Reply Quote 0
                            • scottalanmillerS
                              scottalanmiller @hobbit666
                              last edited by

                              @hobbit666 said in Securing SSH:

                              Do i need a user called myname (or myname@domain.co.uk) on the zabbix server?

                              No, you use any name you want on Zabbix.

                              JaredBuschJ 1 Reply Last reply Reply Quote 0
                              • JaredBuschJ
                                JaredBusch @scottalanmiller
                                last edited by

                                @scottalanmiller said in Securing SSH:

                                @hobbit666 said in Securing SSH:

                                Do i need a user called myname (or myname@domain.co.uk) on the zabbix server?

                                No, you use any name you want on Zabbix.

                                More specifically, on your desktop get used to typing ssh user@ip.add.re.ss instead of just ssh ip.add.re.ss

                                Or create a command alias: https://docs.microsoft.com/en-us/windows/console/console-aliases

                                1 Reply Last reply Reply Quote 2
                                • hobbit666H
                                  hobbit666
                                  last edited by

                                  Updated 2nd post

                                  1 Reply Last reply Reply Quote 0
                                  • DashrenderD
                                    Dashrender @hobbit666
                                    last edited by

                                    @hobbit666 said in Securing SSH:

                                    Steps I used to connect to my Zabbix Server (CentOS 😎 from Win10

                                    created a folder c:\users<username>.ssh
                                    in powershell ran this command

                                     ssh-keygen -o -a 100 -t ed25519 -C "my@email.com Desktop"
                                    

                                    Typed on the password i wanted to use (you can run a different command to have a password less key - see below)
                                    This generated two files in .ssh - id_ed25519 and id_ed25519.pub

                                    still in powershell i ssh'd onto the zabbix server

                                    ssh <user>@<ip>
                                    

                                    Once in ran the following commands

                                    sudo mkdir ~/.ssh
                                    sudo nano ~/.ssh/authorized_keys
                                    

                                    copy the contents of the .pub file on the windows machine

                                    sudo chown YourUserName:YourUserName ~/.ssh -R
                                    sudo chmod 700 ~/.ssh
                                    sudo chmod 600 ~/.ssh/authorized_keys
                                    

                                    Then from powershell ssh <user>@<ip> and it just asked me for the key password and i'm in 😄

                                    Updated - 28/02/2020

                                    So all of the public keys go into that single authorized_keys file? or does each user on the remote system have their own authorized_keys file?

                                    hobbit666H JaredBuschJ 2 Replies Last reply Reply Quote 0
                                    • hobbit666H
                                      hobbit666 @Dashrender
                                      last edited by hobbit666

                                      @Dashrender To be honest that's my next step is now to make some keys for my laptop, and see how and where they go 🙂
                                      but my guess is in the same authorized_keys file on a separate line

                                      JaredBuschJ 1 Reply Last reply Reply Quote 0
                                      • JaredBuschJ
                                        JaredBusch @Dashrender
                                        last edited by

                                        @Dashrender said in Securing SSH:

                                        So all of the public keys go into that single authorized_keys file?

                                        It is in the user directory. All of that user's keys are there.

                                        But again, these are public keys.

                                        DashrenderD 1 Reply Last reply Reply Quote 0
                                        • JaredBuschJ
                                          JaredBusch @hobbit666
                                          last edited by JaredBusch

                                          @hobbit666 said in Securing SSH:

                                          @Dashrender To be honest that's my next step is now to make some keys for my laptop, and see how and where they go 🙂
                                          but my guess is in the same authorized_keys file on a separate line

                                          This is your friend.

                                          ssh-copy-id -i ~/.ssh/id_ed25519.pub user@ip
                                          

                                          if you only have a single public key you can simplify it to

                                          ssh-copy-id user@ip
                                          

                                          I specify because my desktop has a few different generated keys.
                                          3ff95aa0-de1f-4a83-b1c3-74c0919f78c8-image.png

                                          hobbit666H wirestyle22W 2 Replies Last reply Reply Quote 2
                                          • DashrenderD
                                            Dashrender @JaredBusch
                                            last edited by

                                            @JaredBusch said in Securing SSH:

                                            @Dashrender said in Securing SSH:

                                            So all of the public keys go into that single authorized_keys file?

                                            It is in the user directory. All of that user's keys are there.

                                            But again, these are public keys.

                                            Yeah, I wasn't worried about a security situation... but I'm guessing by making the keys part of the profile on the end controlled device, that is what sets what user is logged in via the key, since there is no username associated with the key itself.
                                            Just talking this through to myself.

                                            Thanks.

                                            JaredBuschJ 1 Reply Last reply Reply Quote 0
                                            • 1
                                            • 2
                                            • 3
                                            • 2 / 3
                                            • First post
                                              Last post