Skip to content

Latest commit

 

History

History
82 lines (63 loc) · 2.62 KB

README.md

File metadata and controls

82 lines (63 loc) · 2.62 KB

Note: This was mostly a scratch space for various ideas. Check out pacu3 for the (initial) rewrite.

Overview

The AWS exploitation framework, designed for testing the security of Amazon Web Services environments.

This project was generated with cookiecutter using jacebrowning/template-python.

Unix Build Status Windows Build Status Coverage Status Scrutinizer Code Quality PyPI Version PyPI License

Usage

$ make docker/dev
$ python -m pacu repl
>
> ** tab **
items users
>
> users
Usage: __main__.py users [OPTIONS] COMMAND [ARGS]...

Options:
  --help  Show this message and exit.

Commands:
  create
  delete
>
> users create my_user
Creating user: my_user

Or alternatively:

$ python3 -m pacu users create my_user
Creating user: my_user

Note: The python3 -m pacu part is only needed for dev, typically it would just be pacu.

Features

Simplified modules

This is a valid module:

def main(name: str = 'test'):
  print(f"Hello {name}")

It can be run as pacu module_name, or in the repl as module_name. It takes an optional string argument name, which defaults to test and outputs a help when run with --help.

> items --help
Usage: __main__.py items [OPTIONS]

Options:
  --name TEXT  [default: test]
  --help       Show this message and exit.
> items
Hello test
> items --name world
Hello world