Skip to content

Commit

Permalink
Fixes #10, release 1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
p0dalirius committed Jul 18, 2022
1 parent ef9ff32 commit debc4c7
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ $ ./Coercer.py -h
______
/ ____/___ ___ _____________ _____
/ / / __ \/ _ \/ ___/ ___/ _ \/ ___/
/ /___/ /_/ / __/ / / /__/ __/ / v1.5.1
/ /___/ /_/ / __/ / / /__/ __/ / v1.6
\____/\____/\___/_/ \___/\___/_/ by @podalirius_
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]
Expand Down
2 changes: 1 addition & 1 deletion coercer/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from coercer.utils.smb import connect_to_pipe, can_bind_to_protocol, get_available_pipes_and_protocols


VERSION = "1.5.1"
VERSION = "1.6"

banner = """
______
Expand Down
2 changes: 1 addition & 1 deletion coercer/protocols/MS_DFSNM.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import time
import random
from .RPCProtocol import RPCProtocol
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
from impacket.dcerpc.v5.ndr import NDRCALL
from impacket.dcerpc.v5.dtypes import WSTR, DWORD

Expand Down
2 changes: 1 addition & 1 deletion coercer/protocols/MS_EFSR.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
import time
import random
from .RPCProtocol import RPCProtocol
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
from impacket.dcerpc.v5.ndr import NDRCALL
from impacket.dcerpc.v5.dtypes import WSTR, DWORD, LONG
from impacket.dcerpc.v5.rpcrt import RPC_C_AUTHN_WINNT, RPC_C_AUTHN_LEVEL_PKT_PRIVACY
Expand Down
2 changes: 1 addition & 1 deletion coercer/protocols/MS_FSRVP.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


import sys
from .RPCProtocol import RPCProtocol
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
from impacket.dcerpc.v5.ndr import NDRCALL
from impacket.dcerpc.v5.dtypes import WSTR
from impacket.dcerpc.v5.rpcrt import RPC_C_AUTHN_WINNT, RPC_C_AUTHN_LEVEL_PKT_PRIVACY
Expand Down
2 changes: 1 addition & 1 deletion coercer/protocols/MS_RPRN.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import sys
import random
from .RPCProtocol import RPCProtocol
from coercer.utils.RPCProtocol import RPCProtocol, DCERPCSessionError
from impacket.dcerpc.v5 import rprn
from impacket.dcerpc.v5.dtypes import NULL

Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "coercer"
version = "1.5.1"
version = "1.6"
description = "A python script to automatically coerce a Windows server to authenticate on an arbitrary machine through 9 methods."
authors = ["p0dalirius"]

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
______
/ ____/___ ___ _____________ _____
/ / / __ \\/ _ \\/ ___/ ___/ _ \\/ ___/
/ /___/ /_/ / __/ / / /__/ __/ / v1.5.1
/ /___/ /_/ / __/ / / /__/ __/ / v1.6
\\____/\\____/\\___/_/ \\___/\\___/_/ by @podalirius_
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]
Expand Down Expand Up @@ -112,7 +112,7 @@

setuptools.setup(
name="coercer",
version="1.5.1",
version="1.6",
description="",
url="https://github.com/p0dalirius/Coercer",
author="Podalirius",
Expand Down

0 comments on commit debc4c7

Please sign in to comment.