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

推荐订阅源

博客园 - 三生石上(FineUI控件)
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
月光博客
月光博客
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
爱范儿
爱范儿
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园_首页
雷峰网
雷峰网
量子位
有赞技术团队
有赞技术团队
博客园 - 叶小钗
博客园 - 聂微东
V
V2EX
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
博客园 - 司徒正美
小众软件
小众软件
The Cloudflare Blog
阮一峰的网络日志
阮一峰的网络日志
Apple Machine Learning Research
Apple Machine Learning Research
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理

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
From Source Control to Supplier Control: Building TPRM Th...
Massimiliano B. · 2026-06-27 · via DEV Community

If you're coming from engineering like I was, Third-Party Risk Management feels weirdly... analog at first. No version control, no CI/CD pipelines, no unit tests for vendor compliance. Just spreadsheets, PDFs, and hope.

But here's the thing: after debugging race conditions and production outages, vendor management starts looking familiar. You're dealing with dependencies again—just ones that come with legal contracts instead of package.json files.

The TPRM Workflow (Programmer Edition)

Phase 1: Dependency Scanning = Discovery

In code, npm audit finds vulnerable packages. In enterprises? Procurement databases plus IT asset inventories.

Two problems emerged in my initial review:

  1. Shadow procurement: Teams buying SaaS without telling anyone
  2. Orphaned integrations: APIs still active after projects sunset

The fix wasn't policy—it was visibility. Start mapping suppliers to applications, then application to data classification. If you don't know what data a vendor can touch, you can't assess their risk level properly.

Phase 2: Risk Grading = Severity Labels

I mapped tiers to something developers get intuitively: severity levels.

Tier Equivalent Criteria Response Time Target
1 Critical Direct env access / PII / Mission-critical 48 hours
2 High Non-sensitive business data 2 weeks
3 Low Everything else Quarterly check-in

Why this matters: triage discipline. Engineers don't treat INFO alerts like SEV-1 outages. Neither should you treat a catering vendor the same as your primary cloud provider.

Phase 3: Questionnaire Design = Interface Contracts

This is where most TPRM implementations fail. Generic questions return generic answers. Here's what shifted my thinking:

Instead of "Do you encrypt data?", ask:

  • What encryption algorithm and key length?
  • At-rest vs. in-transit coverage %?
  • Who manages keys (you or us)?

It's the difference between a boolean API response and structured JSON payloads. You need machine-readable evidence, not marketing copy.

Map questions to frameworks, yes—but frame them around where the vendor lives and operates. SOC 2 for US companies, ISO 27001 for global, GDPR-specific clauses for EU data handlers.

Phase 4: Evidence Validation = Pen Testing Vendors

Anyone can claim PCI-DSS compliance. Not everyone shows the attestation letter dated within last 90 days. Or proves MFA enforcement across admin accounts. Build evidence expectations upfront so vendors self-report correctly before the first email ping-pong cycle.

What gets verified:

  • Audit reports (current edition)
  • Certifications (active status)
  • Insurance coverage limits
  • Incident response playbooks (actual documents, not summaries)

When responses lag or seem incomplete, loop your security engineers early. Their threat modeling skills surface risks HR/legal miss entirely.

Phase 5: Remediation Planning = Post-Mortems

Every gap identified creates a ticket - with two assignees (vendor owner AND internal stakeholder). Track timelines. Follow escalations. Close loops publicly. Treat this like incident response documentation, because effectively, a breach via vendor IS an incident you didn't trigger internally.

Where Automation Fits (Because It Does)

Coming from development, I kept spotting redundancy patterns:

Manual discovery → Integrate Procurement + IAM logs daily

Repeated assessments → Template repositories per framework

Evidence chasing → Automated reminder workflows with SLA clocks

Risk scoring → Weighted algorithms based on data sensitivity × exposure vector

Tools exist, sure—but custom solutions beat bloated suites if your org size fits. Think Python scripts querying Google Workspace inventory, pulling vendor contacts via Procurement API, outputting CSV risk matrices ready for leadership decks.

Final Thoughts

Security careers don't always look linear. Some of the best vulnerability hunters started running sales ops. Best pentesters came from customer support desks. Understanding how organizations break—from inside product teams AND procurement processes—makes you dangerous to attackers.

If you're making the jump from engineering to GRC: bring that builder mindset. Automate where others accept friction. Challenge assumptions when "we've always done it this way" meets actual risk metrics. Document everything because institutional memory expires faster than session tokens.

Welcome to the other side of the stack. We could use more of your brains.