All Projects → Scout24 → afp-cli

Scout24 / afp-cli

Licence: Apache-2.0 license
CLI for the AWS Federation Proxy

Programming Languages

python
139335 projects - #7 most used programming language
perl
6916 projects

Projects that are alternatives of or similar to afp-cli

Spraykatz
Credentials gathering tool automating remote procdump and parse of lsass process.
Stars: ✭ 578 (+4346.15%)
Mutual labels:  credentials
Cfn Secret Provider
A CloudFormation custom resource provider for deploying secrets and keys
Stars: ✭ 125 (+861.54%)
Mutual labels:  credentials
Chameleon
Customizable honeypots for monitoring network traffic, bots activities and username\password credentials (DNS, HTTP Proxy, HTTP, HTTPS, SSH, POP3, IMAP, STMP, RDP, VNC, SMB, SOCKS5, Redis, TELNET, Postgres and MySQL)
Stars: ✭ 230 (+1669.23%)
Mutual labels:  credentials
Kubernetes Credentials Provider Plugin
Credentials provider that allows storing credentials in Kubernetes
Stars: ✭ 37 (+184.62%)
Mutual labels:  credentials
Awsenv
awsenv is intended as a local credential store for people using more than one AWS account at the same time
Stars: ✭ 67 (+415.38%)
Mutual labels:  credentials
Keepassbrowserimporter
KeePass 2.x plugin which imports credentials from various browsers.
Stars: ✭ 139 (+969.23%)
Mutual labels:  credentials
Mxtract
mXtract - Memory Extractor & Analyzer
Stars: ✭ 499 (+3738.46%)
Mutual labels:  credentials
ESPAsync WiFiManager Lite
Library using AsyncWebServer to configure MultiWiFi/Credentials at runtime for ESP32 (including ESP32-S2 and ESP32-C3) and ESP8266 boards. You can also specify DHCP HostName, static AP and STA IP. Use much less memory compared to full-fledge WiFiManager. Config Portal will be auto-adjusted to match the number of dynamic custom parameters. Option…
Stars: ✭ 48 (+269.23%)
Mutual labels:  credentials
Dllpasswordfilterimplant
DLL Password Filter Implant with Exfiltration Capabilities
Stars: ✭ 107 (+723.08%)
Mutual labels:  credentials
Leakscraper
LeakScraper is an efficient set of tools to process and visualize huge text files containing credentials. Theses tools are designed to help penetration testers and redteamers doing OSINT by gathering credentials belonging to their target.
Stars: ✭ 227 (+1646.15%)
Mutual labels:  credentials
Creds
Encrypted & plain text credentials for multiple environments
Stars: ✭ 38 (+192.31%)
Mutual labels:  credentials
Aws Secrets Manager Credentials Provider Plugin
AWS Secrets Manager Credentials Provider for Jenkins
Stars: ✭ 45 (+246.15%)
Mutual labels:  credentials
Passcat
Passwords Recovery Tool
Stars: ✭ 164 (+1161.54%)
Mutual labels:  credentials
Envchain
Environment variables meet macOS Keychain and gnome-keyring <3
Stars: ✭ 876 (+6638.46%)
Mutual labels:  credentials
Oprah Proxy
Generate credentials for Opera's "browser VPN"
Stars: ✭ 245 (+1784.62%)
Mutual labels:  credentials
Aws Vault
A vault for securely storing and accessing AWS credentials in development environments
Stars: ✭ 5,626 (+43176.92%)
Mutual labels:  credentials
Cr3dov3r
Know the dangers of credential reuse attacks.
Stars: ✭ 1,700 (+12976.92%)
Mutual labels:  credentials
ggshield
Find and fix 360+ types of hardcoded secrets and 70+ types of infrastructure-as-code misconfigurations.
Stars: ✭ 1,272 (+9684.62%)
Mutual labels:  credentials
Credsleaker
Credsleaker allows an attacker to craft a highly convincing credentials prompt using Windows Security, validate it against the DC and in turn leak it via an HTTP request.
Stars: ✭ 247 (+1800%)
Mutual labels:  credentials
Poshkeepass
PowerShell module for KeePass
Stars: ✭ 177 (+1261.54%)
Mutual labels:  credentials

AFP CLI

Travis build status image Coverage status Code Health Version

Overview

The AFP CLI is the command line interface to access the AWS Federation Proxy (AFP).

Its main use case is starting a new shell where your temporary AWS credentials have been exported into the environment.

Installation

The tool is hosted on PyPi and can be installed using the usual Python specific mechanisms, e.g.:

$ pip install afp-cli

Configuration

The afp command can be configured through yaml files in the following directories:

  • /etc/afp-cli/*.yaml (global configuration)
  • $HOME/.afp-cli/*.yaml (per-user configuration)

The yaml files are read in lexical order and merged via yamlreader. The following configuration options are supported:

  • api_url: <api-url> Defaults to lookup a FQDN of a host named afp via DNS and construct the server url from it: https://{FQDN}/afp-api/latest The specified url must contain full server url (not just the FQDN). This option always takes precedence over server
  • server: <server> The AFP server to use. No default value. If not overridden by api_url (see above), api_url will become http://<server>//afp-api/latest
  • user: <username> Defaults to the currently logged in user-name
  • password-provider: <provider> Viable options are: prompt (default) to prompt for the password during every interaction with the AFP server or keyring to use the Python keyring module. For more info about using the keyring module, see below.

Example:

user: myuser
api_url: https://afp-server.my.domain/afp-api/latest
password-provider: keyring

Usage

Get Help Text

$ afp [-h | --help]

List Available Account Names and Roles

For the currently logged-in user:

$ afp

The same for another user:

$ afp --user=username

Output format:

<accountname>    <role1>,<role2>,...,<roleN>

Example output:

abc_account    some_role_in_abc_account
xyz_account    some_role_in_yxz_account,another_role_in_xyz

Obtain AWS Credentials

This starts a subshell in which the credentials have been exported into the environment. Use the exit command or press CTRL+D to terminate the subshell.

Use credentials for currently logged in user and specified account and role:

$ afp accountname rolename

Use credentials for the currently logged in user for the first role:

$ afp accountname

As above, but specifying a different user:

$ afp --user=username accountname rolename

Specify the URL of the AFP server, overriding any config file:

$ afp --api-url=https://afp-server.my.domain/afp-api/latest

Show and Export

In case you don't want to start a subshell or are using something other than bash, you can use --show or --export to display the credentials. You can use the usual UNIX tools to add/remove them from your environment. --show will just show them and --export will show them in a format suitable for an export into your environment, i.e. prefixed with export for UNIX and set for Windows.

$ afp --show <myaccount> [<myrole>]
Password for myuser:
AWS_VALID_SECONDS='600'
AWS_SESSION_TOKEN='XXX'
AWS_SECURITY_TOKEN='XXX'
AWS_SECRET_ACCESS_KEY='XXX'
AWS_EXPIRATION_DATE='1970-01-01T01:00:00Z'
AWS_ACCESS_KEY_ID='XXX'
$ afp --export <myaccount> [<myrole>]
Password for myuser:
export AWS_VALID_SECONDS='600'
export AWS_SESSION_TOKEN='XXX'
export AWS_SECURITY_TOKEN='XXX'
export AWS_SECRET_ACCESS_KEY='XXX'
export AWS_EXPIRATION_DATE='1970-01-01T01:00:00Z'
export AWS_ACCESS_KEY_ID='XXX'

The following examples work in zsh, to add and remove them from your environment:

Adding credentials:

$ eval $(afp --export <accountname>)

Removing them again:

$ env | grep AWS | cut -f 1 -d'=' | while read line ; do ; unset $line ; done ;

Write to AWS Credentials File

The AWS tools read credentials specified with aws configure from a local file named credentials in a folder named .aws in your home directory. The afp-cli tool can write your temporary credentials to this file.

$ afp --write <myaccount> [<myrole>]

Configuration Settings and Precedence

Please read the section on Configuration Settings and Precedence from the AWS documentation.

Interface with the System Keyring

Starting with version 1.3.0, experimental support for the Python keyring module has been implemented. This has been tested with the Gnome Keyring and Max OS X Keychain but supposedly also works with Windows Credential Vault. You can configure this feature using the config file as shown above or with a command-line switch.

Example command-line:

$ afp --password-provider keyring
No password found in keychain, please enter it now to store it.
Password for user:

You will be prompted for your password the first time. Note that if you fail to enter the password correctly, the incorrect version will be stored. Note further that if you are using the Gnome-Keychain you can use the tool seahorse to update and delete saved passwords, in this case for the service afp.

Keyring on MacOS X

On some MacOS systems, storing the password works fine, but fetching it fails with Can't fetch password from system. This is due to a change in the 'keyring' module, introduced in version 9.0. As a workaround, downgrade to the previous version with pip install keyring==8.7

Keyring with Gnome-Keychain

There is an intricate caveat when using the keyring module with Gnome-Keychain. But before discussing this, it is important to mention that the keyring module uses another module, namely secretstorage under the hood.

In order for the keyring module to correctly use the Gnome Keychain the Python module PyGObject aka gi is required. As stated on the project website: "PyGObject is a Python extension module that gives clean and consistent access to the entire GNOME software platform through the use of GObject Introspection." Now, unfortunately, even though this project is available on PyPi it can not be installed from there using pip due to issues with the build system. It is however available as a system package for Ubuntu distributions as python-gi.

Long story short, in order to use the keyring module from afp-cli you need to have the gi module available to your Python interpreter. You can achieve this, for example, by doing a global install of afp-cli using something like sudo pip install afp-cli or install it into a virtual environment that uses the system site packages because it has been created with the --system-site-packages flag. In case the gi module is not available and you try to use the keyring module anyway, afp-cli will exit with an appropriate error message. Lastly, if in doubt, you can use the --debug switch to check at runtime which backend was selected.

License

Copyright 2015,2016 Immobilien Scout GmbH

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

See Also

See Hologram for another solution that brings temporary AWS credentials onto developer desktops.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].