NetExec/build_collector.py

92 lines
2.1 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import shutil
import subprocess
import sys
import time
from datetime import datetime
from pathlib import Path
from shiv.bootstrap import Environment
# from distutils.ccompiler import new_compiler
from shiv.builder import create_archive
from shiv.cli import __version__ as VERSION
2023-04-07 17:12:56 +00:00
def build_cme():
2021-03-08 20:14:35 +00:00
print("building CME")
2021-03-08 20:03:04 +00:00
try:
shutil.rmtree("bin")
shutil.rmtree("build")
except Exception as e:
2021-03-08 20:03:04 +00:00
pass
try:
2021-03-08 20:14:35 +00:00
print("remove useless files")
os.mkdir("build")
2020-09-11 20:56:27 +00:00
os.mkdir("bin")
shutil.copytree("cme", "build/cme")
2022-06-20 12:36:14 +00:00
2021-03-08 20:03:04 +00:00
except Exception as e:
print(e)
return
2020-09-20 14:51:23 +00:00
subprocess.run(
[sys.executable, "-m", "pip", "install", "-r", "requirements.txt" ,"-t", "build"],
2020-09-20 14:51:23 +00:00
check=True
)
#[shutil.rmtree(p) for p in Path("build").glob("**/__pycache__")]
[shutil.rmtree(p) for p in Path("build").glob("**/*.dist-info")]
env = Environment(
built_at=datetime.utcfromtimestamp(int(time.time())).strftime(
"%Y-%m-%d %H:%M:%S"
),
entry_point="cme.crackmapexec:main",
script=None,
compile_pyc=False,
extend_pythonpath=True,
shiv_version=VERSION,
)
create_archive(
[Path("build").absolute()],
Path("bin/cme"),
"/usr/bin/env -S python -sE",
"_bootstrap:bootstrap",
env,
True,
)
def build_cmedb():
2021-03-08 20:14:35 +00:00
print("building CMEDB")
env = Environment(
built_at=datetime.utcfromtimestamp(int(time.time())).strftime(
"%Y-%m-%d %H:%M:%S"
),
entry_point="cme.cmedb:main",
script=None,
compile_pyc=False,
extend_pythonpath=True,
shiv_version=VERSION,
)
create_archive(
[Path("build").absolute()],
Path("bin/cmedb"),
"/usr/bin/env -S python -sE",
"_bootstrap:bootstrap",
env,
True,
)
if __name__ == "__main__":
try:
build_cme()
2021-03-08 20:14:35 +00:00
build_cmedb()
except:
pass
finally:
2020-09-11 20:56:27 +00:00
shutil.rmtree("build")