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

推荐订阅源

Apple Machine Learning Research
Apple Machine Learning Research
Google DeepMind News
Google DeepMind News
小众软件
小众软件
GbyAI
GbyAI
酷 壳 – CoolShell
酷 壳 – CoolShell
F
Fortinet All Blogs
博客园 - 三生石上(FineUI控件)
B
Blog
量子位
B
Blog RSS Feed
Vercel News
Vercel News
Blog — PlanetScale
Blog — PlanetScale
Last Week in AI
Last Week in AI
博客园 - 叶小钗
MongoDB | Blog
MongoDB | Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
爱范儿
爱范儿
Jina AI
Jina AI
C
Check Point Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
IT之家
IT之家
H
Hackread – Cybersecurity News, Data Breaches, AI and More
云风的 BLOG
云风的 BLOG

Hacker News

GitHub - SeanFDZ/macmind: Single-layer transformer in HyperTalk for the classic Macintosh Show HN: Agent-cache – Multi-tier LLM/tool/session caching for Valkey and Redis Bonsai 1-bit WebGPU - a Hugging Face Space by webml-community Moving a large-scale metrics pipeline from StatsD to OpenTelemetry / Prometheus GitHub - Nightmare-Eclipse/RedSun: The Red Sun vulnerability repository GitHub - SethPyle376/hiraeth: Local AWS emulator focused on fast integration testing, with SQS support, SQLite-backed state, and a debug-friendly web UI. GitHub - macOS26/Agent: Any AI, replaces Claude Code, Cursor, OpenClaw. Over 18 LLM providers (Claude, OpenAI, Gemini, Ollama, Zai, HF, Qwen) wired into a native Mac app that writes code, builds Xcode projects, bumps versions, manages git, automates Safari, use AppleScript, JS or Accessibility, extend Agent! w/ MCP Servers, run tasks from your iPhone via Messages. YouTube now lets you turn off Shorts I Made a Terminal Pager Burgers | マクドナルド公式 Commands — HackerNews CLI documentation ChatGPT for Excel PiCore - Raspberry Pi Port of Tiny Core Linux Live Nation illegally monopolized ticketing market, jury finds Google Broke Its Promise to Me. Now ICE Has My Data. Founding Engineer at Adaptional | Y Combinator CRISPR takes important step toward silencing Down syndrome’s extra chromosome GitHub - saffron-health/libretto: The AI toolkit for building reliable browser automations US v. Heppner (S.D.N.Y. 2026) no attorney-client privilege for AI chats [pdf] Retrofitting JIT Compilers into C Interpreters IPv6 – Google The Accursèd Alphabetical Clock Cybersecurity Looks Like Proof of Work Now Fragments: April 14 Cal.com Goes Closed Source: Why AI Security Is Forcing Our Decision | Cal.com - Scheduling Software for Online Bookings Laravel raised money and now injects ads directly into your agent When moving fast, talking is the first thing to break Too much Discussion of the XOR swap trick – Heather Cafe Introduction to Spherical Harmonics for Graphics Programmers The Grand Line
Who Is That Knocking At My (SSH) Door?
Andrew Stephens · 2026-04-28 · via Hacker News

Note: As I was writing this I became aware of an even better project covering much the same ground in a more detailed way - I Left Port 22 Open on the Internet for 54 Days by Arman Hossain is much more informative.

The server that runs this website is locked down pretty tightly. No extra services running, all ports firewalled except those absolutely required, and (perhaps most importantly) SSH is configured to disable password authentication. It is impossible for users to log on without the private key but that doesn't stop the script kiddies from trying.

A visual representation of sshd protecting port 22 from bots and viruses
A visual representation of sshd protecting port 22 from bots and viruses

Every server on the internet is constantly under attack by bots trying common username/passwords to gain access for nefarious ends. I got curious about what usernames the hackers were trying to use. After all, they wouldn't try them if they didn't occasionally work.

In the last 7 days there have been almost 500 attempts to log in - this would be many, many times higher but I aggressively fail2ban any IP address that fails more than a couple of times. Currently my fail2ban blocklist contains over 100 addresses.

Here are some of the notable usernames tried:

sheep (169 attempts) - this is actually somewhat clever, I assume that the script takes the first subdomain of whatever server it is trying to hit. It doesn't work with sheep.horse but wouldn't be a terrible place to start on app.example.com.

admin (52 attempts), user (20 attempts), test (7 attempts), guest (2) - the old standbys. I assume root would be even higher but I disable the root user entirely on my server so it doesn't show up on this list.

ubuntu (30 attempts) - I am actually running Ubuntu which they can probably see from the http headers so this isn't a terrible guess.

frappe (7), postgres (7), odoo (4), oracle (4), jenkins (2), apache (2), mysql (1) - these are all attacks on well-known enterprise software packages. Not a bad list if you are looking for badly installed software with weak passwords since people often quickly stand up such services for testing without much thought.

pi (2), orangepi (1) - there are probably a bunch of poorly configured raspberry Pi's making for easy, if low-powered pickings. It just goes to show that there is no minimum reward below which people will not bother to be dicks on the internet.

stephen, nina, lee, vincent, rico (1 each) - Damn it, guys. I've told you your passwords are too easy to guess, now you are all on some hacker list.

The moral of the story is to turn off password authentication if you can, always use a strong password even on test or throwaway services, and don't be shy about banning based on suspicious SSH authentication attempts using fail2ban or something similar.