# GitHub Vulnerability Feed Task

**Use case:** 

Build a GitHub vulnerability feed task for scheduled monitoring of recently updated public security advisories with structured dataset exports.

## Input

```json
{
  "target": "advisoryFeed",
  "classification": "any",
  "severity": "any",
  "ecosystem": "npm",
  "packageName": "lodash",
  "cwe": "CWE-79",
  "includeWithdrawn": false,
  "orderBy": "updatedDesc",
  "advisoryIds": [
    "GHSA-xxxx-xxxx-xxxx",
    "CVE-2024-12345"
  ],
  "maxResults": 10
}
```

## Output

```json
{
  "ghsaId": {
    "label": "GHSA ID",
    "format": "string"
  },
  "cveIds": {
    "label": "CVE IDs",
    "format": "array"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "classification": {
    "label": "Classification",
    "format": "string"
  },
  "severity": {
    "label": "Severity",
    "format": "string"
  },
  "url": {
    "label": "Advisory URL",
    "format": "string"
  },
  "apiUrl": {
    "label": "API URL",
    "format": "string"
  },
  "publishedAt": {
    "label": "Published at",
    "format": "string"
  },
  "updatedAt": {
    "label": "Updated at",
    "format": "string"
  },
  "withdrawnAt": {
    "label": "Withdrawn at",
    "format": "string"
  },
  "cvss.score": {
    "label": "CVSS score",
    "format": "number"
  },
  "cwes": {
    "label": "CWEs",
    "format": "array"
  },
  "affectedPackages": {
    "label": "Affected packages",
    "format": "array"
  }
}
```

## About this Actor

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