# Django GHSA and CVE Advisory Extractor

**Use case:** 

Extract GitHub Security Advisories affecting Django with CVE, GHSA, severity, patched versions, and reference URLs.

## Input

```json
{
  "maxItems": 50,
  "ecosystems": [
    "npm"
  ],
  "severities": [
    "critical",
    "high",
    "medium"
  ],
  "affectedPackage": "django",
  "includeWithdrawn": false
}
```

## Output

```json
{
  "ghsaId": {
    "label": "GHSA ID",
    "format": "text"
  },
  "cveId": {
    "label": "CVE ID",
    "format": "text"
  },
  "severity": {
    "label": "Severity",
    "format": "text"
  },
  "summary": {
    "label": "Summary",
    "format": "text"
  },
  "affectedEcosystems": {
    "label": "Ecosystems",
    "format": "text"
  },
  "affectedPackages": {
    "label": "Packages",
    "format": "text"
  },
  "publishedAt": {
    "label": "Published",
    "format": "date"
  },
  "updatedAt": {
    "label": "Updated",
    "format": "date"
  },
  "withdrawnAt": {
    "label": "Withdrawn",
    "format": "date"
  },
  "htmlUrl": {
    "label": "GitHub URL",
    "format": "link"
  },
  "vulnerabilities": {
    "label": "Vulnerabilities"
  },
  "cvss": {
    "label": "CVSS"
  },
  "cwes": {
    "label": "CWEs",
    "format": "text"
  },
  "identifiers": {
    "label": "Identifiers"
  },
  "references": {
    "label": "References",
    "format": "text"
  },
  "url": {
    "label": "API URL",
    "format": "link"
  },
  "description": {
    "label": "Description",
    "format": "text"
  },
  "scrapedAt": {
    "label": "Scraped at",
    "format": "date"
  }
}
```

## About this Actor

This example demonstrates how to use [GitHub Security Advisories Scraper](https://apify.com/automation-lab/github-security-advisories-scraper) with a specific input configuration. Visit the [Actor detail page](https://apify.com/automation-lab/github-security-advisories-scraper) to learn more, explore other use cases, and run it yourself.