EC2StepShell 1.1.1

Creator: bradpython12

Last updated:

Add to Cart

Description:

EC2StepShell 1.1.1

EC2StepShell
EC2StepShell is an AWS post-exploitation tool for getting high privileges reverse shells in public or private EC2 instances.
It works by sending commands to EC2 instances using ssm:SendCommand and then retrieves the output using ssm:ListCommandInvocations or ssm:GetCommandInvocation.
More details about how the tool works can be found here: https://securitycafe.ro/2023/03/08/ec2stepshell-reverse-shells-private-ec2-instances/
Installation
python -m pip install EC2StepShell

Usage
If you target a public EC2 instance, you might be able to get a reverse shell using well known payloads. However, the tool shines for the cases when the instance is in a private network or its security groups don't allow communications with your IP.

python -m ec2stepshell -h


Requirements

You need a programmatic access within the account (temporary/persistent access credentials)
You need two permissions:

ssm:SendCommand
ssm:ListCommandInvocations or ssm:GetCommandInvocation



The action ssm:SendCommand must be granted over the target EC2 instance and the documents:

AWS-RunShellScript
AWS-RunPowerShellScript

You might not be able to verify this. In most cases of misconfigurations, ssm:SendCommand will be granted with *, but if you receive access denied and you're sure that the instance id is correct, then this might be the issue.
Basic usage
# running using the default profile configured in AWS CLI
python -m ec2stepshell $instance_id --region $region

# running using a specific profile configured in AWS CLI
python -m ec2stepshell $instance_id --region $region --profile $profile

# running using persistent access credentials
python -m ec2stepshell $instance_id --region $region --access-key $access_key --secret-key $secret_key

# running using temporary access credentials
python -m ec2stepshell $instance_id --region $region --access-key $access_key --secret-key $secret_key --session-token $session_token

Advanced usage
OS
The OS is detected automatically, however, if you encounter issues, especially for Windows instances, manually specify it with --os
# for MacOS and UNIX instances
python -m ec2stepshell $instance_id --region $region --os linux

# for Windows instances
python -m ec2stepshell $instance_id --region $region --os windows

Delay
There is an initial wait time configured before attempting to retrieve the output. Its default value is 0.7 seconds, but for Windows and low resources instances this might not be enough.
The value can be increased with --delay. For Windows instances, my recommendation is to go for a 3 seconds delay.
# set an initial delay of 2.5 seconds
python -m ec2stepshell $instance_id --region $region --delay 2.5

Retry delay
After the initial wait time passed, the tool will try to retrieve the command's output.
If the command still didn't finished its execution, a new retry delay will come in place as wait time.
This can be adjusted with --retry-delay.
The default value is 0.3 seconds.
# set retry delay of 0.5 seconds
python -m ec2stepshell $instance_id --region $region --retry-delay 0.5

Number of retries
If the command didn't finish its execution, the tool will retry for a number of times to retrieve its output.
This can be adjusted with --max-retries.
The default value is 3.
# increase the maximum number of retries to 5
python -m ec2stepshell $instance_id --region $region --max-retries 5

In-shell commands
Once the shell is established, you get access to a new set of commands. You can view them by typing !help.

If a command didn't finish its execution in the set number of retries, then it will be put in a queue.
You can view this queue and retry manually the commands when you wish. In the meantime, the reverse shell stays open and can be used freely.
The tool will notify when a command didn't finish its execution and couldn't be retrieved. You can check the queue with not retrieved commands using !showqueue.

To manually retry to retrieve the command, you can use !retry command_id.

If the retry worked, then the command will be removed from the queue. To manually clear ALL the commands in the queue, run !clearqueue.
If you have the command id, you can still try to retrieve them later as the command is still valid. It's just not present in the queue.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.