This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 = [] |
OlderNewer