Skip to content

Instantly share code, notes, and snippets.

View dr4k0nia's full-sized avatar
🏴

drakonia dr4k0nia

🏴
View GitHub Profile
import "pe"
rule ms13_098 {
condition:
pe.is_dll() and filesize < 10MB and pe.data_directories[
pe.IMAGE_DIRECTORY_ENTRY_SECURITY].size > 0x8000
and (
(uint16be(pe.data_directories[pe.IMAGE_DIRECTORY_ENTRY_SECURITY].virtual_address+8) == 0x3082
and uint16be(pe.data_directories[pe.IMAGE_DIRECTORY_ENTRY_SECURITY].virtual_address+10) <
@AndrewMast
AndrewMast / disable_vanguard.vbs
Last active July 23, 2024 01:41
Commands to disable Riot Vanguard when you aren't playing Valorant
' Disables Vanguard from starting when you boot your computer
Call CreateObject("Shell.Application").ShellExecute("cmd.exe", "/c ""sc config vgc start= disabled & sc config vgk start= disabled""", "", "runas")