HackerTrans
TopNewTrendsCommentsPastAskShowJobs

simzor

no profile record

Submissions

Six European Boostrapped Startups

sifted.eu
1 points·by simzor·4 года назад·0 comments

GitHub Having Issues

githubstatus.com
79 points·by simzor·5 лет назад·41 comments

Hello Kitty Ransomware Targets ESXi Servers

bleepingcomputer.com
2 points·by simzor·5 лет назад·0 comments

GitHub Having Problems Again

githubstatus.com
2 points·by simzor·5 лет назад·0 comments

comments

simzor
·4 года назад·discuss
Thank you!!
simzor
·4 года назад·discuss
Makes operating AWS CLI against a user with MFA enabled easier

---------

#!/bin/sh

echo "Store and retrieve session token AWS STS \n\n"

# Get source profile read -p "Source Profile [<profile_name>]: " source_profile source_profile=${source_profile:-'<profile_name>'} echo $source_profile

# Get destination profile read -p "Destination Profile [<profile_name>-mfa]: " destination_profile destination_profile=${destination_profile:-'<profile_name>-mfa'} echo $destination_profile

mfa_serial_number='arn:aws:iam::<id>:mfa/<name>'

echo "\nOTP: " read -p "One Time Password (OTP): " otp

echo "\nOTP:" $otp echo "\n"

output=$(aws sts get-session-token --profile <profile_name> --serial-number $mfa_serial_number --output json --token-code $otp)

echo $output

access_key_id=$(echo $output | jq .Credentials.AccessKeyId | tr -d '"') secret_access_key=$(echo $output | jq .Credentials.SecretAccessKey | tr -d '"') session_token=$(echo $output | jq .Credentials.SessionToken | tr -d '"')

aws configure set aws_access_key_id $access_key_id --profile=$destination_profile aws configure set aws_secret_access_key $secret_access_key --profile=$destination_profile aws configure set aws_session_token $session_token --profile=$destination_profile

echo "Configured AWS for profile" $destination_profile
simzor
·5 лет назад·discuss
Haha. To be fair GitHub has had a lot of issues that last few months though.
simzor
·5 лет назад·discuss
Is the server down due to HN traffic? :P
simzor
·5 лет назад·discuss
When I first started working from home because of the pandemic, I had a IKEA Marcus chair, however, this soon was too bad of a chair to sit all day in, so I ended up investing in a Herman Miller Embody, and have not been looking back since. Great chair!
simzor
·5 лет назад·discuss
First thing that came to mind is that you should set a max width of the content container. For those of us that have a ultrawide for example, it can become hard to read when the content spans the entire screen.
simzor
·5 лет назад·discuss
I like that idea :D
simzor
·5 лет назад·discuss
This reminds me that we should get ChaosMonkey up and running. :D
simzor
·5 лет назад·discuss
Are they also having issues with Webhooks and/or pushes? Had some slowdowns for pushes, and webhooks does not seem to be triggering.
simzor
·5 лет назад·discuss
This looks great. Is there something similar that supports PHP?