Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/macmod/cloudpersist
A collection of simple scripts to achieve persistence quick in cloud environments without generating too much noise.
https://github.com/macmod/cloudpersist
aws azure cloud gcp infosec pentest persistence post-exploitation redteam security
Last synced: about 1 month ago
JSON representation
A collection of simple scripts to achieve persistence quick in cloud environments without generating too much noise.
- Host: GitHub
- URL: https://github.com/macmod/cloudpersist
- Owner: Macmod
- License: mit
- Created: 2023-04-20T18:25:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-14T16:17:26.000Z (11 months ago)
- Last Synced: 2023-12-14T17:37:34.628Z (11 months ago)
- Topics: aws, azure, cloud, gcp, infosec, pentest, persistence, post-exploitation, redteam, security
- Language: Shell
- Homepage:
- Size: 9.77 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# CloudPersist
A collection of simple scripts to achieve persistence quick in cloud environments without generating too much noise.
# Usage
## AWS
To use the AWS scripts you must have [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) installed and authenticated (with `aws configure` for instance).
### aws-create-iam-user
Creates an IAM user with a login profile with the specified IAM policy.
This script will try to use the `AdministratorAccess` managed IAM policy by default, but you can also specify a custom policy ARN.Examples:
```bash
$ ./aws-create-iam-user.sh "myuser" "mypassword" "arn:aws:iam::aws:policy/AmazonS3FullAccess"
$ ./aws-create-iam-user.sh "myuser" "mypassword" # Uses AdministratorAccess
```### aws-create-access-key
Creates an access key for the specified IAM user.
Example:
```
$ ./aws-create-access-key myiamuser
```## GCP
To use the GCP scripts you must have [GCP CLI](https://cloud.google.com/sdk/docs/install?hl=pt-br) installed and authenticated (with `gcloud init` or `gcloud auth login` for instance).
### gcp-invite-account
Invites a Google account to an existing GCP project using the specified role.
If a role is not specified, it'll try to use `roles/editor` by default.
Examples:
```bash
$ ./gcp-invite-account.sh my-project-123 "[email protected]" "roles/viewer"
$ ./gcp-invite-account.sh my-project-123 "[email protected]" # Uses roles/editor
```### gcp-gce-exec-ssh
Runs the specified script on a Google Compute Instance via SSH (no need to provide keys, they will be generated and inserted in the VM by `gcloud cli` automatically through the API).
To execute this script you must first obtain the name of your target VM (with `gcloud compute instances list` for example). Then run:
```bash
$ ./gcp-gce-exec-ssh.sh "" ""
```## Azure
To use the Azure scripts you must have [Azure CLI](https://learn.microsoft.com/pt-br/cli/azure/install-azure-cli) installed and authenticated (with `az login` for instance).
### az-create-aad-user
Creates a new user in Azure Active Directory using the specified role.
If a role is not specified, it'll try to use the `Owner` role for the current subscription by default.
Examples:
```bash
$ ./az-create-aad-user.sh "[email protected]" "mypassword" "myname" "Reader"
$ ./az-create-aad-user.sh "[email protected]" "mypassword" "myname" # Uses the "Owner" role by default
```### az-create-aad-service-principal
Creates a new service principal in Azure Active Directory using the specified role.
If a role is not specified, it'll try to use the `Owner` role for the current subscription by default.
Examples:
```bash
$ ./az-create-aad-service-principal.sh "myname" "Reader" "/subscriptions/"
$ ./az-create-aad-service-principal.sh "myname" "Reader" # Uses the current subscription by default
$ ./az-create-aad-service-principal.sh "myname" # Uses the "Owner" role of the current subscription by default
```### az-vm-exec-runcommand
Runs the specified Shell (unix)/PowerShell (windows) command on a list of VMs. Can be used to easily backdoor multiple VMs at once.
To execute this script you must first obtain the resource IDs for your target VMs (with `az vm list` for instance). Then specify them *separated with spaces and enclosed in quotes* in the 1st argument of the script:
```bash
$ ./az-vm-exec-runcommand.sh "" "" # For Shellscript
$ ./az-vm-exec-runcommand.sh "" "" windows # For PowerShell
```The command to run can also be stored in a file and specified with an `@`. Example:
```bash
$ ./az-vm-exec-runcommand.sh "/subscriptions//resourceGroups//providers/Microsoft.Compute/virtualMachines/ /subscriptions//resourceGroups//providers/Microsoft.Compute/virtualMachines/" @persistencescript.sh
```# TODO
* Add more options to existing scripts
* Make powershell version of scripts
* Test scripts more to make sure they're working properly
* Idea - Execute persistence script in existing AWS EC2 / Azure VMs / GCP Compute Instances (similarly to T1525 but on running instances)
* Idea - Provisioning of malicious event-triggered AWS Lambda/GCP Cloud Function/Azure Function (T1546)
* Idea - Make scripts for persistence with cross-account sharing of resources
* Idea - Long-term persistence by adding custom identity providers / custom signup flows (T1556)# License
The MIT License (MIT)Copyright (c) 2023 Artur Henrique Marzano Gonzaga
Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.