This file contains 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 os.path | |
import pefile | |
print('#pragma once') | |
target_dll = r'target.dll' | |
pe = pefile.PE(target_dll) | |
for export in pe.DIRECTORY_ENTRY_EXPORT.symbols: | |
if export.name: | |
name = export.name.decode() |
With kerbrute.py:
python kerbrute.py -domain <domain_name> -users <users_file> -passwords <passwords_file> -outputfile <output_file>
With Rubeus version with brute module: