Spaces:
Paused
Paused
File size: 1,600 Bytes
529090e | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | export type PublicSource = {
name: string;
origin: string;
type: 'rss' | 'html' | 'api';
url: string;
keywords: string[];
tags: string[];
};
export const publicSources: PublicSource[] = [
{
name: 'Folketinget-Cyber-IT',
origin: 'ft.dk',
type: 'html',
url: 'https://www.ft.dk/Samling/aktuelt.aspx',
keywords: ['cyber', 'it', 'cloud', 'AI', 'digitalisering', 'GDPR', 'NIS2'],
tags: ['Public', 'Policy', 'DK'],
},
{
name: 'CFCS-Threats',
origin: 'cfcs.dk',
type: 'html',
url: 'https://cfcs.dk/',
keywords: ['trussel', 'cyber', 'sikkerhed'],
tags: ['Public', 'Threat', 'DK'],
},
{
name: 'Digitaliseringsstyrelsen-Guides',
origin: 'digst.dk',
type: 'html',
url: 'https://www.digst.dk/',
keywords: ['cloud', 'AI', 'it-styring', 'offentlig it'],
tags: ['Public', 'Guidance', 'DK'],
},
{
name: 'Datatilsynet-Afgørelser',
origin: 'datatilsynet.dk',
type: 'html',
url: 'https://www.datatilsynet.dk/afgoerelser',
keywords: ['GDPR', 'persondata', 'cloud'],
tags: ['Public', 'Policy', 'DK'],
},
{
name: 'ENISA-Threat-Landscape',
origin: 'enisa.europa.eu',
type: 'html',
url: 'https://www.enisa.europa.eu/publications',
keywords: ['threat', 'cyber', 'nis2', 'cloud'],
tags: ['Public', 'Threat', 'EU'],
},
{
name: 'CISA-KEV',
origin: 'cisa.gov',
type: 'api',
url: 'https://www.cisa.gov/sites/default/files/feeds/known_exploited_vulnerabilities.json',
keywords: ['cve', 'kev', 'vulnerability'],
tags: ['Public', 'Threat', 'US'],
}
];
|