age is a simple, modern file
encryption tool for sharing secrets via public-key encryption.
macOS
brew install ageage is a simple, modern file
encryption tool for sharing secrets via public-key encryption.
macOS
brew install ageTwo bash scripts for creating and managing AWS EC2 instances with automatic tagging and lifecycle management.
Creates multiple EC2 instances from a specified AMI with automatic tagging for project organization. Features:
Use Case: Complete security audit of any software application with focus on privacy, data handling, and verification of marketing claims
Key Principle: Never trust claims without code evidence - "Trust but verify" through systematic analysis
I need you to perform a comprehensive security analysis of this codebase. I'm considering using this application but want to verify it's actually secure before trusting it with sensitive data.
| claude mcp add aws-core \ | |
| -e FASTMCP_LOG_LEVEL=ERROR \ | |
| -- uvx "awslabs.core-mcp-server@latest" | |
| claude mcp add aws-docs \ | |
| -e FASTMCP_LOG_LEVEL=ERROR \ | |
| -- uvx "awslabs.aws-documentation-mcp-server@latest" | |
| claude mcp add aws-terraform \ |
| { | |
| "$schema": "https://schema.management.azure.com/schemas/0.1.2-preview/CreateUIDefinition.MultiVm.json#", | |
| "handler": "Microsoft.Azure.CreateUIDef", | |
| "version": "0.1.2-preview", | |
| "parameters": { | |
| "basics": [ | |
| { | |
| "name": "vmName", | |
| "type": "Microsoft.Common.TextBox", | |
| "label": "Virtual Machine Name", |
| #################### | |
| # IAM user need to have "ec2:DescribeInstanceTypeOfferings" permission to be able to run this | |
| #################### | |
| #!/bin/bash | |
| instance_type=g5g.2xlarge | |
| echo "Region $instance_type Availability" | |
| echo "------ -------------------------" |
I hereby claim:
To claim this, I am signing this object:
| #-------------------------------------------------------------- | |
| # Create an EC2 machine, bootstrap with ansible | |
| # | |
| resource "aws_instance" "ec2-linux" { | |
| ami = "ami-a4c7edb2" | |
| vpc_security_group_ids = ["${aws_security_group.allow-all-test-sg.id}"] | |
| key_name = "${var.private_ssh_key}" | |
| instance_type = "t2.nano" |
| #!/bin/bash | |
| aws ec2 \ | |
| --region us-east-1 describe-images \ | |
| --filters \ | |
| 'Name=architecture,Values=x86_64' \ | |
| 'Name=root-device-type,Values=ebs' \ | |
| 'Name=state,Values=available' \ | |
| 'Name=virtualization-type,Values=hvm' \ | |
| 'Name=image-type,Values=machine' \ |
| # For more information on configuration, see: | |
| # * Official English Documentation: http://nginx.org/en/docs/ | |
| # * Official Russian Documentation: http://nginx.org/ru/docs/ | |
| user nginx; | |
| worker_processes auto; | |
| error_log /var/log/nginx/error.log; | |
| pid /var/run/nginx.pid; | |
| # Load dynamic modules. See /usr/share/nginx/README.dynamic. |