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 July 28, 2024 20:10
Get CPU Temperature With PowerShell
# Please note that this is quite old at this point and may or may not work for you. I leave it here for historical purposes
# and just in case it can help someone. I think I may have been using Windows 7 when I wrote this.
function Get-Temperature {
$t = Get-WmiObject MSAcpi_ThermalZoneTemperature -Namespace "root/wmi"
$currentTempKelvin = $t.CurrentTemperature / 10
$currentTempCelsius = $currentTempKelvin - 273.15
$currentTempFahrenheit = (9/5) * $currentTempCelsius + 32