{"id":1707,"date":"2025-03-08T04:33:06","date_gmt":"2025-03-08T01:33:06","guid":{"rendered":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/"},"modified":"2025-03-08T04:33:06","modified_gmt":"2025-03-08T01:33:06","slug":"securing-linux-servers-disallowing-empty-passwords-for-enhanced-security","status":"publish","type":"post","link":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/","title":{"rendered":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security"},"content":{"rendered":"<p><br \/>\n<\/p>\n<p>In today&#8217;s digital landscape, server security is paramount for organizations and individuals alike. One of the fundamental aspects of securing a Linux server is to ensure that access is appropriately controlled and monitored. A surprisingly common oversight in many server setups is allowing users to have empty passwords. This practice can critically undermine server security, making systems vulnerable to unauthorized access. In this article, we will explore the importance of disallowing empty passwords and provide a step-by-step guide on how to enforce this security measure on your Linux servers.<\/p>\n<p><\/p>\n<h2>Why Empty Passwords Are a Security Risk<\/h2>\n<p><\/p>\n<p>Empty passwords present a significant security risk for several reasons:<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p><strong>Unauthorized Access<\/strong>: Users with empty passwords pose a direct threat to server integrity. Anyone with knowledge of a username can easily log in without any authentication.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Automated Attacks<\/strong>: Attackers often use scripts to exploit known username\/password combinations. Empty passwords can be easily exploited by automated tools scanning for vulnerable credentials.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p><strong>Compliance Violations<\/strong>: Many security standards and compliance regulations, such as ISO 27001, PCI-DSS, and GDPR, mandate strict password policies. Allowing empty passwords may lead to compliance issues and potential legal repercussions.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li><strong>Neglecting Basic Security Hygiene<\/strong>: Enabling empty passwords suggests a lack of basic security protocols. Organizations that overlook such foundational aspects risk developing a culture of neglect regarding cybersecurity.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h2>Steps to Disallow Empty Passwords on Linux Servers<\/h2>\n<p><\/p>\n<p>To ensure that your Linux server does not allow users to set empty passwords, follow these steps:<\/p>\n<p><\/p>\n<h3>Step 1: Edit the <code>\/etc\/login.defs<\/code> File<\/h3>\n<p><\/p>\n<p>The <code>\/etc\/login.defs<\/code> file contains configuration settings for user login. To disallow empty passwords, you need to modify this file.<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p>Open a terminal window.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p>Use a text editor with root privileges to open the file:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">sudo nano \/etc\/login.defs<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p>Look for the line that contains <code>PASS_MIN_LEN<\/code> (this defines the minimum password length). Ensure that it is set to at least <code>1<\/code>:<\/p>\n<p><\/p>\n<pre><code class=\"language-plaintext\">PASS_MIN_LEN 1<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>Now, look for <code>LOGIN_RETRIES<\/code> and set it to a value (e.g., 3) to limit failed login attempts, thereby enhancing security further.<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Step 2: Update PAM (Pluggable Authentication Modules) Configuration<\/h3>\n<p><\/p>\n<p>The PAM system handles authentication for Linux systems. You can configure PAM to disallow empty passwords by editing the relevant configuration files.<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p>Open the PAM configuration file for system authentication:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">sudo nano \/etc\/pam.d\/common-password<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p>Add the following line (if not already present) near the beginning:<\/p>\n<p><\/p>\n<pre><code class=\"language-plaintext\">password requisite pam_pwquality.so retry=3<\/code><\/pre>\n<p><\/p>\n<p>This enforces password quality checks, including length and complexity.<\/p>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p>To enforce the restriction against empty passwords, you can also add:<\/p>\n<p><\/p>\n<pre><code class=\"language-plaintext\">auth required pam_unix.so nullok<\/code><\/pre>\n<p><\/p>\n<p>Modify it to remove <code>nullok<\/code> (if it exists), ensuring that empty passwords are not permitted.<\/p>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<h3>Step 3: Update User Accounts<\/h3>\n<p><\/p>\n<p>Now that you have adjusted the system settings, it\u2019s time to verify existing user accounts and ensure no one has an empty password.<\/p>\n<p><\/p>\n<ol><\/p>\n<li>\n<p>Use the following command to check for empty passwords:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">sudo awk -F: '($2==\"\") {print $1}' \/etc\/shadow<\/code><\/pre>\n<p>\n<\/li>\n<p><\/p>\n<li>\n<p>If any accounts return results, you can prompt users to change their passwords with:<\/p>\n<p><\/p>\n<pre><code class=\"language-bash\">sudo passwd username<\/code><\/pre>\n<p>\n<\/li>\n<p>\n<\/ol>\n<p><\/p>\n<p>Replace <code>username<\/code> with the actual username of the account that needs updating.<\/p>\n<p><\/p>\n<h3>Step 4: Regular Audits and Monitoring<\/h3>\n<p><\/p>\n<p>Once you&#8217;ve enforced the disallowing of empty passwords, it\u2019s crucial to maintain ongoing vigilance:<\/p>\n<p><\/p>\n<ul><\/p>\n<li><strong>Regular Audits<\/strong>: Schedule periodic checks on user accounts and password policies to ensure compliance and security.<\/li>\n<p><\/p>\n<li><strong>Monitoring Tools<\/strong>: Implement tools like Fail2ban to monitor unsuccessful login attempts and respond by temporarily banning IPs that exhibit suspicious behavior.<\/li>\n<p>\n<\/ul>\n<p><\/p>\n<h3>Conclusion<\/h3>\n<p><\/p>\n<p>Securing your Linux server is an ongoing process that requires attention to detail and adherence to best practices. Disallowing empty passwords is a crucial step in protecting against unauthorized access and enhancing your server\u2019s overall security posture. By following the steps outlined in this article, you will strengthen your server&#8217;s defenses and create a more secure environment for your data and applications.<\/p>\n<p><\/p>\n<p>At WafaTech, we advocate for rigorous security practices to help protect your digital assets. Stay tuned for more tips and guides on enhancing your security practices and keeping your Linux servers safe!<\/p>\n\n","protected":false},"excerpt":{"rendered":"<p>In today&#8217;s digital landscape, server security is paramount for organizations and individuals alike. One of the fundamental aspects of securing a Linux server is to ensure that access is appropriately controlled and monitored. A surprisingly common oversight in many server setups is allowing users to have empty passwords. This practice can critically undermine server security, [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":1708,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"","_et_pb_old_content":"","_et_gb_content_width":"","inline_featured_image":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[22],"tags":[1107,1108,270,265,1109,264,291,302],"class_list":["post-1707","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-security","tag-disallowing","tag-empty","tag-enhanced","tag-linux","tag-passwords","tag-securing","tag-security","tag-servers","et-has-post-format-content","et_post_format-et-post-format-standard"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.5 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security - WafaTech Blogs<\/title>\n<meta name=\"description\" content=\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security\" \/>\n<meta property=\"og:description\" content=\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %\" \/>\n<meta property=\"og:url\" content=\"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/\" \/>\n<meta property=\"og:site_name\" content=\"WafaTech Blogs\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/\" \/>\n<meta property=\"article:published_time\" content=\"2025-03-08T01:33:06+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"2221\" \/>\n\t<meta property=\"og:image:height\" content=\"482\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"WafaTech SA\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:site\" content=\"@wafatech_sa\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"WafaTech SA\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/\"},\"author\":{\"name\":\"WafaTech SA\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\"},\"headline\":\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security\",\"datePublished\":\"2025-03-08T01:33:06+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/\"},\"wordCount\":629,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png\",\"keywords\":[\"Disallowing\",\"Empty\",\"Enhanced\",\"Linux\",\"Passwords\",\"Securing\",\"Security\",\"Servers\"],\"articleSection\":[\"Linux Security\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/\",\"name\":\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security - WafaTech Blogs\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png\",\"datePublished\":\"2025-03-08T01:33:06+00:00\",\"description\":\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#primaryimage\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2025\\\/03\\\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png\",\"width\":1024,\"height\":1024,\"caption\":\"linux server disallowing empty passwords\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/linux\\\/linux-security\\\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"name\":\"WafaTech Blogs\",\"description\":\"Smart Technologies\",\"publisher\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\"},\"alternateName\":\"WafaTech\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#organization\",\"name\":\"WafaTech Blogs\",\"alternateName\":\"WafaTech\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"contentUrl\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/logo_big.webp\",\"width\":2221,\"height\":482,\"caption\":\"WafaTech Blogs\"},\"image\":{\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/people\\\/WafaTech\\\/61560546351289\\\/\",\"https:\\\/\\\/x.com\\\/wafatech_sa\",\"https:\\\/\\\/www.youtube.com\\\/@wafatech-sa\",\"https:\\\/\\\/www.linkedin.com\\\/company\\\/wafatech\\\/\"],\"description\":\"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.\",\"email\":\"sales@wafatech.sa\",\"legalName\":\"Al-Wafa Al-Dhakia For Information Technology LLC\",\"foundingDate\":\"2013-01-08\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"11\",\"maxValue\":\"50\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/#\\\/schema\\\/person\\\/1a5761fc0feb63ab59d295d7c2648f06\",\"name\":\"WafaTech SA\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g\",\"caption\":\"WafaTech SA\"},\"url\":\"https:\\\/\\\/wafatech.sa\\\/blog\\\/author\\\/omer-yaseen\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security - WafaTech Blogs","description":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/","og_locale":"en_US","og_type":"article","og_title":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security","og_description":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %","og_url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/","og_site_name":"WafaTech Blogs","article_publisher":"https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","article_published_time":"2025-03-08T01:33:06+00:00","og_image":[{"width":2221,"height":482,"url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","type":"image\/webp"}],"author":"WafaTech SA","twitter_card":"summary_large_image","twitter_creator":"@wafatech_sa","twitter_site":"@wafatech_sa","twitter_misc":{"Written by":"WafaTech SA","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#article","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/"},"author":{"name":"WafaTech SA","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06"},"headline":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security","datePublished":"2025-03-08T01:33:06+00:00","mainEntityOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/"},"wordCount":629,"commentCount":0,"publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png","keywords":["Disallowing","Empty","Enhanced","Linux","Passwords","Securing","Security","Servers"],"articleSection":["Linux Security"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/","url":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/","name":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security - WafaTech Blogs","isPartOf":{"@id":"https:\/\/wafatech.sa\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#primaryimage"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#primaryimage"},"thumbnailUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png","datePublished":"2025-03-08T01:33:06+00:00","description":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security %","breadcrumb":{"@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#primaryimage","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png","width":1024,"height":1024,"caption":"linux server disallowing empty passwords"},{"@type":"BreadcrumbList","@id":"https:\/\/wafatech.sa\/blog\/linux\/linux-security\/securing-linux-servers-disallowing-empty-passwords-for-enhanced-security\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/wafatech.sa\/blog\/"},{"@type":"ListItem","position":2,"name":"Securing Linux Servers: Disallowing Empty Passwords for Enhanced Security"}]},{"@type":"WebSite","@id":"https:\/\/wafatech.sa\/blog\/#website","url":"https:\/\/wafatech.sa\/blog\/","name":"WafaTech Blogs","description":"Smart Technologies","publisher":{"@id":"https:\/\/wafatech.sa\/blog\/#organization"},"alternateName":"WafaTech","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/wafatech.sa\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/wafatech.sa\/blog\/#organization","name":"WafaTech Blogs","alternateName":"WafaTech","url":"https:\/\/wafatech.sa\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","contentUrl":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2024\/06\/logo_big.webp","width":2221,"height":482,"caption":"WafaTech Blogs"},"image":{"@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/people\/WafaTech\/61560546351289\/","https:\/\/x.com\/wafatech_sa","https:\/\/www.youtube.com\/@wafatech-sa","https:\/\/www.linkedin.com\/company\/wafatech\/"],"description":"WafaTech, a leading Saudi IT services provider, specializes in cloud solutions, connectivity, and ICT services. Offering secure cloud infrastructure, high-speed internet, and ICT solutions like hosting, backup, and disaster recovery, WafaTech operates a Tier 3 data center at KAUST with ISO certifications. Regulated by CST, the company is committed to innovation, security, and customer satisfaction, empowering businesses in the digital age.","email":"sales@wafatech.sa","legalName":"Al-Wafa Al-Dhakia For Information Technology LLC","foundingDate":"2013-01-08","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"11","maxValue":"50"}},{"@type":"Person","@id":"https:\/\/wafatech.sa\/blog\/#\/schema\/person\/1a5761fc0feb63ab59d295d7c2648f06","name":"WafaTech SA","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/fde877f001a2e0497276edc0684d3ba2a416c0de8caeb8e785076a1b1b932b3a?s=96&d=mm&r=g","caption":"WafaTech SA"},"url":"https:\/\/wafatech.sa\/blog\/author\/omer-yaseen\/"}]}},"jetpack_featured_media_url":"https:\/\/wafatech.sa\/blog\/wp-content\/uploads\/2025\/03\/Securing-Linux-Servers-Disallowing-Empty-Passwords-for-Enhanced-Security.png","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/1707","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/comments?post=1707"}],"version-history":[{"count":0,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/posts\/1707\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media\/1708"}],"wp:attachment":[{"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/media?parent=1707"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/categories?post=1707"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wafatech.sa\/blog\/wp-json\/wp\/v2\/tags?post=1707"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}