Files
Pennyw0rth-NetExec/cme/helpers/bash.py
T
byt3bl33d3r 0b936def23 Takes care of issue #190 and #191, initial SSH protocol implementation
- 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
2017-07-09 23:44:58 -06:00

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()