From 3b8ddb67d896554a90c63e10211aed4baf8be154 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 5 Jan 2016 16:13:21 +0200 Subject: [PATCH 1/2] Bump cudaHashcat to 2.01 and use new AMI --- ec2hashcat/__init__.py | 2 +- ec2hashcat/aws/ec2.py | 2 +- ec2hashcat/commands/crack.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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..e7fe693 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-4f84db25', '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): From d47ec359a46c60b698363c24d5ef07d8f2a4cf09 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Tue, 5 Jan 2016 16:33:40 +0200 Subject: [PATCH 2/2] Use AMI v1.1.1 --- ec2hashcat/aws/ec2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ec2hashcat/aws/ec2.py b/ec2hashcat/aws/ec2.py index e7fe693..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-4f84db25', + 'us-east-1': 'ami-2883dc42', 'eu-west-1': 'ami-e5ad8492', }