Skip to content

Instantly share code, notes, and snippets.

@jfmaes
jfmaes / jumps.txt
Created October 19, 2022 14:35
dont even ask.
ntdll.dll
DbgQueryDebugFilterState from ntdll.dll
DbgQueryDebugFilterState from ntdll.dll
DbgQueryDebugFilterState from ntdll.dll
DbgSetDebugFilterState from ntdll.dll
EtwpGetCpuSpeed from ntdll.dll
LdrAccessResource from ntdll.dll
LdrCallEnclave from ntdll.dll
LdrProcessRelocationBlockEx from ntdll.dll
NtQuerySystemTime from ntdll.dll
@jfmaes
jfmaes / functionextract.py
Created April 26, 2023 07:35
MSDN function definition scraper. requires chromium driver.
import argparse
import selenium as se
from selenium import webdriver
from bs4 import BeautifulSoup
import time
def main():
parser = argparse.ArgumentParser(description = 'extract function definitions from MSDN')
parser.add_argument('--methods', help='list of methods',required=True)
args = parser.parse_args()
#methods_list = []