• Stars
    star
    170
  • Rank 223,357 (Top 5 %)
  • Language
    JavaScript
  • License
    GNU General Publi...
  • Created almost 4 years ago
  • Updated 11 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

AWS IAM policy generation from application code

iamfast

🚧 EXPERIMENTAL 🚧

IAM policy generation from application code

Installation

npm i -g iamfast

You can also install iamfast as a Visual Studio Code extension.

Usage

Execute iamfast with the first argument being the file or directory (currently slow, not yet recommended) to be scanned.

iamfast yourfile.js

iamfast supports the following programming languages:

  • JavaScript (v2 SDK)
  • Python 3 (Boto3 SDK)
  • Go (v1 SDK)
  • Java (v2 SDK)

Optional Flags

--format <type>: Sets the format of the output, currently supporting json (default), yaml, hcl and sam

Example

> cat tests/js/test1.js
// Load the AWS SDK for Node.js
var AWS = require('aws-sdk');
// Set the region 
AWS.config.update({region: 'us-east-1'});

// Create the DynamoDB service object
var ddb = new AWS.DynamoDB({apiVersion: '2012-08-10'});

var params = {
  TableName: 'CUSTOMER_LIST',
  Item: {
    'CUSTOMER_ID' : {N: '001'},
    'CUSTOMER_NAME' : {S: 'Richard Roe'}
  }
};

// Call DynamoDB to add the item to the table
ddb.putItem(params, function(err, data) {
  if (err) {
    console.log("Error", err);
  } else {
    console.log("Success", data);
  }
});
> iamfast tests/js/test1.js
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "dynamodb:PutItem",
            "Resource": [
                "arn:aws:dynamodb:us-east-1:123456789012:table/CUSTOMER_LIST"
            ]
        }
    ]
}

Test

To run tests:

npm test

Development Progress

File Structure

  • src/AWSParser.js - Generates token streams and calls walkers for individual languages, also maps resource instantiations
  • src/EnvironmentVariable.js - Dedicated class for environment variable type
  • src/IAMFast.js - Generates the actual policies / outputs by referencing the action map and calling AWSParser.js functions
  • src/main.js - CLI setup and entrypoint for non-module use
  • src/lib/<Language>AWSListener.js - Custom listener hooks to track client calls etc. (2nd pass)
  • src/lib/<Language>ScopeListener.js - Custom listener hooks to track variable and function declarations (1st pass)
  • src/lib/<Language>Parser.js - Auto-generated (ANTLR) language parser logic
  • grammars/<Language>Parser.js - Individual ANTLR language definitions, used to generate lib/<Language>Parser.js

General

  • Gather test cases
  • Environment variable referencing in SAM output
  • Online tool for quick evaluation
  • GitHub app

JavaScript

  • Lexing & parsing with ANTLR
  • Custom tree walker
  • Identify standard SDK definitions
  • Identify SDK region
  • Identify advanced SDK definitions
  • Identify client instantiations
  • Identify client calls
  • Identify client calls with advanced method chaining
  • Identify resource instantiations (AWS.S3.ManagedUpload, AWS.DynamoDB.DocumentClient)
  • Identify resource calls
  • Interpret call arguments (top-level, static)
  • Interpret call arguments (top-level, variable)
  • Interpret call arguments (deep, static)
  • Interpret call arguments (deep, variable)
  • Track literal variables
  • Track object variables
  • Track environmental variables
  • Understand scope (build the call stack)
  • Cross-file relationships
  • Understand entrypoints and code accessibility
  • Performance tuning

Python

  • Lexing & parsing with ANTLR
  • Custom tree walker
  • Identify standard SDK definitions
  • Identify SDK region
  • Identify advanced SDK definitions ("as x" etc.)
  • Identify client instantiations
  • Identify client calls
  • Identify client calls with advanced method chaining
  • Identify resource instantiations
  • Identify resource calls
  • Interpret call arguments (top-level, static)
  • Interpret call arguments (top-level, variable)
  • Interpret call arguments (deep, static)
  • Interpret call arguments (deep, variable)
  • Track literal variables
  • Track object variables
  • Track environmental variables
  • Understand scope (build the call stack)
  • Cross-file relationships
  • Understand entrypoints and code accessibility
  • Performance tuning

Go

  • Lexing & parsing with ANTLR
  • Custom tree walker
  • Identify standard SDK definitions
  • Identify SDK region
  • Identify advanced SDK definitions
  • Identify client instantiations
  • Identify client calls
  • Identify client calls with advanced method chaining
  • Interpret call arguments (top-level, static)
  • Interpret call arguments (top-level, variable)
  • Interpret call arguments (deep, static)
  • Interpret call arguments (deep, variable)
  • Track literal variables
  • Track object variables
  • Track environmental variables
  • Understand scope (build the call stack)
  • Cross-file relationships
  • Understand entrypoints and code accessibility
  • Performance tuning

Java

  • Lexing & parsing with ANTLR
  • Custom tree walker
  • Identify standard SDK definitions
  • Identify SDK region
  • Identify advanced SDK definitions
  • Identify client instantiations
  • Identify client calls
  • Identify client calls with advanced method chaining
  • Interpret call arguments (top-level, static)
  • Interpret call arguments (top-level, variable)
  • Interpret call arguments (deep, static)
  • Interpret call arguments (deep, variable)
  • Track literal variables
  • Track object variables
  • Track environmental variables
  • Understand scope (build the call stack)
  • Cross-file relationships
  • Understand entrypoints and code accessibility
  • Performance tuning

C++

  • Lexing & parsing with ANTLR
  • Custom tree walker
  • Identify standard SDK definitions
  • Identify SDK region
  • Identify advanced SDK definitions
  • Identify client instantiations
  • Identify client calls
  • Identify client calls with advanced method chaining
  • Interpret call arguments (top-level, static)
  • Interpret call arguments (top-level, variable)
  • Interpret call arguments (deep, static)
  • Interpret call arguments (deep, variable)
  • Track literal variables
  • Track object variables
  • Track environmental variables
  • Understand scope (build the call stack)
  • Cross-file relationships
  • Understand entrypoints and code accessibility
  • Performance tuning

More Repositories

1

iamlive

Generate an IAM policy from AWS, Azure, or Google Cloud (GCP) calls using client-side monitoring (CSM) or embedded proxy
Go
3,096
star
2

former2

Generate CloudFormation / Terraform / Troposphere templates from your existing AWS resources.
JavaScript
2,228
star
3

AWSConsoleRecorder

Records actions made in the AWS Management Console and outputs the equivalent CLI/SDK commands and CloudFormation/Terraform templates.
CSS
1,425
star
4

aws-account-controller

Self-service creation and deletion of sandbox-style accounts.
JavaScript
344
star
5

iam-dataset

A consolidated cloud IAM dataset
Python
228
star
6

aws-leastprivilege

Generates an IAM policy for the CloudFormation service role that adheres to least privilege.
Python
110
star
7

AWSConsoleRecorderGenerator

A helper extension that is used to assist in the development of the Console Recorder for AWS.
JavaScript
101
star
8

aws.permissions.cloud

A crowdsourced AWS IAM permissions reference.
JavaScript
88
star
9

cloud9-sync

Live Sync for AWS Cloud9 - Synchronize your VS Code workspace with the AWS Cloud9 service.
JavaScript
77
star
10

aws-pagination-rules

The rules for pagination in AWS SDKs
66
star
11

wildfire

Record browser actions then replay immediately. Craft your own custom automation workflows.
JavaScript
65
star
12

aws-bill-export

Download AWS bills from the console programmatically.
JavaScript
59
star
13

cfn-tf-custom-types

CloudFormation Custom Types for Terraform resources.
Python
57
star
14

vscode-aws-cloudshell

(Unofficial) AWS CloudShell plugin for VS Code
TypeScript
54
star
15

iamlive-lambda-extension

Lambda Extension for iamlive
Go
43
star
16

bandersnatch-graph

Graphing all possibilities in the Netflix Black Mirror episode, "Bandersnatch"
Python
42
star
17

censor-shell

Censors or hides shell / Bash / console output based on defined patterns - great for hiding secrets in demos!
Go
41
star
18

hcl2cdktf

Converts HCL to Terraform CDK
JavaScript
40
star
19

cfn-stack-rename

Rename a CloudFormation stack
Python
36
star
20

amazon-connect-cfn

Create Amazon Connect instances, contact flows etc. with CloudFormation
JavaScript
35
star
21

cfn-remediate-drift

Automated CloudFormation drift remediation using Import functionality
Python
26
star
22

tf-cfn-provider

Transform to add support for all Terraform providers as CloudFormation resources.
Python
24
star
23

tree-view-cfn

Force CloudFormation to generate a tree view for any stack
Python
18
star
24

gcp.permissions.cloud

A crowdsourced Google Cloud IAM permissions reference.
JavaScript
18
star
25

azure.permissions.cloud

A crowdsourced Azure RBAC permissions reference.
JavaScript
16
star
26

polai

A Cedar policy language lexer, parser & evaluator
Go
15
star
27

auto-capacity-reservations

Automatically assigns EC2 capacity reservations based on the number of instances active.
Python
14
star
28

codepipeline-cost-compare

Compare the costs of V1 and V2 CodePipeline types based on historic usage
Python
13
star
29

iann0036

Public README
CSS
12
star
30

honeycode-appflow-integration

Add Honeycode as a destination from AppFlow
JavaScript
12
star
31

honeycode-export

Export Honeycode table data to S3
JavaScript
11
star
32

cfn-analyse

CloudFormation static analysis tool.
Python
11
star
33

former2-helper

A browser extension to help avoid CORS issues for former2.com
JavaScript
11
star
34

cfn-guard-rules

A collection of CloudFormation Guard 2.0 rules
Python
10
star
35

iamfast-vscode

AWS IAM policy generation from application code in VS Code
TypeScript
9
star
36

aws-erd

AWS Entity Relationship Diagram Generator.
JavaScript
9
star
37

cfnfmt

CloudFormation template style formatter [WORK IN PROGRESS]
JavaScript
8
star
38

iamfast-python

Python
7
star
39

CloudFormationMultiCloud

Add support for Azure and Google Cloud resources in CloudFormation.
Python
7
star
40

cfn-hooks

CloudFormation Hooks Samples
Python
6
star
41

vpc-lattice-demo

A demonstration stack featuring Amazon VPC Lattice
6
star
42

pg-init-custom-resource

A CloudFormation Custom Resource for initialising an RDS Postgres database.
Python
6
star
43

cfn-rps-lint

Automatically lints your AWS CloudFormation Resource Provider JSON Schema
TypeScript
6
star
44

cfn-types

Example CloudFormation Custom Resource Types
Java
6
star
45

session-manager-cli

Attempts to reverse engineer the AWS Session Manager CLI
Go
6
star
46

cloud9-sso

Add Cloud9 environments to AWS SSO
JavaScript
5
star
47

aurora-activity-streams-sechub

Analyse database activity with Aurora Database Activity Streams and send findings to Security Hub
Python
5
star
48

Lone-Tab

A Chrome extension to have unique sessions per tab.
JavaScript
5
star
49

Security-Hub-Custom-Provider-Demo

An AWS Security Hub Custom Findings provider, using the Have I Been Pwned API
Python
5
star
50

toyxks

Basic (toy) External Key Store for AWS KMS
Go
4
star
51

iamfast-core

[ABANDONED APPROACH] AWS IAM policy generation from application code
TypeScript
4
star
52

chess-dot-com-state-machine-sample

An AWS Step Functions sample using the Chess.com API
3
star
53

deepcomposer-upload

Upload a single-track MIDI to the AWS DeepComposer service
JavaScript
3
star
54

CAP

Common Alerting Protocol
PHP
3
star
55

lambda-codepipeline-custom-action

Lambda-backed custom action type provider for CodePipeline.
3
star
56

Touch-Bar-Browser-Integration

Objective-C
3
star
57

textract-demo

Demonstration of Amazon Textract using its Boto3 library
Python
2
star
58

cedargo

Go bindings for Cedar policy evaluation engine
Rust
2
star
59

iamfast-go

Go
1
star
60

reCaptcha-Breaker-Chrome-Extension

Automatically solves the audio section of the reCAPTCHA system. To use, simply open the audio section of the reCAPTCHA system.
PHP
1
star
61

iamfast-java

Java
1
star
62

aws-cedar-auth-frontend

Frontend for iann0036/aws-cedar-auth
CSS
1
star
63

airjargon

Aviation Terms Translator
HTML
1
star
64

ManicYak

PHP
1
star
65

ManicHost

JavaScript
1
star
66

homebrew-iamlive

Homebrew Formulae for iamlive
Ruby
1
star
67

iac-history

Random work for a chart
Python
1
star
68

newsfeeder

News Feeder is a news feed aggregator service, which compiles content from multiple online content sources. Its main purpose is to provide a single location and format to view news content instead of users having to access multiple websites for their specific news. News Feeder was a University of Wollongong CSCI321 project.
PHP
1
star