惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

腾讯CDC
aimingoo的专栏
aimingoo的专栏
S
SegmentFault 最新的问题
A
About on SuperTechFans
Engineering at Meta
Engineering at Meta
宝玉的分享
宝玉的分享
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 叶小钗
WordPress大学
WordPress大学
N
Netflix TechBlog - Medium
MyScale Blog
MyScale Blog
Stack Overflow Blog
Stack Overflow Blog
Microsoft Azure Blog
Microsoft Azure Blog
博客园 - 聂微东
M
MIT News - Artificial intelligence
F
Fortinet All Blogs
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
Blog — PlanetScale
Blog — PlanetScale
T
Tailwind CSS Blog
Recent Announcements
Recent Announcements
Jina AI
Jina AI
大猫的无限游戏
大猫的无限游戏
Apple Machine Learning Research
Apple Machine Learning Research
J
Java Code Geeks

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
WordPress vs. Ghost: Why Automated Bot Attacks Are Making...
Frank Milvus · 2026-05-23 · via DEV Community

If you run a self-hosted website, your server logs probably look like a digital battleground. Every single day, thousands of automated bots crawl the internet looking for one specific target: WordPress.

If you check your server logs, you will often see lines exactly like these:

162.158.87.119:0 - "GET /wp-admin/install.php?step=1 HTTP/1.0" 404
2026-05-23 11:46:22,634 INFO [elliotsec.http] request_id=f76d4be342ef method=GET path=/wp-admin/install.php status=404 client=162.158.87.119 duration_ms=1.47

Even if you don't use WordPress, bots will relentlessly probe your server for folders like /wp-admin/ or /wp-login.php.

For a personal website or blog, this constant barrage raises a massive question: Is WordPress still worth the security headache, or is it time to switch to a modern, secure alternative like Ghost?

1. The Reality of WordPress Vulnerabilities

WordPress powers over 40% of all websites on the internet. Because it is so ubiquitous, it is the number one target for hackers. It isn't necessarily that the core WordPress code is inherently broken, but rather its ecosystem:

The Plugin Trap: Most WordPress sites rely on dozens of third-party plugins and themes. If just one developer forgets to patch a loophole, your entire site is compromised.

Legacy Code: WordPress has been around for over two decades. It carries a massive amount of old code to ensure backward compatibility, which inherently leaves a larger surface area for bugs and exploits.

2. How Automated Bot Scans Can Hack You Instantly

The logs you see above aren't human hackers sitting at a desk typing commands into your site. They are automated attack scripts (or "scanning bots") running 24/7.

[Attacker Botnet]

├─► Scans IP range for common paths (e.g., /wp-admin/install.php)

├─► Checks if page exists (Status 200) or is missing (Status 404)

└─► If found: Automatically injects known exploit code to take over the site

  1. Targeting: The bot crawls millions of IP addresses looking for standard WordPress paths (like /wp-admin/install.php or vulnerable plugin folders).

  2. Fingerprinting: If the server returns a 200 OK instead of a 404 Not Found, the bot knows it has found a WordPress site. It will then instantly check the site's source code to see what version it is running.

3.Automatic Execution: If your site is running an outdated version of WordPress or a plugin with a known vulnerability, the bot executes a pre-written script. Within seconds, it can inject malicious code, install a backdoor, steal data, or turn your server into a spam bot.

3. Why Ghost is Better for Personal Websites

If you just want a fast, clean, and highly secure personal website or blog, Ghost is fundamentally better designed for the modern web.

Here is why switching to Ghost eliminates most of the anxiety shown in your server logs:

A Near-Impenetrable Attack Surface

Unlike WordPress, Ghost does not use a massive network of unvetted, third-party PHP plugins to get basic functionality. Features like SEO optimization, newsletter distribution, membership management, and social sharing are built directly into the Ghost core by professional engineers. Fewer moving parts means fewer doors left open for hackers.

Characterisctics of ghost

Modern, Secure Technology Stack

WordPress runs on PHP, a language notoriously difficult to secure perfectly at scale. Ghost is built on Node.js and handles routing much more cleanly. Because automated scripts are overwhelmingly programmed to look for PHP vulnerabilities, Ghost sites completely bypass the vast majority of blind bot storms.

Lightweight and Fast

In your logs, you might notice your memory hovering around critical limits:

mem avail: 300 of 961 MiB (31.22%)

WordPress is incredibly resource-heavy. Database queries, heavy plugins, and bulky themes eat up RAM quickly, leaving your server sluggish or prone to crashing when bots hit it hard. Ghost is incredibly lightweight. It handles traffic spikes efficiently and uses a fraction of the system memory that a standard WordPress setup requires.
10$ VPS all what you need. I use kamatera.com

Summary: Making the Right Choice

WordPress is great if you are building a complex e-commerce store or a massive corporate directory that requires highly specific integrations.

But if your goal is to share your thoughts, build a portfolio, or publish articles securely without checking your server logs in fear every morning, Ghost wins by a landslide. It removes the background noise of internet bot attacks and lets you focus on what actually matters: writing.

For more insights on web development, security, and hosting tech, check out Gwing Articles.