FlareStart
HomeNewsHow ToSources
FlareStart

Where developers start their day. All the tech news & tutorials that matter, in one place.

Quick Links

  • Home
  • News
  • Tutorials
  • Sources
  • Privacy Policy

Connect

© 2026 FlareStart. All rights reserved.

Back to articles
GitHub Has a Secret Security API — Scan Any Repo for Vulnerabilities in 30 Seconds
How-ToProgramming Languages

GitHub Has a Secret Security API — Scan Any Repo for Vulnerabilities in 30 Seconds

via Dev.to PythonAlex Spinov2h ago

Most developers use GitHub for code. Almost nobody knows it has a free security scanning API that checks your dependencies for known vulnerabilities — in real time. I discovered this while investigating a production incident at 2 AM. A dependency we'd been using for 18 months had a critical RCE vulnerability. GitHub's API had flagged it 4 months ago . We just never checked. Here's how to never make that mistake again. The API Nobody Talks About GitHub's Advisory Database API gives you access to the same vulnerability data that powers Dependabot alerts — but programmatically. import requests def check_repo_vulnerabilities ( owner , repo , token ): """ Query GitHub ' s GraphQL API for security vulnerabilities in a repository ' s dependency graph. """ query = """ query($owner: String!, $repo: String!) { repository(owner: $owner, name: $repo) { vulnerabilityAlerts(first: 100) { nodes { securityAdvisory { summary severity publishedAt references { url } } vulnerableManifestPath dismissReason

Continue reading on Dev.to Python

Opens in a new tab

Read Full Article
0 views

Related Articles

IntentCAD v0.8.0 — Thirteen EPICs, One Day
How-To

IntentCAD v0.8.0 — Thirteen EPICs, One Day

Dev.to • 1h ago

A Growing Position Doesn't Always Mean Fresh Buying — Here's How to Tell
How-To

A Growing Position Doesn't Always Mean Fresh Buying — Here's How to Tell

Dev.to Beginners • 2h ago

Tutorials Are Lying to You Here’s What Actually Works ?
How-To

Tutorials Are Lying to You Here’s What Actually Works ?

Medium Programming • 5h ago

Flutter Mistakes That Make Apps Slow ⚡
How-To

Flutter Mistakes That Make Apps Slow ⚡

Medium Programming • 5h ago

Welcome Thread - v370
How-To

Welcome Thread - v370

Dev.to • 5h ago

Discover More Articles