mirror of
https://github.com/Pennyw0rth/NetExec
synced 2026-06-06 16:34:30 +00:00
220 lines
9.2 KiB
Python
Executable File
220 lines
9.2 KiB
Python
Executable File
# PYTHON_ARGCOMPLETE_OK
|
|
import sys
|
|
from nxc.helpers.logger import highlight
|
|
from nxc.helpers.misc import identify_target_file, display_modules
|
|
from nxc.parsers.ip import parse_targets
|
|
from nxc.parsers.nmap import parse_nmap_xml
|
|
from nxc.parsers.nessus import parse_nessus_file
|
|
from nxc.cli import gen_cli_args
|
|
from nxc.loaders.protocolloader import ProtocolLoader
|
|
from nxc.loaders.moduleloader import ModuleLoader
|
|
from nxc.first_run import first_run_setup
|
|
from nxc.paths import NXC_PATH, WORKSPACE_DIR
|
|
from nxc.console import nxc_console
|
|
from nxc.logger import nxc_logger
|
|
from nxc.config import nxc_config, nxc_workspace, config_log
|
|
from nxc.database import create_db_engine
|
|
from concurrent.futures import ThreadPoolExecutor, as_completed
|
|
import asyncio
|
|
from nxc.helpers import powershell
|
|
import shutil
|
|
import os
|
|
from os.path import exists
|
|
from os.path import join as path_join
|
|
from sys import exit
|
|
from rich.progress import Progress
|
|
import platform
|
|
if sys.stdout.encoding == "cp1252":
|
|
sys.stdout.reconfigure(encoding="utf-8")
|
|
|
|
# Increase file_limit to prevent error "Too many open files"
|
|
if platform.system() != "Windows":
|
|
import resource
|
|
|
|
file_limit = list(resource.getrlimit(resource.RLIMIT_NOFILE))
|
|
if file_limit[1] > 10000:
|
|
file_limit[0] = 10000
|
|
else:
|
|
file_limit[0] = file_limit[1]
|
|
file_limit = tuple(file_limit)
|
|
resource.setrlimit(resource.RLIMIT_NOFILE, file_limit)
|
|
|
|
|
|
async def start_run(protocol_obj, args, db, targets): # noqa: RUF029
|
|
futures = []
|
|
nxc_logger.debug("Creating ThreadPoolExecutor")
|
|
if args.no_progress or len(targets) == 1:
|
|
with ThreadPoolExecutor(max_workers=args.threads) as executor:
|
|
nxc_logger.debug(f"Creating thread for {protocol_obj}")
|
|
futures = [executor.submit(protocol_obj, args, db, target) for target in targets]
|
|
else:
|
|
with Progress(console=nxc_console) as progress, ThreadPoolExecutor(max_workers=args.threads) as executor:
|
|
current = 0
|
|
total = len(targets)
|
|
tasks = progress.add_task(
|
|
f"[green]Running nxc against {total} {'target' if total == 1 else 'targets'}",
|
|
total=total,
|
|
)
|
|
nxc_logger.debug(f"Creating thread for {protocol_obj}")
|
|
futures = [executor.submit(protocol_obj, args, db, target) for target in targets]
|
|
for _ in as_completed(futures):
|
|
current += 1 # noqa: SIM113
|
|
progress.update(tasks, completed=current)
|
|
for future in as_completed(futures):
|
|
try:
|
|
future.result()
|
|
except Exception:
|
|
nxc_logger.exception(f"Exception for target {targets[futures.index(future)]}: {future.exception()}")
|
|
|
|
|
|
def main():
|
|
first_run_setup(nxc_logger)
|
|
args, version_info = gen_cli_args()
|
|
|
|
# if these are the same, it might double log to file (two FileHandlers will be added)
|
|
# but this should never happen by accident
|
|
if config_log:
|
|
nxc_logger.add_file_log()
|
|
if hasattr(args, "log") and args.log:
|
|
nxc_logger.add_file_log(args.log)
|
|
|
|
CODENAME, VERSION, COMMIT, DISTANCE = version_info
|
|
nxc_logger.debug(f"NXC VERSION: {VERSION} - {CODENAME} - {COMMIT} - {DISTANCE}")
|
|
nxc_logger.debug(f"PYTHON VERSION: {sys.version}")
|
|
nxc_logger.debug(f"RUNNING ON: {platform.system()} Release: {platform.release()}")
|
|
nxc_logger.debug(f"Passed args: {args}")
|
|
|
|
# FROM HERE ON A PROTOCOL IS REQUIRED
|
|
if not args.protocol:
|
|
exit(1)
|
|
|
|
if args.protocol == "ssh" and args.key_file and not args.password:
|
|
nxc_logger.fail("Password is required, even if a key file is used - if no passphrase for key, use `-p ''`")
|
|
exit(1)
|
|
|
|
if args.use_kcache and not os.environ.get("KRB5CCNAME"):
|
|
nxc_logger.error("KRB5CCNAME environment variable is not set")
|
|
exit(1)
|
|
|
|
targets = []
|
|
|
|
if hasattr(args, "cred_id") and args.cred_id:
|
|
for cred_id in args.cred_id:
|
|
if "-" in str(cred_id):
|
|
start_id, end_id = cred_id.split("-")
|
|
try:
|
|
for n in range(int(start_id), int(end_id) + 1):
|
|
args.cred_id.append(n) # noqa: B909
|
|
args.cred_id.remove(cred_id) # noqa: B909
|
|
except Exception as e:
|
|
nxc_logger.error(f"Error parsing database credential id: {e}")
|
|
exit(1)
|
|
|
|
if hasattr(args, "target") and args.target:
|
|
for target in args.target:
|
|
try:
|
|
if exists(target) and os.path.isfile(target):
|
|
target_file_type = identify_target_file(target)
|
|
if target_file_type == "nmap":
|
|
targets.extend(parse_nmap_xml(target, args.protocol))
|
|
elif target_file_type == "nessus":
|
|
targets.extend(parse_nessus_file(target, args.protocol))
|
|
else:
|
|
with open(target) as target_file:
|
|
for target_entry in target_file:
|
|
targets.extend(parse_targets(target_entry.strip()))
|
|
else:
|
|
targets.extend(parse_targets(target))
|
|
except Exception as e:
|
|
nxc_logger.fail(f"Failed to parse target '{target}': {e}")
|
|
|
|
# The following is a quick hack for the powershell obfuscation functionality, I know this is yucky
|
|
if hasattr(args, "clear_obfscripts") and args.clear_obfscripts:
|
|
obfuscated_dir = os.path.join(NXC_PATH, "obfuscated_scripts")
|
|
shutil.rmtree(obfuscated_dir)
|
|
os.mkdir(obfuscated_dir)
|
|
nxc_logger.success("Cleared cached obfuscated PowerShell scripts")
|
|
|
|
if hasattr(args, "obfs") and args.obfs:
|
|
powershell.obfuscate_ps_scripts = True
|
|
|
|
nxc_logger.debug(f"Protocol: {args.protocol}")
|
|
p_loader = ProtocolLoader()
|
|
protocol_path = p_loader.get_protocols()[args.protocol]["path"]
|
|
nxc_logger.debug(f"Protocol Path: {protocol_path}")
|
|
protocol_db_path = p_loader.get_protocols()[args.protocol]["dbpath"]
|
|
nxc_logger.debug(f"Protocol DB Path: {protocol_db_path}")
|
|
|
|
protocol_object = getattr(p_loader.load_protocol(protocol_path), args.protocol)
|
|
nxc_logger.debug(f"Protocol Object: {protocol_object}, type: {type(protocol_object)}")
|
|
protocol_db_object = p_loader.load_protocol(protocol_db_path).database
|
|
nxc_logger.debug(f"Protocol DB Object: {protocol_db_object}")
|
|
|
|
db_path = path_join(WORKSPACE_DIR, nxc_workspace, f"{args.protocol}.db")
|
|
nxc_logger.debug(f"DB Path: {db_path}")
|
|
|
|
db_engine = create_db_engine(db_path)
|
|
|
|
db = protocol_db_object(db_engine)
|
|
|
|
# with the new nxc/config.py this can be eventually removed, as it can be imported anywhere
|
|
protocol_object.config = nxc_config
|
|
|
|
if args.module or args.list_modules is not None:
|
|
loader = ModuleLoader(args, db, nxc_logger)
|
|
modules = loader.list_modules()
|
|
|
|
if args.list_modules is not None:
|
|
low_privilege_modules = {m: props for m, props in modules.items() if args.protocol in props["supported_protocols"] and not props["requires_admin"]}
|
|
high_privilege_modules = {m: props for m, props in modules.items() if args.protocol in props["supported_protocols"] and props["requires_admin"]}
|
|
|
|
# List low privilege modules
|
|
nxc_logger.highlight("LOW PRIVILEGE MODULES")
|
|
display_modules(args, low_privilege_modules)
|
|
|
|
# List high privilege modules
|
|
nxc_logger.highlight("\nHIGH PRIVILEGE MODULES (requires admin privs)")
|
|
display_modules(args, high_privilege_modules)
|
|
exit(0)
|
|
elif args.module and args.show_module_options:
|
|
for module in args.module:
|
|
nxc_logger.display(f"{module} module options:\n{modules[module]['options']}")
|
|
exit(0)
|
|
elif args.show_module_options:
|
|
nxc_logger.error("--options requires -M/--module")
|
|
exit(1)
|
|
elif args.module:
|
|
# Check the modules for sanity before loading the protocol
|
|
nxc_logger.debug(f"Modules to be Loaded for sanity check: {args.module}, {type(args.module)}")
|
|
proto_module_paths = []
|
|
for m in args.module:
|
|
if m not in modules:
|
|
nxc_logger.error(f"Module not found: {m}")
|
|
exit(1)
|
|
|
|
nxc_logger.debug(f"Loading module for sanity check {m} at path {modules[m]['path']}")
|
|
module = loader.init_module(modules[m]["path"])
|
|
|
|
# Add modules paths to the protocol object so it can load them itself
|
|
proto_module_paths.append(modules[m]["path"])
|
|
protocol_object.module_paths = proto_module_paths
|
|
|
|
if args.protocol == "rdp" and args.execute:
|
|
ans = input(highlight("[!] Executing remote command via RDP will disconnect the Windows session (not log off) if the targeted user is connected via RDP, do you want to continue ? [Y/n] ", "red"))
|
|
if ans.lower() not in ["y", "yes", ""]:
|
|
exit(1)
|
|
|
|
if args.jitter and len(targets) > 1:
|
|
nxc_logger.highlight(highlight("[!] Jitter is only throttling authentications per target!", "red"))
|
|
|
|
try:
|
|
asyncio.run(start_run(protocol_object, args, db, targets))
|
|
except KeyboardInterrupt:
|
|
nxc_logger.debug("Got keyboard interrupt")
|
|
finally:
|
|
db_engine.dispose()
|
|
|
|
|
|
if __name__ == "__main__":
|
|
main()
|