mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
10 lines
210 B
Python
10 lines
210 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
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()
|