Skip to content
View crashGoBoom's full-sized avatar

Organizations

@QuellEM
Block or Report

Block or report crashGoBoom

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. kindlyops/examples kindlyops/examples Public

    Examples of AWS CDK/CloudFormation and other goodies related to security πŸ”, devops πŸ”§ and cloud ⛅️ development

    TypeScript 6 8

  2. kindlyops/murderhornet kindlyops/murderhornet Public

    cloud video experiments with electron, AWS-SSO, and Interactive Video Service

    TypeScript 2 1

  3. aws/aws-cdk aws/aws-cdk Public

    The AWS Cloud Development Kit is a framework for defining cloud infrastructure in code

    TypeScript 11.2k 3.7k

  4. prowler-cloud/prowler prowler-cloud/prowler Public

    Prowler is an Open Source Security tool for AWS, Azure, GCP and Kubernetes to do security assessments, audits, incident response, compliance, continuous monitoring, hardening and forensics readines…

    Python 9.6k 1.4k

  5. Use AWS IAM Policy Simulator with th... Use AWS IAM Policy Simulator with the CLI
    1
    # The action we want to test
    2
    _action="s3:GetObject"
    3
    # The JSON you want to convert to a string
    4
    _json_to_convert='{ "Version": "2012-10-17","Statement": [{"Effect": "Allow","Action": "*","Resource": "*"}]}'
    5
    # Your resource arn goes here
  6. Block non root users from accessing ... Block non root users from accessing ec2 metadata
    1
    #!/bin/bash
    2
    
                  
    3
    # This will block users that are not root from accessing ec2 metadata
    4
    # Prevents users from grabbing the instance credentials
    5
    iptables -A OUTPUT -m owner ! --uid-owner root -d 169.254.169.254 -j DROP