Skip to content

Instantly share code, notes, and snippets.

View bobby-tablez's full-sized avatar

Bobby-Tablez bobby-tablez

View GitHub Profile
@bobby-tablez
bobby-tablez / DEFCON_32_SSIDs.txt
Created August 14, 2024 18:09
A list of all gathered SSID's from the DEF CON 32 conference
# This list contains all gathered SSIDs from the DEF CON converence from Aug 8-11.
# These were gathered via a HAK5 Wifi Pineapple MK7 (2796 SSIDs in total)
#Contabilidad
#FreeStationWiFi
#Latomatina
#Moynihan-PublicWiFi
#MyBWI-Fi
#SFO FREE WIFI
#Super8
@api0cradle
api0cradle / check_vulnerabledrivers.ps1
Last active August 18, 2025 09:56
A quick script to check for vulnerable drivers. Compares drivers on system with list from loldrivers.io
# 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
$jsonString = $web_client.DownloadString("https://www.loldrivers.io/api/drivers.json")
$jsonString = $jsonString -replace '"INIT"','"init"'
$loldrivers = $jsonString | ConvertFrom-Json
Write-output("Checking {0} drivers in C:\windows\system32\drivers against loldrivers.io json file" -f $drivers.Count)