Skip to content

Instantly share code, notes, and snippets.

@wznpp1
wznpp1 / Scanner.cpp
Created November 28, 2024 06:09 — forked from koemeet/Scanner.cpp
Dynamic recursive pointer scanner
#include "Scanner.h"
#include <sstream>
#include <fstream>
Scanner::Scanner(uintptr_t base, char* outputFile) : base(base), outputFile(outputFile)
{
}
void Scanner::scan(char *compareScan)