Skip to content

Instantly share code, notes, and snippets.

View jvincentnz's full-sized avatar

Jeremy Vincent jvincentnz

View GitHub Profile
@jvincentnz
jvincentnz / find_user_from_access_key.py
Created May 30, 2018 05:03 — forked from andymotta/find_user_from_access_key.py
Find an AWS IAM user corresponding to an AWS Access Key (boto3)
# Find the IAM username belonging to the TARGET_ACCESS_KEY
import boto3
from botocore.exceptions import ClientError
iam = boto3.client('iam')
def find_user(key):
try:
key_info = iam.get_access_key_last_used(AccessKeyId=key)
@jvincentnz
jvincentnz / README.md
Created September 23, 2016 09:33 — forked from leonardofed/README.md
A curated list of AWS resources to prepare for the AWS Certifications


A curated list of AWS resources to prepare for the AWS Certifications

A curated list of awesome AWS resources you need to prepare for the all 5 AWS Certifications. This gist will include: open source repos, blogs & blogposts, ebooks, PDF, whitepapers, video courses, free lecture, slides, sample test and many other resources.


Index: