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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享
博客园 - 【当耐特】
博客园 - 司徒正美
L
LangChain Blog
有赞技术团队
有赞技术团队
大猫的无限游戏
大猫的无限游戏
Stack Overflow Blog
Stack Overflow Blog
Engineering at Meta
Engineering at Meta
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
I
InfoQ
博客园 - 叶小钗
H
Hackread – Cybersecurity News, Data Breaches, AI and More
J
Java Code Geeks
月光博客
月光博客
量子位
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
Last Week in AI
Last Week in AI
人人都是产品经理
人人都是产品经理
Google DeepMind News
Google DeepMind News
云风的 BLOG
云风的 BLOG
D
DataBreaches.Net

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
Stop Using HTTPS for Git — Switch to SSH Before AI Agents...
Ken Imoto · 2026-05-07 · via DEV Community

"Your git pull is going to break."

I stored business documents — PDFs, images, spreadsheets, about 110 files totaling 35MB — in a private GitHub repo. The plan was simple: version-control everything, let AI agents access it from any machine.

Then I ran git pull from a second PC:

error: RPC failed; curl 56 GnuTLS recv error (-54)
fatal: early EOF
fatal: fetch-pack: invalid index-pack output

Enter fullscreen mode Exit fullscreen mode

Clone didn't work either. My repository was unreachable. The cause? HTTPS and its dependency on GnuTLS.

Why HTTPS Breaks Under Load

When you run git clone https://..., here's the stack:

git clone (HTTPS)
  └→ git-remote-https
       └→ libcurl (HTTP library)
            └→ libgnutls (SSL/TLS)  ← breaks here
                 └→ TCP → GitHub

Enter fullscreen mode Exit fullscreen mode

Ubuntu's default Git uses GnuTLS for HTTPS. GnuTLS has known issues with large transfers — a combination of buffer size limits, version-specific bugs, and MTU mismatches (especially on WSL2) can cause the TLS connection to drop mid-transfer.

You can verify your Git uses GnuTLS:

ldd /usr/lib/git-core/git-remote-https | grep tls
# libgnutls.so.30 => /lib/x86_64-linux-gnu/libgnutls.so.30

Enter fullscreen mode Exit fullscreen mode

There are workarounds: increase http.postBuffer, upgrade GnuTLS, or recompile Git with OpenSSL. But these are band-aids on a deeper problem. Even if you fix the transfer issue, HTTPS still has an authentication problem that matters more in the age of AI agents.

The HTTPS Authentication Problem

Beyond the GnuTLS issue, HTTPS has a credential management problem:

Method Risk
Typing password every time Friction, people cache it unsafely
credential.helper store Plaintext file on disk
credential.helper cache Memory-resident, expires but still exposed
Personal Access Token (PAT) Token in shell history, .netrc, or env vars

With AI agents running on your machine, every one of these is an attack surface. An agent that can execute shell commands can read .git-credentials, shell history, or environment variables.

Why SSH Is Different

SSH uses public-key cryptography. Your private key never leaves your machine, and the authentication doesn't involve tokens or passwords in transit.

git clone (SSH)
  └→ ssh (OpenSSH client)
       └→ libcrypto (OpenSSL)  ← battle-tested
            └→ TCP → GitHub

Enter fullscreen mode Exit fullscreen mode

The critical difference:

Aspect HTTPS SSH
Auth method Token/password sent per request Public key challenge-response
Secret exposure Token stored on disk or in memory Private key stays in ~/.ssh/
Binary file transfer GnuTLS breaks on large repos OpenSSL handles it fine
AI agent risk Token readable via printenv or file read Key encrypted with passphrase + ssh-agent socket

Setup: 5-Minute SSH Migration

1. Generate a key

ssh-keygen -t ed25519 -C "your_email@example.com"
# Accept default path, set a passphrase

Enter fullscreen mode Exit fullscreen mode

2. Add to ssh-agent

eval "$(ssh-agent -s)"
ssh-add ~/.ssh/id_ed25519

Enter fullscreen mode Exit fullscreen mode

3. Register on GitHub

cat ~/.ssh/id_ed25519.pub
# Copy the output → GitHub → Settings → SSH Keys → New

Enter fullscreen mode Exit fullscreen mode

4. Switch existing repos

git remote set-url origin git@github.com:USER/REPO.git

Enter fullscreen mode Exit fullscreen mode

5. Verify

ssh -T git@github.com
# "Hi USER! You've successfully authenticated"

Enter fullscreen mode Exit fullscreen mode

WSL2 Users: One Extra Step

If you're on WSL2, the SSH agent doesn't persist across sessions. Add this to your ~/.bashrc:

if [ -z "$SSH_AUTH_SOCK" ]; then
    eval "$(ssh-agent -s)" > /dev/null 2>&1
    ssh-add ~/.ssh/id_ed25519 2>/dev/null
fi

Enter fullscreen mode Exit fullscreen mode

The AI Agent Angle

This isn't just about convenience. When AI agents like Claude Code or Cursor manage your repos, they execute git commands on your behalf. With HTTPS:

  • The agent needs access to your token
  • The token is in an environment variable or credential file
  • A prompt injection attack can read that token

With SSH (passphrase + ssh-agent):

  • The agent uses the ssh-agent socket
  • The private key file exists on disk, but is encrypted with your passphrase
  • A compromised agent could attempt cat ~/.ssh/id_ed25519, but gets an encrypted blob — not a usable key
  • The agent can use the key through the socket for the current session, but can't extract it

Important: this only works if you set a passphrase during ssh-keygen. Without a passphrase, the private key is readable plaintext. SSH without a passphrase is better than HTTPS tokens, but not by as much as you'd think.

SSH doesn't make you invulnerable, but it reduces the blast radius significantly.


If you're building AI-native workflows and want to understand the full security picture — from CLAUDE.md defense to credential isolation — I cover the patterns in my book:

📖 Practical Claude Code: Context Engineering for Modern Development