Skip to content

Instantly share code, notes, and snippets.

View reveng007's full-sized avatar
💩
Trying to code!

Soumyani1 reveng007

💩
Trying to code!
View GitHub Profile
@reveng007
reveng007 / shellcodeLoader.c
Created December 5, 2025 06:00 — forked from mgeeky/shellcodeLoader.c
Simplest windows shellcode loader there can be, purely in C
#include <stdio.h>
#include <stdlib.h>
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
int main(int argc, char **argv) {
if (argc != 2) {
printf("Usage: ./shellcodeLoader <shellcode64>\n");
return 1;
}
@reveng007
reveng007 / cheat_sheet.txt
Created March 17, 2021 17:45
GDB cheat sheet
GDB commands by function - simple guide
---------------------------------------
More important commands have a (*) by them.
Startup
% gdb -help print startup help, show switches
*% gdb object normal debug
*% gdb object core core debug (must specify core file)
%% gdb object pid attach to running process
% gdb use file command to load object