Commit Graph

583 Commits

Author SHA1 Message Date
alexisbalbachan 46e9b038be secretsdump: Filter offline NTDS accounts by local domain SID (#2178)
* Filter offline NTDS rows by local domain SID

* Use remoteops.getDomainSid when isRemote == True

* Skip offline NTDS rows with unavailable PEK indexes

* Allow snapshot enumeration over SMB 3.1.1

---------

Co-authored-by: gabrielg5 <gabriel.gonzalez@fortra.com>
2026-05-08 12:08:09 -03:00
alexisbalbachan 426f354767 Fix large-page ESE tag-state parsing for Windows Server 2025 NTDS.dit (issue #1924) (#2158)
* Fix issue #1924 large-page tag count parsing

* Applied code review changes, added unit test

* improved code
added testcase

* Fix USER_PROPERTIES parsing per MS-SAMR spec

---------

Co-authored-by: Kali <adrian.manrique@gmail.com>
2026-04-30 11:41:05 -03:00
0xpaperman 4790a2f325 Added 'rget' command to smbclient.py (#2110)
* Add rget command for recursive file download

* rget no longer swallows listing or download failures. It now restores self.pwd with try/finally and lets real exceptions propagate, so partial recursive downloads don’t fail silently.
  The local path calculation now uses ntpath.relpath() from the starting remote directory instead of raw string replacement, which preserves nested paths like subdir/dir_backup/...
  correctly.

---------

Co-authored-by: TheFlamingCrab <96930137+TheFlamingCrab@users.noreply.github.com>
Co-authored-by: Kali <adrian.manrique@gmail.com>
2026-04-24 19:18:21 -03:00
r3seh 8e0a44a46a fix confusion with name 'lastLogonTimesptamp' and the same field in AD (#1049)
Co-authored-by: r3seh <r3seh>
2026-04-24 16:53:34 -03:00
n3rada 383d016348 Fix WINRMS relay error handling and add NTLMv2 detection (#2163)
* fix(smbrelayserver): guard missing SMBClient and handle NTLM negotiate failures

* fix(winrmrelayclient): handle connection errors and detect NTLMv2 to abort futile relay

* fix(winrmrelayclient): update logging message

* Enhancing a bit the NTLMv2 detection - and clean up logging

* Clean up log

* Fixing wrong var name

---------

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>
2026-04-24 14:51:03 -03:00
maple 06fd05dca4 smbclient: shares list shows type and comments (#2156) 2026-04-23 02:18:20 -03:00
i-am-not-an-ai c64818ca5a Support multibyte template names for AD CS (#2127) 2026-04-22 04:32:20 -03:00
Chris Thompson 43fe4ce7cb Add TDS 8.0 (Force Strict Encryption MSSQL Server setting) support to ntlmrelayx (#2122)
* Add support for TDS 8.0 when Force Strict Encryption = Yes

* Match log syntax

* Only use TDS 8.0 if Force Strict Encryption is set to Yes

* Add comments back and fix typos

* Use short timeout, remove excessive debug logs, add comments

* Testing changes to make TDS more broadly applicable by moving to tds.py

* Add TLS 1.2 cap and EPA channel binding for TDS 8.0

* Fix TDS 8.0 DONE parsing and TLS state handling

* Use negotiated TDS version for DONE rowcount parsing

* Align strict TDS login with modern LOGIN7 flow

* Keep relay TLS socket for strict TDS sessions

* Reassemble relay TDS packets over TLS

* tds: stop advertising UTF-8 support

* tds: fix relay login failure token packing

* mssqlrelay: fix PRELOGIN thread id encoding

* tds: preserve default LOGIN7 version in serializer

* tds: only retry strict fallback on connection close

* ntlmrelayx: support strict MSSQL SOCKS reuse

* Reassemble TDS frames on TLS-backed MSSQL reads

---------

Co-authored-by: Gabi Gonzalez <gabriel.gonzalez@fortra.com>
2026-04-21 09:33:52 -03:00
Roman Karwacik 9afc09b933 Several ntlmrelayx SMBv1 server fixes (#2129)
* ntlmrelayx smbrelayserver (SMBv1): Fix relayToHost variable

* ntlmrelayx smbrelayserver (SMBv1): Fix infinite loop if multirelay is disabled

* ntlmrelayx smbrelayserver (SMBv1): Do not set NativeOS/NativeLanMan
2026-04-20 12:33:56 -03:00
Julien EGLOFF 5c68193080 Add timestamp to SAM parsing (#2142)
* Add timestamp to SAM parsing

* Make SAM output consistent with NTDS output when using -pwd-last-set
2026-04-16 16:33:15 -03:00
7own 7fc084ad19 Add enable_rpc/disable_rpc commands to mssqlshell (#2134)
Add shell commands to enable and disable the 'rpc out' option for
linked SQL servers via sp_serveroption. This allows executing stored
procedures remotely on linked servers directly from the SQL shell.
2026-04-07 17:23:53 -03:00
alexisbalbachan 084aff60df ntlmrelayx: NTLM SEAL flag drop paths for CVE-2025-33073 and --remove-mic (#2133)
* Added remove_sign_seal flag, drop seal flag when remove mic

* moved seal flag removal from sendauth/remove-mic and into sendauth/remove-sign-seal

* Added missing token regeneration after removing seal
2026-03-13 15:41:48 -03:00
Croumi a93ee769f8 Fix offline mode missing machine account and Kerberos keys in secretsdump.py (#2135)
When running secretsdump.py in offline mode (with -sam/-security/-system flags),
the $MACHINE.ACC secret was dumped as raw hex instead of showing the machine
account NTLM hash and Kerberos keys. This was because the machine name, domain,
and Kerberos salt were only retrieved via remoteOps (available in online mode).

Add __getMachineKerberosSaltOffline() to derive the Kerberos salt from the
SECURITY hive by reading Policy\PolDnDDN (domain FQDN) and Policy\PolAcDmN
(machine NetBIOS name), which are stored as LSA_UNICODE_STRING structures.
Use the same salt to resolve the machine name and domain for the NTLM hash
printout. This brings offline mode output to parity with online mode.

Co-authored-by: Croumi <Croumi>
2026-03-13 02:19:33 -03:00
Roman Karwacik 819dcd5656 smbrelayserver.py: Dont advertise support for NEGOEX (#2111)
* smbrelayserver.py: Dont advertise support for NEGOEX

* ntlmrelayx: Remove more unsupported NEGOEX
2026-03-06 15:44:34 -03:00
AndreySolod 9d3d86ea30 Fix WinRM NTLM Relay Issue (#2089)
* Fix WinRM NTLM Relay Issue

* Removed negotiate seal changes

---------

Co-authored-by: alexisbalbachan <alexisbalbachan@gmail.com>
2026-02-26 03:15:12 -03:00
Gaffner d029698149 smbclient ACL Support (#1240)
* Added smbcacls

* Changed example script

* improve ACL manage

* improve acl manage

* improved acl

* Closing all handles

* fixed directory and handle is open bug in acl.py

* Changed help a little bit

* Ignore from empty ACL

* fix indentation

* removee example to different PR

---------

Co-authored-by: john57 <your_email_address@example.com>
2026-02-18 00:42:34 -03:00
Romern 982cb48ad2 Fix SMB relay server not gracefully replying to SMB packets (#2114)
If an SMB packet is incoming and wants to negotiate and smb2support is
enabled, before this would throw an exception while trying to parse the
SMB packet as an SMB2 packet:
```
Traceback (most recent call last):
  File
"/Users/roman/.local/pipx/venvs/impacket/lib/python3.13/site-packages/impacket/smbserver.py",
line 4191, in handle
    resp = self.__SMB.processRequest(self.__connId, p.get_trailer())
  File
"/Users/roman/.local/pipx/venvs/impacket/lib/python3.13/site-packages/impacket/smbserver.py",
line 4865, in processRequest
    respPacket['CreditRequestResponse'] =
packet['CreditRequestResponse']

~~~~~~^^^^^^^^^^^^^^^^^^^^^^^^^
  File
"/Users/roman/.local/pipx/venvs/impacket/lib/python3.13/site-packages/impacket/structure.py",
line 186, in __getitem__
    return self.fields[key]
           ~~~~~~~~~~~^^^^^
KeyError: 'CreditRequestResponse'
```
By sending the SMB2 packet response directly instead of the command,
this should now work properly.
2026-02-09 15:37:58 -03:00
sbuck1 851fea860b Make KeyCreds compatible with January 2026 patch (#2109) 2026-01-30 22:31:14 -03:00
Azox a813ebe72b Implements RDP Relay Server (#2101)
* Add RDP Server

* fixing a typo

* Remove of an unnecessary log

* Fix RDP relay cookie and duplicate connection issues

* change log type

* refactor: restructure RDP server

* Remove second authentication blocking

* Revert accidental removal of debug print
2026-01-26 10:12:37 -03:00
Coontzy1 028f0724fe Added SAM history parsing to secretsdump.py and regsecrets.py (#2059)
* Added SAM history parsing to secretsdump.py and secretsdump.py

* Update impacket/examples/regsecrets.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/secretsdump.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/secretsdump.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/regsecrets.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update help message for -history argument

Clarified help message for -history argument to specify NTDS and SAM hashes.

* Clarify -history argument help text

Updated help text for the -history argument to clarify that it dumps NTDS and SAM hashes.

---------

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>
2026-01-09 16:18:01 -03:00
Eugenie Potseluevskaya 40f5fd0056 feat: Added MSSQL Relay Server to NTLMRelayx (#2083)
* feat: Added MSSQL Relay Server to NTLMRelayx

* The PRELOGIN response was reified, instead than returning a hardcoded hex message. Several not needed imports were removed. The server name in the LOGIN request was changed to match the target.

* Updated ntlmrelayx.py to the current version, only lines related to MSSQLRelayServer added

* Added response to the client for NTLM authentication (imitate logon failure for unknown reasons)

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Changed the constant in NTLM authentication as requested, and added import struct

* Update impacket/examples/ntlmrelayx/servers/mssqlrelayserver.py

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

* Added login failed response for MSSQL server authentication

---------

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>
2026-01-02 08:19:49 -03:00
Edwin Tok | Shiro b7f9f3b9be Fix KeyError 'identity' in ImpacketFormatter to support external tools (#2091) 2025-12-22 15:17:41 -03:00
Alex 96aefa3018 Fix Kerberos key decryption from LSA when using Kerberos auth (#2088)
* Fix salt creation when using kerberos auth

* Ensure we have the FQDN as remoteName to ensure proper decryption
2025-12-19 02:33:49 -03:00
Alex 2c47948ca9 Fix negative timestamps when using secretsdump local on windows (#2069) 2025-11-27 20:08:42 -03:00
Matt Creel e2a73eb416 Add Shadow Credentials Commands to Ntlmrelayx's Interactive LDAP Shell (#1402)
* add interactive shadow creds commands

* add interactive shadow creds commands

* Removed dsinternals dependency

* bugfixes

---------

Co-authored-by: alexisbalbachan <alexisbalbachan@gmail.com>
2025-11-20 03:04:29 -03:00
adrian manrique 23a36c6225 Introduce deprecation warning for version updates
Added deprecation warning for version changes.
2025-10-16 11:27:53 -03:00
Gabriel Gonzalez 1f77e78429 Fix to ADCS when relayed username is empty (#2060)
* Checking CommonName before setting in the CSR. Enhancing certificate name when username is empty

* Adding fallback to certificate name

* Fixing ICPRRPCAttack #2042

* Aligning ICPRRPCAttack with ADCSAttack

* Update rpcattack.py
2025-10-16 11:02:36 -03:00
Julien EGLOFF fc92f4711a Fix socket reuse in ntlmrelayx (#2051) 2025-10-02 08:55:40 -03:00
Gabriel Gonzalez 62e2a9aca6 Fixing issue in ntlmrelayx winrmattack & winrm/s relay servers (#2050)
* Fixing issue in ntlmrelayx winrmsattack - Fixed constructor signature

* Adding ipv6 support to winrm/s relay servers

* Adding enhanced logging support to winrm/s relay servers

* Standardizing winrm relay servers log prefix

* Standardizing winrm relay servers ntlmrelayx logging enhancements

* Setting prefix to some winrm/s log messages that missed it
2025-09-30 17:27:08 -03:00
Gabriel Gonzalez 25bf1067a3 Fixing issue in ntlmrelayx - smbrelayserver (#2048) 2025-09-29 18:58:48 -03:00
MaxToffy 77988233c0 Add parsing for 'Export' hives and boot key computation from class names (#1840)
* Added support for "export" hive format + compute  bootkey from class names

* Fixing bug when key does not exist

* Better data extraction to avoid special characters errors

* Fix remote dumping errors

* Fix conflicts

* Reverting changes in examples/secretsdump and impacket/examples/secretsdump. Will be handled in a new PR

* Implemented Registry as an abstract class. Implemented winregistry.get_registry_parser as a factory function to instantiate right parser based in given hive parameter. Refactor registry-read and secretsdump to leverage this factory.

* Enhancing -system description in secretsdump\nClarifying that SYSTEM hive has to be in binary format

* Update the description of the `system` flag

---------

Co-authored-by: gabrielg5 <gabriel.gonzalez@fortra.com>
2025-09-26 15:58:09 -03:00
adrian manrique f3cf410906 Smbconnection fixes (#2044)
* reverted shareAccessMode default value in getFile implemntation

* added getFileEx method to smbconnection in order to be used to retrieved remote locked files
2025-09-26 15:57:12 -03:00
Peter Gabaldon 2e518256cb [SECRETSDUMP] - NTDS.dit Dumping with Shadow Snapshot Method via WMI (No Code Execution) (#2021)
* Implemented also NTDS.dit download using ShadowSnapshot method via WMI

* Added some debug msgs

* Finished, but error when decrypting. Also with other methods. Found bug?

* Finished, but error when decrypting. Also with other methods. Found bug?

* Adding checks for correct options usage. https://github.com/fortra/impacket/pull/2021#pullrequestreview-3227404992

---------

Co-authored-by: Peter Gabaldon <peter@pgj11.com>
2025-09-24 23:49:00 -03:00
Gabriel Gonzalez 85a03c64b9 Enhance attack logging for ntlmrelayx (#2032)
* Adding ID to each client. Logging it when relay succeeds. Showin it in 'socks' command

* Avoid crashing ntlmrelayx when 'socks' command has an invalid filter

* Showing relayed connection information when running attacks in context of relay

* Showing scheme in attacks logging. Fixing table printing in 'socks' command

* Add whitespace to standardize

* Code cleanup. Set 'target' and 'relay_client' as optional parameters in ProtocolAttack (backwards compatibilty)

* Format identity filter
2025-09-24 23:46:27 -03:00
Gabriel Gonzalez 8426ec9977 SMBServer & NTLMRelayx with IPv6 support (#2024)
* Adding IPv6 support to SMBServer

* Adding IPv6 support to NTLMRelayX (should update after #2023 - utils.get_address() -)

* Reusing utils.get_address to resolve the address on which each relay server will listen

* Update smbserver.py

Added a comment explaining why repeated code in SMBSERVER constructor

* Setting right address family for relay servers (ipv6)

* Fixing scope_id resolution in SMBSERVER class for IPv6
2025-09-19 21:08:43 -03:00
adrian manrique 40d8784260 Remove pyopen ssl version restriction (#2042)
* use cryptography to generate pkcs12 certificate

* fixes

* removed pyopenssl version restriction

* handle asn1 certificate type as well

* updated PyOpenSSL version in setup.py. fixed typo in adcsattack
2025-09-19 17:50:14 -03:00
Adrian Vollmer 082dca34a3 Remove usage of pkg_resources (#2036)
* Remove usage of `pkg_resources`

Currently, a warning is emitted on each run:

    UserWarning: pkg_resources is deprecated as an API. See
    https://setuptools.pypa.io/en/latest/pkg_resources.html. The
    pkg_resources package is slated for removal as early as 2025-11-30.
    Refrain from using this package or pin to Setuptools<81.

This patch removes all usage of that package.

Fixes #1645.

* Add necessary dependencies to setup.py and requirements.txt

* Remove fallback to `importlib_resources`
2025-09-09 12:50:12 -03:00
Deft_ a6eac5173a [NTLMRELAYX] Implements WinRM(S) clients/server (#1987)
* Add new relay capabilities from and to WinRM(S)

* Remove winrm client

* Patch the winrmserver to add Negotiate parsing

* Patch the winrmsserver to add Negotiate parsing

* Add allow_reuse

---------

Co-authored-by: Aurélien CHALOT <aurelien.chalot@orangecyberdefense.com>
2025-09-08 09:53:42 -03:00
Gabriel Gonzalez 6864c8b470 rdp_check support IPv6 (#2023)
* Adding IP address family detection and support for both IPv4/6 to rdp_check example

* Avoid using 'ipaddress' module. Add flag '-6'

* Don't repeat [address] definition

* Creating 'utils.get_socket' and 'utils.get_address' for reusing these common functions. Using them in rdp_check

* Fixed 'utils.get_connected_socket' function name

* Add ability to set the scope_id with interface name - not only by its indes
2025-09-04 00:21:10 -03:00
adrian manrique 417c237da5 Shadow credentials update2 (#2031)
* removed PyOpenSSL dependency

* - fixed bug exporting to PEM files
- fixed bug computing KeyHash
- removed OpenSSL dependency
- fixed bug computing in getTicksNow() function
- certificate validity time expanded to 10 years

* removed print

* updated name certificate
2025-09-03 16:10:39 -03:00
Gabriel Gonzalez 576933651d NTLMRelayX: Show client IP when realying successful (#2012)
* ntlmrelayx: showing client ip when relay successful. standardized relay server prefixes (protocol). showin an incremental id for session relayed.

* reverting 'client_id' additions as are not important/valid in the context of this pr
2025-08-28 03:14:28 -03:00
Otavio Brito f66f82b8db [samedit.py] Added example script to edit local SAM hashes (#1761)
* Added example script samedit.py

* Rebased with latest version

* Replaced instances of "options.hash" with "options.hashes"

---------

Co-authored-by: alexisbalbachan <alexisbalbachan@gmail.com>
2025-08-20 17:46:53 -03:00
Alex 578733af71 Fix 2 critical bugs in ntlmrelayx (#2019)
* Fix getFileTime missing import

* Fix SSL settings
2025-08-10 22:14:44 -03:00
h3-josh-the-engineer 33a8dc554f Close issue #1436. Prevent secretsdump crashing win2k19 by adding DRS_EXT_NONDOMAIN_NCS flag to DRSBind call (#2017) 2025-08-08 16:08:28 -03:00
Raz Kissos 20002f79e5 [SMB] Massive Fixes, Features and Refactoring (#1894)
* Add documentation in the comments for clearer use of NT_CREATE_ANDX flags.
Then sort out some mismatching flags.

* Change default shareAccessMode in the retr file methods to allow read, write and delete.
I found it out when capturing network traffic and seeing I can manage to read files with open handles.
This fixes SHARE_ACCESS_DENIED errors when trying to read files with handles on them.
This is the logical thing to do when we open files for reading.
We do not want to block other processes from interacting with the file.
This may raise problems when reading files that are being written into / being deleted.
I still think this is the right move since we usually want to read the files no matter what.

* Add ability to read files with open handles - this is related to my previous commits.

* Add ability to read files that have open handles to them.
This is related to my older commits on the subject.

* Update smbconnection.py

Add method parameters to `getFile` to easily communicate with the underlying SMB API.

* Fix `shareAccessMode` when opening files for writing.
We obviously do not want to allow others to write to the file while we are writing to it.

* Extend `SMBConnection`'s method parameters for `getFile` and `putFile` methods.

* Add comments for `DesiredAccess`, `ShareAccess` and `CreateDisposition` values in SMBv2.

* Update smb3structs.py

* Fix missing values.

* [SMB] Define CIFS SMB Date and SMB Time according to `2.2.1.4 Time`.
This is done to assist future development of SetInfo operations on files and directories.

```
Date Conversion Example - Year Component:
-----------------------------------------

    2009 - 1980 = 29

            | (convert to binary)
            V

    0001 1101

            | (position data correctly by shifting)
            V

                    0001 1101
    <<                     9
        ---------------------
    =  0 0011 1010 0000 0000

            | (trim to correct size with bitwise AND of correct mask)
            V

        0 0011 1010 0000 0000
    &   1111 1110 0000 0000
        ---------------------
    =   0011 1010 0000 0000
```

* [SMB] Added CIFS DateTime objects helper methods to convert values to classes.

* [SMB] Feature: added support for set_file_info method using trans2.
By doing so I also fixed a bad structure definition in the SMBSetFileBasicInfo structure.
Now we can modify file information remotely ;)

* [SMBServer] Moved FileTime Conversion methods to the base SMB library.
Also converted the SMB DATETIME methods to use my SMB_DATE and SMB_TIME implementations.

* [SMBConnection] Added type hinting for (almost) all methods.
Also implemented setInfo method to use for setting file information.

* [TEST_SMB] Add tests for new setInfo method.

* [TEST_SMB] This is causing errors so I will wait for now.

* [SMBConnection] add support for default info class type in queryInfo method.

* [SMBConnection] Fix queryInfo to allow retrieval of more
fileInformationClasses other than the default one.

* [attrib] Added attrib example to showcase file attribute modifications using SMB.
for now only implemented query.

* [smbserver] fix missing pack operation in getSMBTime method.

* [attrib] Finished set action, thus finishing the attrib example script.

* [attrib] Final touches, adding output to set action as well.

* [attrib] Add option to set connection timeout.

* [smbclient] Add reconnect command.

* [smb] Fix accidental SMB_TIME creation with removing `+ 1980` to hours.

* [examples] Implement filetime.py
An example script that allows querying and modifying file timestamps using SMB.

* After merge, fix some syntax issues.

* Actually show subparser's descriptions now.

* [SMB] Removed type annotations. Improved comments. Cleaned imports.

* [SMB] Removed type annotations, improved comments.

* [SMB] Comment changes.

* [examples] Add handling of empty action, even though argparse should catch it.

* refactor: Fix PR requests.
2025-08-07 15:01:58 -03:00
Gabriel Gonzalez 849c74b7b9 Monkeypatches (#2003)
* Added monkeypatches.py; contains a couple of functions to modify for specific usecases/issues: monkeypatch_ssl_create_default_context and monkeypatch_readline_backend

* Revert "Added monkeypatches.py; contains a couple of functions to modify for specific usecases/issues: monkeypatch_ssl_create_default_context and monkeypatch_readline_backend"

This reverts commit 7049ded298.

* defining and running monkeypatch functions from the init of impacket.examples

* leveraging 'init_ldap_session' from addcomputer.py

* leveraging ssl monkeypatch in 'init_ldap_session'
2025-08-01 11:39:18 -03:00
Roman Karwacik b5302a84ed [MSSQL] Fix regression: Connection establishment (#2005)
* Fix mssql connection establishment

* Fix mssql connection establishment in mssqlrelayclient.py as well

* Apply suggestions from code review

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>

---------

Co-authored-by: Gabriel Gonzalez <gabriel.gonzalez@fortra.com>
2025-07-28 09:39:25 -03:00
Deft_ 7561038277 [MSSQL] Fix file exist error (#2002)
* [MSSQL] Improves version display

* [MSSQL] Patch file exists if language is not english

* Add impacket.mssql to setup.py

* Pass on KeyError exception

---------

Co-authored-by: Aurélien CHALOT <aurelien.chalot@orangecyberdefense.com>
2025-07-21 10:52:11 -03:00
Daniel b6ff7ac61c target arbitrary objects with ldapshell grant_control (#1927) 2025-07-14 13:01:02 -03:00
Fabrizzio53 171a324d3a Update utils.py to fix -dc-host when ntlm is disabled (#1997) 2025-07-08 15:58:31 -03:00