mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
0b936def23
- Passing --ntds will automatically use the drsuapi method (DCSync) - Initial implementation of the SSH protocol and the mimipenguin module (This is very much still not finished, lots of stuff missing) - Added check to make sure existing config file is in the 4.x format - Added splinter and paramiko to dep requirements - Updated Impacket to latest commit - HTTP protocol now also returns server version in output
7 lines
162 B
Python
7 lines
162 B
Python
import os
|
|
import cme
|
|
|
|
def get_script(path):
|
|
with open(os.path.join(os.path.dirname(cme.__file__), 'data', path), 'r') as script:
|
|
return script.read()
|