Skip to content

Commit

Permalink
Release v0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
lanjelot committed Jul 26, 2020
1 parent 288dac8 commit 0d7661b
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ apt-get install -y tmux git wget build-essential vim
apt-get install -y libcurl4-openssl-dev python3-dev libssl-dev # pycurl
apt-get install -y ldap-utils # ldapsearch
apt-get install -y libmariadbclient-dev # mysqlclient-python
apt-get install -y libpq-dev # psycopg2
apt-get install -y ike-scan unzip default-jdk
apt-get install -y libsqlite3-dev libsqlcipher-dev # pysqlcipher
apt-get install -y libpq-dev # psycopg2
# cx_oracle
apt-get install -y libaio1 wget unzip
Expand Down
17 changes: 13 additions & 4 deletions patator.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
__url__ = 'http://www.hsc.fr/ressources/outils/patator/'
__git__ = 'https://github.com/lanjelot/patator'
__twitter__ = 'https://twitter.com/lanjelot'
__version__ = '0.8-dev'
__version__ = '0.9'
__license__ = 'GPLv2'
__pyver__ = '%d.%d.%d' % sys.version_info[0:3]
__banner__ = 'Patator %s (%s) with python-%s' % (__version__, __git__, __pyver__)
Expand Down Expand Up @@ -609,6 +609,13 @@
CHANGELOG
---------
* v0.9 2020/07/26
- fixed encoding bugs
- new Dockerfile
- new --groups and --auto-progress options
- fixed various issues reported on Github
- new testing env with docker-compose
* v0.8 2020/03/22
- new switches (-R, --csv, --xml, --hits)
- new pathasis option for http_fuzz
Expand Down Expand Up @@ -669,7 +676,6 @@
----
* new option -e ns like in Medusa (not likely to be implemented due to design)
* replace dnspython|paramiko|IPy with a better module (scapy|libssh2|netaddr... ?) // https://netaddr.readthedocs.org/en/latest/tutorial_01.html
* use impacket/enum_lookupsids to automatically get the sid
'''

# }}}
Expand Down Expand Up @@ -2860,8 +2866,11 @@ def execute(self, host, port='79', user='', timeout='5'):
# }}}

# DCOM {{{
from impacket.dcerpc.v5.dcomrt import DCOMConnection
from impacket.dcerpc.v5.dcom import wmi
try:
from impacket.dcerpc.v5.dcomrt import DCOMConnection
from impacket.dcerpc.v5.dcom import wmi
except ImportError:
notfound.append('impacket')

class DCOM_login:
'''Brute-force DCOM'''
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def parse_requirements(file):

setup(
name="patator",
version="0.8",
version="0.9",
description="multi-purpose brute-forcer",
long_description=long_description,
url="https://github.com/lanjelot/patator",
Expand Down

0 comments on commit 0d7661b

Please sign in to comment.