Skip to content

Instantly share code, notes, and snippets.

@christian-taillon
Created February 12, 2024 04:14
Show Gist options
  • Save christian-taillon/00ac2eae8b14b070e646c5627144f161 to your computer and use it in GitHub Desktop.
Save christian-taillon/00ac2eae8b14b070e646c5627144f161 to your computer and use it in GitHub Desktop.
Current actions vCISO Get Cyber News Function
{
"openapi": "3.1.0",
"info": {
"title": "ZDNet | Zero Day RSS Feed",
"description": "Fetches the latest cybersecurity news from ZDNet's Zero Day blog.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://www.zdnet.com"
}
],
"paths": {
"/blog/security/rss.xml": {
"get": {
"description": "Get ZDNet | Zero Day RSS feed",
"operationId": "GetZDNetZeroDayFeed",
"deprecated": false
}
}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "The Hacker News RSS Feed",
"description": "Fetches the latest cybersecurity news from The Hacker News.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://thehackernews.com"
}
],
"paths": {
"/feeds/posts/default": {
"get": {
"description": "Get The Hacker News RSS feed",
"operationId": "GetTheHackerNewsFeed",
"deprecated": false
}
}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "Threatpost RSS Feed",
"description": "Fetches the latest cybersecurity news and analysis from Threatpost.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://threatpost.com"
}
],
"paths": {
"/feed/": {
"get": {
"description": "Get Threatpost RSS feed",
"operationId": "GetThreatpostFeed",
"deprecated": false
}
}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "SANS Internet Storm Center RSS Feed",
"description": "Fetches the daily cybersecurity threat level update from SANS Internet Storm Center.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://isc.sans.edu"
}
],
"paths": {
"/rssfeed_full.xml": {
"get": {
"description": "Get SANS Internet Storm Center RSS feed",
"operationId": "GetSANSSCFeed",
"deprecated": false
}
}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "BleepingComputer RSS Feed",
"description": "Fetches the latest cybersecurity news and information from BleepingComputer.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://www.bleepingcomputer.com"
}
],
"paths": {
"/feed/": {
"get": {
"description": "Get BleepingComputer RSS feed",
"operationId": "GetBleepingComputerFeed",
"deprecated": false
}
}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "Get RSS Feeds",
"description": "Retrieves RSS feeds from specified URLs.",
"version": "v1.0.0"
},
"servers": [
{
"url": "https://www.cisa.gov"
}
],
"paths": {
"/news.xml": {
"get": {
"description": "Get the latest news RSS feed",
"operationId": "GetNewsFeed",
"deprecated": false
}
},
"/cisa/blog.xml": {
"get": {
"description": "Get the latest blog RSS feed",
"operationId": "GetBlogFeed",
"deprecated": false
}
},
"/cybersecurity-advisories/all.xml": {
"get": {
"description": "Get the latest cybersecurity advisories RSS feed",
"operationId": "GetCybersecurityAdvisoriesFeed",
"deprecated": false
}
}
},
"components": {
"schemas": {}
}
},
{
"openapi": "3.1.0",
"info": {
"title": "Naked Security by Sophos RSS Feed",
"description": "Fetches the latest cybersecurity news and advice from Naked Security by Sophos.",
"version": "1.0.0"
},
"servers": [
{
"url": "https://nakedsecurity.sophos.com"
}
],
"paths": {
"/feed/": {
"get": {
"description": "Get Naked Security by Sophos RSS feed",
"operationId": "GetNakedSecurityFeed",
"deprecated": false
}
}
}
},
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment