Explore top 10 tips to secure your open-source projects now. Read More

×
Alerts This Week
Warning Icon 1 483
Alerts This Week
Warning Icon 1 483

Stay Ahead With Linux Security News

Filter%20icon Refine news
X Clear Filters
X Clear Filters
View More

Get the latest News and Insights

Get the latest Linux and open source security news straight to your inbox.

Community Poll

Should Linux servers automatically install security updates?

No answer selected. Please try again.
Please select either existing option or enter your own, however not both.
Please select minimum {0} answer(s).
Please select maximum {0} answer(s).
/main-polls/157-should-linux-servers-automatically-install-security-updates?task=poll.vote&format=json
157
radio
0
[{"id":506,"title":"Yes \u2014 critical security patches should install automatically.","votes":0,"type":"x","order":1,"pct":0,"resources":[]},{"id":507,"title":"No \u2014 every update should be tested before deployment.","votes":0,"type":"x","order":2,"pct":0,"resources":[]},{"id":508,"title":"Only critical vulnerabilities should auto-install.","votes":0,"type":"x","order":3,"pct":0,"resources":[]},{"id":509,"title":"I patch when Reddit starts panicking.","votes":0,"type":"x","order":4,"pct":0,"resources":[]}] ["#ff5b00","#4ac0f2","#b80028","#eef66c","#60bb22","#b96a9a","#62c2cc"] ["rgba(255,91,0,0.7)","rgba(74,192,242,0.7)","rgba(184,0,40,0.7)","rgba(238,246,108,0.7)","rgba(96,187,34,0.7)","rgba(185,106,154,0.7)","rgba(98,194,204,0.7)"] 350
bottom 200
Loading...

Explore Latest Linux Security news

We found 10 articles for you...
210

The Hidden Cost of Enterprise SSH Authentication

We often view OpenSSH security updates through the lens of standard patch management. When a new CVE hits, we scramble to update, check our versions, and return to business as usual. But recent vulnerabilities tied to distribution-added OpenSSH GSSAPI patches are a reminder that the danger doesn't always lie in the core code; it often resides in the "convenience" features we layer on top. . These recent issues shouldn't just trigger an apt upgrade or dnf update; they should trigger a configuration audit. As our infrastructure has grown more complex, we have enabled features like GSSAPI—designed to simplify enterprise management—that have quietly expanded our attack surface in ways that standard hardening guides rarely address. Why Enterprises Enable GSSAPI SSH keys work well until your environment starts growing. A handful of Linux servers is easy enough to manage, but hundreds or thousands are a different story. Keys need to be rotated, access needs to be revoked when employees leave, and every new system has to be brought into the process. That's where GSSAPI comes in. Organizations already using Kerberos can let users authenticate with their existing domain credentials instead of distributing and maintaining SSH keys on every server. For many enterprises, that's a practical decision rather than a security decision. The catch is that SSH is no longer handling a relatively simple login. It now has to work with Kerberos tickets and the software that supports them. Recent GSSAPI-related vulnerabilities are a reminder that every additional authentication feature adds more code that has to process data before a session is established. That doesn't mean GSSAPI is unsafe. It means features that make administration easier also deserve the same level of review as the rest of your SSH configuration. There's another detail that's easy to miss. Many Linux distributions ship OpenSSH with downstream patches to support enterprise environments. Those additions aren't part of the upstream OpenSSHcode maintained by the OpenBSD project, so administrators should pay attention to distribution-specific security advisories rather than assuming every OpenSSH issue affects every system the same way. Why "More Secure" Isn't "Less Risky" The core insight here is that complexity is the enemy of security. We implement GSSAPI to avoid the human-centric failure of weak passwords, but we trade that for the system-centric failure of a complex, high-privilege service boundary. If your environment doesn’t require SSO via Kerberos, you are paying a security tax for a convenience you aren't actually using. Even if you do require it, you need to treat the GSSAPI configuration with the same level of paranoia you apply to your authorized_keys files. The Audit: What Should You Be Looking For? If you are running an enterprise Linux fleet, the recent OpenSSH updates serve as a forcing function to look beyond the patch. Ask yourself the following: Is GSSAPI actually necessary? For most standalone servers or small, static clusters, the answer is usually no. If you aren't actively using Kerberos for SSH authentication, explicitly set GSSAPIAuthentication no in your sshd_config. Are your "Forwarding" features justified? Features like GSSAPIDelegateCredentials no, AllowAgentForwarding no, and AllowTcpForwarding no are often left enabled by default out of habit. These provide lateral movement pathways for attackers who compromise an initial jump host. Is your authentication boundary siloed? In a modern "Zero Trust" architecture, we aim to minimize the trust we place in the server itself. Are you relying on the server to validate complex Kerberos tokens, or are you moving toward ephemeral, centrally signed SSH certificates? The Takeaway The latest OpenSSH updates are not just another entry in your vulnerability management dashboard—they are a critique of our collective preference for "easy" enterprise configuration. When you see a GSSAPI-related vulnerability in a changelog,don't just patch. Re-evaluate. Every feature you enable in sshd_config is an intentional decision to expand the scope of what an attacker can target. Before you restart that service, ask yourself: Am I configuring this for security, or am I just configuring it for convenience? Want more Linux security news, vulnerability analysis, and software supply chain updates? Subscribe to the LinuxSecurity Newsletter and get the latest threats, advisories, and expert insights delivered directly to your inbox. Related Reading How to Harden SSH on Linux After Disabling Password Authentication How to Detect Unauthorized SSH Key Usage on Linux Systems . OpenSSH updates highlight the importance of thorough configuration audits over standard patching practices.. OpenSSH updates, enterprise SSH risk management, GSSAPI configuration issues. . MaK Ulac

Calendar%202 Jul 06, 2026 User Avatar MaK Ulac Security Vulnerabilities
74

New OpenSSH Win32 Port With Client-Server Integration and No Cygwin

A final step towards removing Cygwin dependencies, new Win32 port of OpenSSH includes both client and server, implementing a majority of the functionalities found in the original code. Rome, Italy September 15, 2010 . Delve into the fresh Win32 adaptation of OpenSSH, improving features and eliminating reliance on Cygwin.. OpenSSH Windows Port, Client-Server Integration, Cygwin Removal. . Anthony Pell

Calendar%202 Sep 15, 2010 User Avatar Anthony Pell Network Security
77

Enhancing OpenSSH Server Security: 20 Best Practices For Safe Remote Access

OpenSSH is the implementation of the SSH protocol. OpenSSH is recommended for remote login, making backups, remote file transfer via scp or sftp, and much more. SSH is perfect to keep confidentiality and integrity for data exchanged between two networks and systems. However, the main advantage is server authentication, through the use of public key cryptography. From time to time there are rumors about OpenSSH zero day exploit. Here are a few things you need to tweak in order to improve OpenSSH server security.. The link for this article located at Cyberciti is no longer available. . The link for this article located at Cyberciti is no longer available.. openssh, protocol, recommended, remote, login, making. . LinuxSecurity.com Team

Calendar%202 Jul 27, 2009 User Avatar LinuxSecurity.com Team Server Security
74

Boost OpenSSH Efficiency: Tips For Secure Transfers And Management

Although using public key authentication instead of passwords is a great method for increasing the security of SSH transfers, transferring SSH identity keys can be a royal pain. First, you create your key pairs; then, you copy the public key into the correct locations on all the machines you want to log into. The keys must be in a particular format, and you must go into the correct directory with the correct permissions. Fortunately, ssh-copy-id, a slick utility included with OpenSSH, makes it easy. This article looks a ways to make using OpenSSH more efficient. Do you have any tips, for using ssh? . The link for this article located at LinuxPlanet is no longer available. . The link for this article located at LinuxPlanet is no longer available.. although, using, public, authentication, instead, passwords, great, method, increasing. . Bill Locke

Calendar%202 Nov 24, 2008 User Avatar Bill Locke Network Security
78

OpenBSD Contributions to OpenSSH: Support and Software Development

Once again, the OpenBSD project is asking for donations to keep its operations in motion. It doesn't ask for much -- U.S. $100,000 (small potatoes in the operating system development industry) -- yet it provides so much to the software world. Even if you don't use OpenBSD, you're likely to be benefiting from it unknowingly. If you're using Solaris, SCO UnixWare, OS X, SUSE Linux, or Red Hat Enterprise Linux, chances are you're using the OpenBSD-developed OpenSSH for secure shell access to remote machines. If so many are using this software, why are so few paying for it? Official responses (and non-responses) from Sun Microsystems, IBM, Novell, and Red Hat are below, but if you're one of the freeloaders who hasn't contributed to OpenBSD or OpenSSH, what's your excuse? . "Bigger than OpenBSD, our big contribution is OpenSSH," OpenBSD project leader Theo de Raadt told me in a 2004 interview. "It is now included in pretty much every non-Windows operating system made. It is included in network switches, in half of Cisco's products, and who knows where else. It is used by everything from Arrecibo to the Greek Army to who knows where else. And what have we gotten for it in return? Pretty much nothing at all." The link for this article located at Jem Report is no longer available. . The OpenBSD team convenes to strategize on maintaining OpenSSH, vital for safe shell access on various systems.. OpenBSD Contributions, Software Development, Open Source Projects. . LinuxSecurity.com Team

Calendar%202 Mar 30, 2006 User Avatar LinuxSecurity.com Team Vendors/Products
78

Theo de Raadt Insights: OpenBSD and OpenSSH Development

Everybody know that you're the OpenBSD and OpenSSH GURU and creator, one of most famous and used secure operating system nowaday. Why you created them? What did you need many years ago from os world when you created OpenBSD? What inspired you to write from scratch OpenBSD and OpenSSH? Read Full Text. The link for this article located at tuxjournal.net is no longer available. . The link for this article located at tuxjournal.net is no longer available. . everybody, you're, openbsd, openssh, creator, famous. . LinuxSecurity.com Team

Calendar%202 Jun 02, 2005 User Avatar LinuxSecurity.com Team Vendors/Products
83

Trojan Horse Impact on Sendmail, OpenSSH, and tcpdump Software

At least three commonly used open source software packages were altered by black-hat (bad-guy) hackers to contain "Trojan horse" code this year. The three most commonly used packages affected were Sendmail, OpenSSH and tcpdump/libpcap. Others to be modified included BitchX, . . . . At least three commonly used open source software packages were altered by black-hat (bad-guy) hackers to contain "Trojan horse" code this year. The three most commonly used packages affected were Sendmail, OpenSSH and tcpdump/libpcap. Others to be modified included BitchX, a chat client, and Fragrouter, a network security tool. In all of these cases, the unknown cracker gained entry to the relevant download sites and embedded the back door code in the installation packages. The link for this article located at ZDNet.com.au is no longer available. . At least three commonly used open source software packages were altered by black-hat (bad-guy) hacke. least, three, commonly, source, software, packages, altered, black-hat, (bad-guy), hacke. . LinuxSecurity.com Team

Calendar%202 Dec 27, 2002 User Avatar LinuxSecurity.com Team Hacks/Cracks
77

Set Up Encrypted NFS on Linux Systems with OpenSSH for Security

NFS is a widely deployed, mature, and understood protocol that allows computers to share files over a network. The main problems with NFS are that it relies on the inherently insecure UDP protocol, transactions are not encrypted, hosts and users cannot . . . . NFS is a widely deployed, mature, and understood protocol that allows computers to share files over a network. The main problems with NFS are that it relies on the inherently insecure UDP protocol, transactions are not encrypted, hosts and users cannot be easily authenticated, and its difficulty in firewalling. This article provides a solution to most of these problems for Linux clients and servers. These principles may also be applied to any UNIX server with ssh installed. This article assumes basic knowledge of NFS and firewalling for Linux. The link for this article located at SysAdmin is no longer available. . Securely implement encrypted NFS using OpenSSH on Linux by utilizing SSH tunneling for data protection during transfers, enhancing file sharing safety. NFS Protocol, OpenSSH, Encrypted File Sharing. . LinuxSecurity.com Team

Calendar%202 Nov 14, 2002 User Avatar LinuxSecurity.com Team Server Security
News Add Esm H340

Get the latest News and Insights

Get the latest Linux and open source security news straight to your inbox.

Community Poll

Should Linux servers automatically install security updates?

No answer selected. Please try again.
Please select either existing option or enter your own, however not both.
Please select minimum {0} answer(s).
Please select maximum {0} answer(s).
/main-polls/157-should-linux-servers-automatically-install-security-updates?task=poll.vote&format=json
157
radio
0
[{"id":506,"title":"Yes \u2014 critical security patches should install automatically.","votes":0,"type":"x","order":1,"pct":0,"resources":[]},{"id":507,"title":"No \u2014 every update should be tested before deployment.","votes":0,"type":"x","order":2,"pct":0,"resources":[]},{"id":508,"title":"Only critical vulnerabilities should auto-install.","votes":0,"type":"x","order":3,"pct":0,"resources":[]},{"id":509,"title":"I patch when Reddit starts panicking.","votes":0,"type":"x","order":4,"pct":0,"resources":[]}] ["#ff5b00","#4ac0f2","#b80028","#eef66c","#60bb22","#b96a9a","#62c2cc"] ["rgba(255,91,0,0.7)","rgba(74,192,242,0.7)","rgba(184,0,40,0.7)","rgba(238,246,108,0.7)","rgba(96,187,34,0.7)","rgba(185,106,154,0.7)","rgba(98,194,204,0.7)"] 350
bottom 200