
Security News
NIST Under Federal Audit for NVD Processing Backlog and Delays
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
github.com/cshep4/news-api
News feed service written in Go which can retrieve news articles from various providers for specified categories.
The REST API for the news retriever is described below.
BBC_URL=http://feeds.bbci.co.uk/news
SKY_URL=http://feeds.skynews.com/feeds
GET /
curl --location --request GET 'localhost:8080?provider=bbc&limit=56&offset=3'
{
"provider": "bbc",
"items": [
{
"category": "uk",
"provider": "bbc",
"title": "Covid vaccinations: Wales leads the UK on first vaccine dose rate",
"link": "https://www.bbc.co.uk/news/uk-wales-55855220",
"description": "More than 550,000 people in the top priority groups have been given first doses of Covid vaccines.",
"thumbnail": "https://news.bbcimg.co.uk/nol/shared/img/bbc_news_120x60.gif",
"pubDate": "2021-02-06T20:47:21Z"
}
],
"limit": 1
}
GET /{category}
curl --location --request GET 'localhost:8080/uk?provider=bbc&limit=56&offset=3'
{
"category": "uk",
"provider": "bbc",
"items": [
{
"category": "uk",
"provider": "bbc",
"title": "Covid vaccinations: Wales leads the UK on first vaccine dose rate",
"link": "https://www.bbc.co.uk/news/uk-wales-55855220",
"description": "More than 550,000 people in the top priority groups have been given first doses of Covid vaccines.",
"thumbnail": "https://news.bbcimg.co.uk/nol/shared/img/bbc_news_120x60.gif",
"pubDate": "2021-02-06T20:47:21Z"
}
],
"limit": 1
}
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
As vulnerability data bottlenecks grow, the federal government is formally investigating NIST’s handling of the National Vulnerability Database.
Research
Security News
Socket’s Threat Research Team has uncovered 60 npm packages using post-install scripts to silently exfiltrate hostnames, IP addresses, DNS servers, and user directories to a Discord-controlled endpoint.
Security News
TypeScript Native Previews offers a 10x faster Go-based compiler, now available on npm for public testing with early editor and language support.