In addition to the Advent of Cyber 2023 room
, we have an annex Side Quest task at our disposal.
Four rooms need to be completed to finish the Christmas
side quests challenge:
# Simple script to check drivers in C:\windows\system32\drivers against the loldrivers list | |
# Author: Oddvar Moe - @oddvar.moe | |
$drivers = get-childitem -Path c:\windows\system32\drivers | |
$web_client = new-object system.net.webclient | |
$loldrivers = $web_client.DownloadString(" https://www.loldrivers.io/api/drivers.json") | ConvertFrom-Json | |
Write-output("Checking {0} drivers in C:\windows\system32\drivers against loldrivers.io json file" -f $drivers.Count) | |
foreach ($lol in $loldrivers.KnownVulnerableSamples) | |
{ |
In addition to the Advent of Cyber 2023 room
, we have an annex Side Quest task at our disposal.
Four rooms need to be completed to finish the Christmas
side quests challenge: