Skip to content
This repository was archived by the owner on Apr 30, 2021. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ec2hashcat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
""" Copyright 2015 Will Boyce """
__version__ = '1.0.2'
__version__ = '1.1'
2 changes: 1 addition & 1 deletion ec2hashcat/aws/ec2.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

class Ec2(object):
region_ami_map = {
'us-east-1': 'ami-dbceb0be',
'us-east-1': 'ami-2883dc42',
'eu-west-1': 'ami-e5ad8492',
}

Expand Down
2 changes: 1 addition & 1 deletion ec2hashcat/commands/crack.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

class Crack(BaseEc2InstanceSessionCommand):
""" Launch an EC2 Instance and crack the specified file(s) """
hashcat_home = '/opt/cudaHashcat-1.37'
hashcat_home = '/opt/cudaHashcat-2.01'

@classmethod
def setup_parser(cls, parser, final=False):
Expand Down