Packet Phantom
Packet Phantom
Hi, You are probably using `SMBConnection` directly. as definition in `SMBConnection` shows us: ``` def queryInfo(self, treeId, fileId): ``` there is no overrides for additional arguments, like `infoType`. to solve...
There is no problem with default configurations: ``` ┌──(kali㉿kali)-[~/Desktop/impacket/examples] └─$ python ntlmrelayx.py -smb2support -t smb://192.168.129,12 Impacket v0.10.1.dev1+20220720.103933.3c6713e3 - Copyright 2022 SecureAuth Corporation [*] Protocol Client SMTP loaded.. [*] Protocol Client...
Because of `SMB2Commands` methods are **static** (`@staticmethod`). The solution is instantiate them per-thread. @0xdeaddood I can rewrite the file in object-oriented style. Let me know if it helps.
Thanks for your review. I applied your suggestion. Please recheck
Please paste debug output as explained in [issue template](https://github.com/fortra/impacket/blob/master/.github/ISSUE_TEMPLATE/bug_report.md).
unfortunately I couldn't simulate your situation but the bug is about `session_key` in (line 2973 in **samr.py**). By default this key is set while authenticating. I'm not sure how did...
probably you use wrong credentials for authentication. here is both client/server output for valid (test:test) and invalid (VICTIM\User1:test) credentials: ``` ┌──(kali㉿kali)-[~] └─$ impacket-smbserver -smb2support kali . -username test -password test...
Yes, there is **MS-NRPC** implementation in `impacket/dcerpc/v5/nrpc.py` path. Please explain in detail if you have specific meaning.