Skip to content

Instantly share code, notes, and snippets.

View RaiDeiNz's full-sized avatar
🏴‍☠️
Yo, ho, haul together!

RaiD31n RaiDeiNz

🏴‍☠️
Yo, ho, haul together!
  • Tortuga
  • 50°58'38.7"N 100°30'29.8"E
  • X @raid31nz
View GitHub Profile
@blotus
blotus / log4j_exploitation_attempts_crowdsec.md
Last active December 29, 2023 12:24
IPs exploiting the log4j2 CVE-2021-44228 detected by the crowdsec community

This list is no longer updated, thus the information is no longer reliable.

You can see the latest version (from october 2022) here

@jeffa00
jeffa00 / Get-Temperature
Last active April 19, 2024 20:06
Get CPU Temperature With PowerShell
function Get-Temperature {
$t = Get-WmiObject MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
$currentTempKelvin = $t.CurrentTemperature / 10
$currentTempCelsius = $currentTempKelvin - 273.15
$currentTempFahrenheit = (9/5) * $currentTempCelsius + 32
return $currentTempCelsius.ToString() + " C : " + $currentTempFahrenheit.ToString() + " F : " + $currentTempKelvin + "K"
}