Skip to content

Commit debc4c7

Browse files
committed
Fixes #10, release 1.6
1 parent ef9ff32 commit debc4c7

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ ./Coercer.py -h
2626
______
2727
/ ____/___ ___ _____________ _____
2828
/ / / __ \/ _ \/ ___/ ___/ _ \/ ___/
29-
/ /___/ /_/ / __/ / / /__/ __/ / v1.5.1
29+
/ /___/ /_/ / __/ / / /__/ __/ / v1.6
3030
\____/\____/\___/_/ \___/\___/_/ by @podalirius_
3131
3232
usage: Coercer.py [-h] [-u USERNAME] [-p PASSWORD] [-d DOMAIN] [--hashes [LMHASH]:NTHASH] [--no-pass] [-v] [-a] [-k] [--dc-ip ip address] [-l LISTENER] [-wh WEBDAV_HOST] [-wp WEBDAV_PORT]

coercer/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from coercer.utils.smb import connect_to_pipe, can_bind_to_protocol, get_available_pipes_and_protocols
1717

1818

19-
VERSION = "1.5.1"
19+
VERSION = "1.6"
2020

2121
banner = """
2222
______

coercer/protocols/MS_DFSNM.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99
import time
1010
import random
11-
from .RPCProtocol import RPCProtocol
11+
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
1212
from impacket.dcerpc.v5.ndr import NDRCALL
1313
from impacket.dcerpc.v5.dtypes import WSTR, DWORD
1414

coercer/protocols/MS_EFSR.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99
import time
1010
import random
11-
from .RPCProtocol import RPCProtocol
11+
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
1212
from impacket.dcerpc.v5.ndr import NDRCALL
1313
from impacket.dcerpc.v5.dtypes import WSTR, DWORD, LONG
1414
from impacket.dcerpc.v5.rpcrt import RPC_C_AUTHN_WINNT, RPC_C_AUTHN_LEVEL_PKT_PRIVACY

coercer/protocols/MS_FSRVP.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77

88
import sys
9-
from .RPCProtocol import RPCProtocol
9+
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
1010
from impacket.dcerpc.v5.ndr import NDRCALL
1111
from impacket.dcerpc.v5.dtypes import WSTR
1212
from impacket.dcerpc.v5.rpcrt import RPC_C_AUTHN_WINNT, RPC_C_AUTHN_LEVEL_PKT_PRIVACY

coercer/protocols/MS_RPRN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import sys
99
import random
10-
from .RPCProtocol import RPCProtocol
10+
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
1111
from impacket.dcerpc.v5 import rprn
1212
from impacket.dcerpc.v5.dtypes import NULL
1313

File renamed without changes.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "coercer"
3-
version = "1.5.1"
3+
version = "1.6"
44
description = "A python script to automatically coerce a Windows server to authenticate on an arbitrary machine through 9 methods."
55
authors = ["p0dalirius"]
66

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
______
3333
/ ____/___ ___ _____________ _____
3434
/ / / __ \\/ _ \\/ ___/ ___/ _ \\/ ___/
35-
/ /___/ /_/ / __/ / / /__/ __/ / v1.5.1
35+
/ /___/ /_/ / __/ / / /__/ __/ / v1.6
3636
\\____/\\____/\\___/_/ \\___/\\___/_/ by @podalirius_
3737
3838
usage: Coercer.py [-h] [-u USERNAME] [-p PASSWORD] [-d DOMAIN] [--hashes [LMHASH]:NTHASH] [--no-pass] [-v] [-a] [-k] [--dc-ip ip address] [-l LISTENER] [-wh WEBDAV_HOST] [-wp WEBDAV_PORT]
@@ -112,7 +112,7 @@
112112

113113
setuptools.setup(
114114
name="coercer",
115-
version="1.5.1",
115+
version="1.6",
116116
description="",
117117
url="https://github.com/p0dalirius/Coercer",
118118
author="Podalirius",

0 commit comments

Comments
 (0)