Having a strong password policy for your application is a important security requirement for any application. This tutorial shows you how you can apply this to Larvel’s PasswordController, which handles password resets.
- Home
- Posts tagged "Security" (Page 2)
Posts tagged "Security"
AWS EC2: Updating Security Groups using the AWS Command Line Tool
Working with multiple clients with their own AWS setups and security groups makes it difficult to work remotely sometimes. For instance, updating the many security groups with my current (dynamic) IP address so I can SSH into the server. Luckily, I’ve created a script for that.
Amazon Web Services, EC2, SecurityCordova: Changing the Default Debug Keystore for Android Applications
I’ve already covered release signing Android application in Cordova in a previous article, but sometimes you want to do the same for debug builds. By default, Cordova uses it’s own debug keystore, but it’s easy to customise your project to use a keystore of your choice when creating debug builds.
Android, Code Signing, Cordova, Debug, Google Play Store, SecurityCordova: Release Signing Android Applications
If you’re using Cordova 5.x+, it’s easy to configure it to also build signed release builds of your Android application. Providing you’re already created a keystore using the keytool, this tutorial will have you building release builds in minutes.
Android, Code Signing, Cordova, Google Play Store, SecurityCreate Public / Privacy Encryption Keys and Encrypt / Decrypt Data using PHP
In a recent project, I’ve been using public/private key encryption to transmit data from a mobile application to an API, keeping sensitive information secure as a result. This tutorial explains how you can create your own keys, and then use them to encrypt or decrypt data using PHP and OpenSSL.
Encryption, PHP, Public / Private Keys, Security, TutorialCodeIgniter: Using CSRF Tokens to Secure Your Application
Protecting your CodeIgniter application from CSRF / XSRF attacks is easy, thanks to the framework’s security features. CSRF protection can be enabled in a matter of minutes, and it doesn’t take long to make existing forms and AJAX calls compatible with the feature.
CodeIgniter, jQuery, PHP, Security