One-Click Linux Malware & Rootkit Scanner Using ClamAV and RKHunter

Secure Your Linux VPS in One Click with Our Rootkit & Malware Scanner

Running a VPS or dedicated server? One of the most overlooked but critical steps is making sure your system is free of rootkits and malware.

To simplify this task, we at Hosteons have released a free and open-source script that automatically installs, updates, and runs malware and rootkit scans using two of the most trusted tools in the Linux ecosystem:

  • ClamAV – an open-source antivirus engine
  • RKHunter – a rootkit scanner that checks for backdoors, local exploits, and suspicious files

🔧 What the Script Does

  • Detects your Linux distribution (Ubuntu, Debian, CentOS, AlmaLinux)
  • Installs ClamAV and RKHunter
  • Automatically updates malware and rootkit signature databases
  • Fixes common errors like WEB_CMD=”/bin/false” in RKHunter config
  • Runs full ClamAV scan
  • Executes a complete RKHunter rootkit check
  • Compatible with minimal or fresh VPS installations

📥 Download and Run

Run the following commands to download and execute:

curl -O https://raw.githubusercontent.com/hosteons/linux-malware-scanner/main/scan.sh
chmod +x scan.sh
sudo ./scan.sh

Or get the full packaged ZIP with README and LICENSE:

👉 Download from GitHub


📋 Output and Logs

  • ClamAV scan will output infected files (if any)
  • RKHunter will show warnings and potential issues
  • All actions run with user confirmation and are fully transparent

⚠️ Note

This script is non-destructive – it only scans and reports. It does not automatically delete or quarantine any files. Always review flagged files before taking any action.


🎯 Why Use This?

  • Ideal for hosting providers and system admins
  • Perfect for VPS users looking for a quick, effective scan
  • Good first step after initial OS setup

🙌 Contribute or Report Issues

You can fork, improve, or report bugs directly on GitHub:

🔗 https://github.com/hosteons/linux-malware-scanner

🔐 Easily Change Your Windows RDP Port with a One-Click Script

One-Click Windows RDP Port Changer Script 🖥️

Managing a Windows VPS often requires securing RDP (Remote Desktop Protocol) access. One of the most effective and simplest ways to harden your Windows Server is to change the default RDP port (3389). But doing it manually via the registry and firewall can be tedious and risky.

That’s why we at Hosteons created an open-source, one-click PowerShell script that simplifies the process.

👉 GitHub RepoWindows RDP Port Changer Script


✅ Features

  • Changes RDP Port via Windows Registry
  • Updates Windows Firewall to allow the new port
  • Enables RDP if it’s currently disabled
  • Fully open-source and free under the MIT License
  • Supports Windows Server 2012/2016/2019/2022

📦 How to Use

  1. Login to your Windows VPS as Administrator.
  2. Open PowerShell.
  3. Run the script directly:
iwr -useb https://raw.githubusercontent.com/hosteons/Windows-RDP-Port-Changer-Script/main/rdp_port_changer.ps1 | iex
  1. Enter your desired RDP port when prompted.

⚠️ Important: Make sure your port is not blocked by external firewalls (such as cloud provider rules). Also, ensure you have console/VNC access in case the new port is misconfigured.


🤖 Automation Friendly

This script can be integrated into automation flows for server provisioning or batch management. Perfect for sysadmins managing multiple Windows VPS instances.


🔐 Why Change Your RDP Port?

  • Reduces brute-force attacks from bots scanning port 3389
  • Hides your RDP service from default port scanners
  • Adds an extra layer of obscurity in your defense

👨‍💻 Contribute or Report Issues

This is an open-source script. Feel free to fork, improve, or report issues on GitHub:

👉 https://github.com/hosteons/Windows-RDP-Port-Changer-Script


📣 About Hosteons

Hosteons is a VPS and dedicated server provider offering services in multiple global locations. We’re committed to open-source and providing useful automation tools for system administrators and developers.

⭐ Hosteons is Now Google-Verified with Star Ratings in Search!

We’re thrilled to announce a new milestone in our journey of transparency and trust — Hosteons is now showing verified customer star ratings directly in Google Search results!

Whether you’re looking for high-performance VPS, blazing-fast Ryzen VDS, or secure web hosting, you can now see our Google-backed ratings as part of your search experience.


What This Means

When someone searches for our hosting plans like:

  • KVM VPS Hosting
  • Ryzen VPS
  • Dedicated Servers

They’ll now see something like this in Google:

✅ Star rating (4.6/5 based on 80+ reviews)

✅ Hosting highlights

✅ Price starting at just $1.75/month


Why This Matters

In a crowded market of hosting providers, trust matters. Our verified ratings reflect honest customer feedback across platforms like:

  • ✅ Google Reviews
  • ✅ Trustpilot
  • ✅ HostAdvice
  • ✅ Website Planet

What Makes Us 4.6★ Rated?

  • 💡 Instant provisioning on NVMe SSD nodes
  • 🌍 Global datacenters: US, EU (Paris, Frankfurt), and more
  • 🔒 Free DDoS protection
  • 🧰 Control panel, RDNS, snapshots, VNC access
  • 🏷 Starting at just $1.75/month

Try Our Rated VPS Plans Today

Looking for speed, reliability, and full control?

Explore our top-rated VPS hosting plans now:

🔗 KVM VPS Plans

🔗 Ryzen Premium VPS


Final Words

This recognition from Google is a testament to our commitment to performancetransparency, and support. Thank you to our loyal customers for making this possible!

Have questions or want to migrate?

Contact Us — we’re here 24/7.

How to Change Your SSH Port Safely on Any Linux Server (Ubuntu, Debian, CentOS, AlmaLinux)

Changing your SSH port is a simple yet powerful way to reduce brute-force login attempts and improve server security. To make this process easier, Hosteons offers a free Bash script that automatically handles the switch across all major Linux distributions — including firewalls and SELinux!


✅ Supported Operating Systems

  • Ubuntu 20.04 / 22.04
  • Debian 11 and above
  • CentOS 7 / 8
  • AlmaLinux 8 / 9

⚠️ Important Disclaimer

Changing your SSH port can lock you out if anything goes wrong.

Make sure you have console access such as VNC, IPMI, or KVM before using this script.


🔧 What the Script Does

  • Prompts until a valid SSH port is provided
  • Edits /etc/ssh/sshd_config to set the new port
  • Adds firewall rules for:
    • UFW (Ubuntu/Debian)
    • firewalld or iptables (CentOS/AlmaLinux)
  • Handles SELinux with semanage if needed
  • Restarts SSH service safely without reboot

🧰 How to Use the Script

  1. SSH into your VPS or server as root
  2. Run the following commands:
wget https://raw.githubusercontent.com/hosteons/SSH-Port-Changer-Script/main/ssh_port_changer.sh
chmod +x ssh_port_changer.sh
./ssh_port_changer.sh
  1. Enter your desired new SSH port when prompted

📦 Download from GitHub

Access the script and full documentation here:

👉 https://github.com/hosteons/SSH-Port-Changer-Script

Now Get a /64 IPv6 Subnet by Default with All VPS Orders at Hosteons

At Hosteons, we’re constantly working to improve your hosting experience. We’re excited to announce that all new VPS orders now include a /64 IPv6 subnet by default — no justification required.


🚀 What’s New?

Previously, /64 subnets were available only upon request with justification. But with our recent implementation of routed IPv6 mode, you can now receive a /64 subnet automatically when you select it in the order form.


✅ Key Benefits

  • No need to request or justify a /64 subnet
  • Automatically provisioned during VPS setup
  • Ideal for containers, custom routing, and IPv6-based apps
  • Enhanced networking isolation and flexibility

🌐 Available with All VPS Plans

This upgrade applies to all our KVM VPS and VDS plans:


🔁 Already Using a VPS?

If you’re an existing VPS user and would like to enable routed /64 IPv6, just open a support ticket — we’ll help you switch over quickly.


We’re making IPv6 adoption seamless and automatic, so you can focus on deploying your applications — not configuring your network.

Thank you for choosing Hosteons.

How Developers Use VDS for CI/CD Pipelines and Git-Based Workflows

In the world of modern software development, automation and speed are everything. Whether you’re pushing code to production daily or running complex integration tests, having a reliable infrastructure is crucial.

That’s where VDS (Virtual Dedicated Servers) from Hosteons come in. Offering the power of a dedicated server with the flexibility of virtualization, VDS is becoming the go-to choice for developers building robust CI/CD pipelines and managing Git-based workflows.


🚀 Why Choose VDS for DevOps Workflows?

Developers love VDS environments because they offer:

  • Full root access for maximum control
  • Guaranteed resources (CPU, RAM, Storage) — no noisy neighbors
  • Dedicated IPv4 & IPv6
  • High performance — ideal for parallel builds, container orchestration, and test environments
  • Custom OS support (Ubuntu, Debian, CentOS, AlmaLinux, etc.)

🔄 CI/CD Pipelines on a VDS

CI/CD (Continuous Integration / Continuous Deployment) is all about automating the development lifecycle.

A typical setup on a Hosteons VDS might include:

  • Git + GitHub/GitLab/Bitbucket as your source repository
  • Jenkins, GitHub Actions, GitLab CI, or DroneCI for pipeline automation
  • Docker or Podman for container-based builds
  • Ansible or Bash scripts for post-deployment actions

You get to control your build agents, configure runners, and secure your environments without restrictions.


🧑‍💻 Git Workflows with Flexibility

With a VDS, developers can:

  • Run bare-metal Git servers using Gitea or GitLab CE
  • Automate hooks and deployments
  • Host private repositories without third-party limits
  • Secure deployments using SSH keys and firewalls

Combined with daily or hourly cron-based backups, this gives you full control over your versioning and rollback strategies.


🌍 Ideal Use Cases

Here’s how real developers are using VDS from Hosteons:

  • Hosting CI/CD runners to avoid limits on GitHub/GitLab
  • Running microservices that auto-deploy on every Git push
  • Spinning up test and staging environments dynamically
  • Running self-hosted monitoring tools like Grafana, Prometheus, and uptime-kuma
  • Automating builds for mobile apps, websites, APIs, and more

💡 Why Hosteons VDS?

At Hosteons, we provide Ryzen 7950X-powered VDS with blazing-fast NVMe storage, dedicated bandwidth, and multiple global locations — all backed by a secure and developer-friendly environment.

✅ Full Root Access

✅ Dedicated Cores and RAM

✅ Custom ISO Support

✅ IPv4 + IPv6

✅ Virtualizor Control Panel


🛒 Order Your VDS Today

Ready to supercharge your development workflow?

👉 Order Ryzen 7950X VDS – Salt Lake City, Los Angeles, Dallas


Whether you’re a solo developer, part of a remote team, or building a CI/CD pipeline for a startup, a VDS from Hosteons offers the performance and freedom you need.

🚀 Build. Test. Deploy. Repeat — with confidence.

🔐 Secure Your VPS Like a Pro: 6 Simple Firewall Rules That Block 90% of Attacks

Running a VPS gives you full control — but it also comes with responsibility. Whether you’re hosting with a budget VPS or a high-performance Ryzen VDS from Hosteons, security should always be a top priority.

Automated bots and malicious actors are constantly scanning servers looking for open doors. The good news? With just a few simple firewall rules, you can block 90% or more of common attacks — no advanced security knowledge needed.


🚧 Step 1: Deny All by Default

Your firewall should start from a “zero trust” position. Block all incoming traffic unless explicitly allowed.

iptables -P INPUT DROP
iptables -P FORWARD DROP
iptables -P OUTPUT ACCEPT

This is the safest starting point for VPS security.


✅ Step 2: Open Only the Ports You Need

For most users, these are the essential services:

iptables -A INPUT -p tcp --dport 22 -j ACCEPT   # SSH
iptables -A INPUT -p tcp --dport 80 -j ACCEPT   # HTTP
iptables -A INPUT -p tcp --dport 443 -j ACCEPT  # HTTPS

If you’re using a custom SSH port, be sure to update that here.


🛡️ Step 3: Rate-Limit SSH to Stop Brute-Force Attacks

SSH is the most frequently targeted service. Add a rate-limiting rule to block repeated login attempts:

iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --set
iptables -A INPUT -p tcp --dport 22 -m state --state NEW -m recent --update --seconds 60 --hitcount 3 -j DROP

This prevents bots from guessing passwords through brute force.


🧼 Step 4: Drop Invalid or Malicious Packets

Invalid packets are often used in scanning or attack attempts. Drop them:

iptables -A INPUT -m state --state INVALID -j DROP

This helps prevent certain types of kernel-level exploits and misbehavior.


🔁 Step 5: Allow Loopback and Established Connections

Let your server communicate with itself and continue existing sessions:

iptables -A INPUT -i lo -j ACCEPT
iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT

Without these, things like internal services and return traffic might break.


👀 Step 6: (Optional) Block Ping (ICMP)

Ping isn’t harmful by itself, but attackers use it to detect live servers. You can hide yours:

iptables -A INPUT -p icmp --icmp-type echo-request -j DROP

Note: avoid this if you use ping-based monitoring tools.


💡 Bonus: Use CSF for Easier Firewall Management

Not comfortable with command-line tools? Hosteons VPS plans fully support CSF (ConfigServer Security & Firewall)— a beginner-friendly, feature-rich firewall system with:

  • Easy interface via DirectAdmin
  • Built-in brute-force detection
  • Country-level blocking
  • Port scan detection
  • Daily logs and alerts

Perfect for users who want simplicity without sacrificing power.


🔄 Don’t Forget to Save Your Rules

After setting your rules, make sure they persist after a reboot.

On Ubuntu/Debian:

iptables-save > /etc/iptables/rules.v4

On CentOS/RHEL:

Use iptables-save along with persistent packages, or configure firewalld.


🔐 VPS Security Starts with You

Whether you’re running a personal blog, game server, or production site on a VPS from Hosteons, implementing basic firewall rules should be your first line of defense.

These 6 rules are easy to set up and highly effective. For extra protection, consider:

  • Enabling fail2ban
  • Using SSH keys instead of passwords
  • Running regular security updates

At Hosteons, we offer high-performance, SSD-powered KVM VPS and Ryzen VDS backed by robust network security and full root access — so you’re always in control.

🔒 Ready to launch your secure VPS?

👉 Explore our VPS plans now

💡 Self-Hosting vs SaaS: Why Developers Are Moving Back to VPS

In recent years, Software as a Service (SaaS) has dominated how we consume tools — from CRMs to project managers and even basic email. But in a surprising twist, developers are increasingly ditching SaaS in favor of good old-fashioned self-hosted applications on VPS (Virtual Private Servers).

At HostEONS, we’re seeing a growing wave of developers deploying self-hosted solutions like Nextcloud, Ghost, Outline, Forgejo, Matomo, and more. Here’s why.


🏗️ The SaaS Problem: Convenience with a Cost

SaaS makes it easy to get started — no server configs, no deployment — just log in and go. But that simplicity comes with hidden tradeoffs:

  • 💰 High monthly fees
  • 🔒 Limited control over data
  • 📦 Feature gating and vendor lock-in
  • 📉 Performance throttling on lower-tier plans
  • 🔕 No control over updates or platform decisions

SaaS is convenient, but you’re renting access, not owning your workflow.


🔁 The Shift: Developers Reclaim Control with Self-Hosting

Today’s developers are tech-savvy and privacy-conscious. Many are turning to VPS-powered self-hosting to take back control — and not just for cost savings.

Here’s why self-hosting is making a comeback:


✅ 1. Full Data Ownership

Self-hosting means your data stays on your terms — not in some multi-tenant cloud environment. Great for:

  • GDPR-conscious projects
  • Security-focused devs
  • Auditable and transparent operations

✅ 2. One-Time Costs, Not Monthly Drain

Most SaaS tools start cheap but scale poorly. Self-hosting on a VPS is:

  • Cost-effective
  • Predictable
  • Scalable without high license jumps

You pay for what you use — not for every user or feature toggle.


✅ 3. Customizability

Open-source, self-hosted tools are often highly customizable. Developers can:

  • Change UI
  • Extend functionality
  • Connect to internal systems without API limits

Try doing that on a closed SaaS dashboard.


✅ 4. Learning and Empowerment

Self-hosting helps devs:

  • Improve their sysadmin skills
  • Master Docker, NGINX, systemd, backups
  • Build portable infrastructure knowledge

Perfect for freelancers, devops engineers, and indie hackers.


✅ 5. Tool Independence

SaaS services can get acquired, shut down, or pivot. With self-hosting:

  • You’re in control of updates and versioning
  • You’re not forced into UI overhauls or “enterprise upgrades”
  • You can run the exact version you want — forever

🧰 What Developers Are Hosting on VPS

Some popular self-hosted apps we’ve seen deployed on HostEONS VPS plans include:

  • 🚀 Nextcloud (cloud storage & collaboration)
  • 📝 Ghost (blog/CMS)
  • 🧠 Outline or Logseq (internal wikis)
  • 📈 Matomo (privacy-first analytics)
  • 📦 Forgejo / Gitea (self-hosted Git platforms)
  • 💬 Rocket.Chat / Mattermost (chat servers)
  • 📂 FileRun or Seafile (file sharing)
  • 🌍 OpenVPN / WireGuard (self-hosted VPNs)

Need inspiration? We even wrote a guide on How to Install WordPress on a VPS


🖥️ Why HostEONS for Self-Hosting?

We make it easy for developers to self-host without hassle:

✅ KVM VPS with full root access

✅ Free snapshots & backups

✅ Free Blesta license

✅ 1 Gbps (or 10 Gbps for VDS) port speeds

✅ Locations across the US & EU

✅ Flexible payment options — including crypto, Alipay CN, and local gateways

✅ Affordable yearly plans (starting from $17.99/year)

👉 Explore our VPS plans


🧭 Conclusion

SaaS still has its place, but developers are increasingly realizing the power, control, and freedom that comes with self-hosting on a VPS. It’s not just a technical decision — it’s a philosophy of ownership over access.

At HostEONS, we’re proud to power that movement.

⚖️ WHMCS vs Blesta: Which Is Right for Your Hosting Business?

If you’re starting a hosting business or scaling your existing infrastructure, choosing the right billing and automation platform is crucial. Two of the most recognized names in this space are WHMCS and Blesta.

At HostEONS, we support both — and even offer a free Blesta license with all of our VPS, VDS, shared, and reseller hosting plans. But which one is right for you?

Let’s break it down.


🧾 What Are WHMCS and Blesta?

Both WHMCS (WebHost Manager Complete Solution) and Blesta are billing and automation systems designed specifically for web hosting providers. They handle:

  • Customer management
  • Service provisioning (like VPS, shared hosting, domains)
  • Billing and invoicing
  • Support ticketing
  • Integrations with control panels like DirectAdmin, cPanel, Virtualizor, etc.

⚙️ WHMCS – The Industry Standard

Pros:

  • ✅ Huge market share, widely adopted
  • ✅ Vast number of modules and integrations
  • ✅ Polished UI and active community
  • ✅ Compatible with nearly every major registrar and control panel

Cons:

  • ❌ Expensive licensing (monthly, based on client count)
  • ❌ Closed-source — limited customization
  • ❌ Heavy resource usage on large setups
  • ❌ History of price hikes and corporate changes (now owned by WebPros)

Best for:

Established businesses looking for full ecosystem compatibility and broad plugin support.


🔧 Blesta – Clean, Developer-Friendly & Cost-Effective

Pros:

  • ✅ Developer-friendly: Clean, modular, and open codebase
  • ✅ Affordable & transparent pricing
  • ✅ Lifetime license options available
  • ✅ Great support and community
  • ✅ Lightweight and resource-efficient
  • ✅ Native multi-company support

Cons:

  • ❌ Smaller 3rd-party plugin ecosystem compared to WHMCS
  • ❌ Some advanced features require custom development or third-party modules

Best for:

Startups, developers, and privacy-conscious users looking for full control and lower costs.


🎁 Why We Recommend Blesta for New Hosts

At HostEONS, we strongly believe in empowering our customers. That’s why we offer a 100% FREE Blesta licensewith every hosting package — including:

  • ✅ VPS Hosting
  • ✅ VDS Plans
  • ✅ Shared & Reseller Web Hosting

You get a powerful, professional billing system without any added cost — perfect for launching or streamlining your business.


🧐 So, Which Should You Choose?

FeatureWHMCSBlesta
PricingHigher, per-client tieredLower, flat or lifetime
CustomizationLimited (closed source)Extensive (open source)
Community ModulesVery largeGrowing, smaller ecosystem
PerformanceModerate to heavyLightweight and efficient
SupportExtensive (official + forums)Direct developer involvement
Learning CurveBeginner-friendlySlightly technical

If you’re running a large business with multiple automation needs and require mass compatibility — WHMCS might suit you better.

But if you want a free, powerful, and customizable system to get started or keep costs down — Blesta is an excellent choice, especially with our bundled license offer.


🚀 Start Smart with HostEONS + Blesta

Every hosting service from HostEONS comes with:

  • 🆓 Free Blesta license
  • ⚙️ Powerful KVM VPS & VDS plans
  • 🌍 Global locations (US & EU)
  • 💾 NVMe Storage, snapshots & backups
  • 💳 Flexible payment methods (Credit Card, PayPal, Crypto, Alipay CN, and more)

👉 Browse Our Hosting Plans