diff --git a/ec2hashcat/__init__.py b/ec2hashcat/__init__.py index 1bea730..ea88a88 100644 --- a/ec2hashcat/__init__.py +++ b/ec2hashcat/__init__.py @@ -1,2 +1,2 @@ """ Copyright 2015 Will Boyce """ -__version__ = '1.0.2' +__version__ = '1.1' diff --git a/ec2hashcat/aws/ec2.py b/ec2hashcat/aws/ec2.py index 6974316..63b47e3 100644 --- a/ec2hashcat/aws/ec2.py +++ b/ec2hashcat/aws/ec2.py @@ -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', } diff --git a/ec2hashcat/commands/crack.py b/ec2hashcat/commands/crack.py index 0bb4ad4..3a813b6 100644 --- a/ec2hashcat/commands/crack.py +++ b/ec2hashcat/commands/crack.py @@ -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):