Wednesday, January 28, 2015
NYC Blizzard 2015
I am going to break with my traditional technology-based posts to share some images I took during the "blizzard" this past Monday. NYC only wound up getting about eight inches of snow - a lot less than expected.
Thursday, January 15, 2015
Using IAM Roles and S3 to Securely Load Application Credentials
Many applications require certain information to be provided to them at run-time in order to utilize additional services. For example, applications that connect to a database require the database connection URL, a port, a username, and a password. Developers frequently utilize environment variables, which are set on the machine on which the application is running, to provide these credentials to the underlying code. Some developers, against all recommendations, will hard-code the credentials into an application, which then gets checked into git, distributed, etc.
Ideally, the credentials required by an application should not be hard-coded at all, or even accessible to processes outside of the one running the application itself. To achieve this, the application must determine what additional credentials it needs and load them prior to starting its main command.
Many applications that run on Amazon's Web Services platform have the added advantage of being hosted on EC2 instances that can assume specific IAM roles. An IAM role is essentially a definition of access rights that are provided to a particular AWS resource (an EC2 instance in this case). AWS takes care of generating temporary credentials for that instance, rotating them, and ensuring they are provided only to the assigned instance. Additionally, the AWS command line tools and various AWS language-specific SDKs will detect that they are being run on an instance using an IAM role and automatically load the necessary credentials.
As developers, we can take advantage of IAM roles to provide access to credentials that are stored in a private S3 bucket. When the application loads, it will use its IAM role to download the credentials and load them into the environment variables of the process. Then, wherever they are needed, they can simply be called by accessing the environment variable that has been defined.
As an example of this setup, here are the steps I would take to run a Node.js web server that requires some database credentials:
1. Create an S3 bucket called "organization-unique-name-credentials".
2. If you plan to have multiple applications, create a new folder for each within the bucket: "organization-unique-name-credentials/web-app," "organization-unique-name-credentials/app-two," etc. Ensure the proper access rights to each for your existing AWS users.
3. Set encryption on the bucket (you can use either AWS' key or your own).
4. Create a file called credentials.json that looks like this:
{
"DB_URL" : "some-database-connection-string.com",
"DB_PORT" : 3306,
"DB_USER" : "app_user",
"DB_PASS" : "securepass"
}
5. Upload the file to the right S3 bucket and folder (be sure to enable encryption or the upload will fail, assuming you required it for the bucket)
6. Create an IAM role for your instance. In the IAM console, click "Roles," then create a new role, enter a name, select "EC2 Service Role," and give it the following policy (add any other rights the app may need if it accesses other AWS resources):
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": [
"arn:aws:s3:::organization-unique-name-credentials/web-app/credentials.json"
]
}
]
}
7. Launch your EC2 instance, selecting the role you just created.
8. In your code, do the following (node pseudo-code):
var AWS = require('aws-sdk);
AWS.config.region = 'us-east-1';
var s3 = new AWS.S3();
var params = {
Bucket: 'organization-unique-name-credentials',
Key: 'web-app/credentials.json'
}
s3.getObject(params, function(err, data) {
if (err) {
console.log(err);
} else {
data = JSON.parse(data.Body.toString());
for (i in data) {
console.log('Setting environment variable: ' + i);
process.env[i] = data[i];
}
// Load database via db.conn({user:process.env['DB_USER'], password:process.env[
'DB_PASS']}); etc...
}
});
9. Run the app, and you will notice that the environment variables are downloaded from S3 and are set before the database connection is attempted.
If you're using Node.js, I made a module that does exactly this: https://www.npmjs.com/package/secure-credentials
If you're not using Node.js, this technique can be applied to any language that AWS has an SDK for. While it isn't 100% hacker-proof (if someone managed to log into your instance as root, he or she could still modify the source code to display the credentials), but combined with other AWS security mechanisms such as security groups, VPCs with proper network ACLs, etc. it can certainly help. Additionally, it keeps credentials out of the source code.
One final note: if you're running this app locally to test, your machine will obviously not have an EC2 IAM role. When testing locally, it's okay to use AWS keys and secrets, but be sure to keep them in a separate file that is excluded with .gitignore.
Tuesday, January 13, 2015
AWS Cross-Account IAM Roles in CloudFormation
The AWS documentation is relatively sparse when it comes to creating specific IAM role types using CloudFormation. It describes the process of setting up standard roles, attaching roles to instances, etc. but doesn't mention that all of the other role types can also be created using CloudFormation.
For example, when you log into the AWS console and click on "IAM," you see a number of different roles you can create:
AWS Service Roles
Role for Cross-Account Access
Role for Identity Provider Access
However, these role types are merely just different adaptations of the same concept. In the following steps, I'll show how to create a Cross-Account Role using CloudFormation.
1. Add the following to the "Resources" section of your CloudFormation template:
"CrossAccountRole" : {
"Type" : "AWS::IAM::Role",
"Properties" : {
"AssumeRolePolicyDocument" : {
"Statement" : [
{
"Effect" : "Allow",
"Principal" : {
"AWS": "arn:aws:iam::ACCOUNT_NUMBER_HERE:root"
},
"Action" : [
"sts:AssumeRole"
]
}
]
}
}
},
2. Add another resource for the policy:
"CrossAccountPolicy" : {
"Type" : "AWS::IAM::Policy",
"Properties" : {
"PolicyName" : "IAMInstancePolicy",
"PolicyDocument" : {
"Statement" : [
{
"Effect" : "Allow",
"Action" : [
"*"
],
"Resource" : [
"*"
]
}
]
},
"Roles" : [
{ "Ref" : "CrossAccountRole" }
]
}
},
3. Adjust the account number and resources as needed:
This policy gives admin access to any account you specify. To restrict permissions, change the statement section of the policy document as desired.
Monday, January 5, 2015
Quickly Find What is Using Disk Space on Linux
Here's a quick command to find out what folder is consuming the most space on Linux. This will also sort the results to show the most space-consuming folders at the bottom:
du -sh * | sort -h
Run this in the current directory to find the most consuming subdirectory.
Thursday, October 30, 2014
Node.js "Error: too many parameters at queryparse"
If you've been using Express' body-parser and attempting to process large data submissions (aka forms with more than 1000 elements or 1000 sub-elements, you may have run into the following error:
Error: too many parameters
at queryparse (/project/node_modules/body-parser/lib/types/urlencoded.js:120:17)
at parse (/project/node_modules/body-parser/lib/types/urlencoded.js:64:9)
This is due to the fact the urlencode defaults to 1000 parameters by default. If you have a large form or just an abnormally large JSON submission, you'll need to increase this limit by doing the following:
var bodyParser = require('body-parser');
app.use(bodyParser.urlencoded({
extended: false,
parameterLimit: 10000,
limit: 1024 * 1024 * 10
}));
app.use(bodyParser.json({
extended: false,
parameterLimit: 10000,
limit: 1024 * 1024 * 10
}));
This will allow you to provide up to 10,000 parameters (increase as needed) and 10 MB of data (also adjustable).
Tuesday, October 14, 2014
How to Disable SSLv3 on AWS Elastic Load Balancers
In a blog post today, Google announced that a vulnerability in SSLv3 had been found that could allow attackers to intercept data that had previously been assumed to be secured. Luckily, a very small portion of the web (IE6 users on Windows XP) still use SSLv3, so it can safely, for the most part, be disabled to mitigate the risk from this issue.
5) Change the option to "Custom"
6) Uncheck the SSLv3 option
5) Change the policy to "ELBSecurityPolicy-2014-10" which disables SSLv3 for you.
http://googleonlinesecurity.blogspot.com/2014/10/this-poodle-bites-exploiting-ssl-30.html
UPDATE 10/15: As Andrew and Julio point out in the comments below, AWS has since updated their default cipher security policies. Replace steps 5 and 6.
To modify the ciphers on AWS ELBs, follow the following steps:
1) Log into the AWS console and click on "Load Balancers."
2) Find the load balancer that handles your site's traffic (you shouldn't need to worry about internal VPC LBs, etc.)
3) Click the "Listeners" tab
4) Find the HTTPS/443 listener and click "Edit" under the cipher column
5) Change the policy to "ELBSecurityPolicy-2014-10" which disables SSLv3 for you.
6) Save.
This should be sufficient to mitigate this risk with the information that is currently known.
Redirect HTTP to HTTPS Behind AWS Elastic Load Balancer - Node.js and Apache
Apache
When you enable HTTPS for your website, you should enforce that HTTPS is being used by automatically redirecting users who access your site over HTTP to the HTTPS version. When using Apache, this is done via a host redirect entry with mod_rewrite:<VirtualHost *:80>
# Beginning declarations here
RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^.*$ https://%{SERVER_NAME}%{REQUEST_URI}
# Rest of entry here...
</VirtualHost>
Apache Behind an ELB
However, in the Amazon Web Services world, most applications utilize the load balancer as an SSL-termination point. This means that the traffic is decrypted at the load balancer and all traffic being sent to the final destination instances is actually sent over HTTP (from a security standpoint, this is generally an accepted practice as the load balancer and instance are in the same network, and thus secure from eavesdropping). If you used the rule above, your users would wind up in an endless redirect loop.To fix this, the "RewriteCond" needs to be changed to:
RewriteCond %{HTTP:X-Forwarded-Proto} !https
This rule will check to see which protocol the user was using before he or she hit the load balancer - which is what HTTPS redirection should use.
Node.js
When using Node.js, the same thing can be accomplished by inserting some middleware that listens for all traffic and redirects the non-HTTPS requests to their HTTPS equivalents.var myApp = express () ,
myServer = http.createServer(myApp);
myApp.use(function redirectHTTP(req, res, next) {
if (!req.secure) {
return res.redirect('https://' + req.headers.host + req.url);
}
next();
});
Node.js Behind an ELB
Just as in our first Apache example, this works great until it is placed behind a load balancer. If you're using a load balancer, you need to make some modifications. Instead of "req.secure", do the following:if (req.headers['x-forwarded-proto'] && req.headers['x-forwarded-proto'].toLowerCase() === 'http') {
return res.redirect('https://' + req.headers.host + req.url);
}
Using these techniques, you should be able to enforce the new HTTPS version of your website. Remember - if you serve both an HTTPS and an HTTP version of your site, the HTTPS is rendered pointless unless you also redirect the HTTP requests.
Subscribe to:
Posts (Atom)

