Laravel Security Best Practices – A List of Tips for Coding
In this blog we describe a few easy security mistakes and how to fix them. 1. Not Using HTTPS 2. Using Weak Encryption Keys 3. Not Validating Input Data 4. Storing Sensitive Data in the Codebase 5. Improper File Permissions 6. Not Escaping User-Generated Content {{ $userInput }} // Escaped{!! $userInput !!} // Unescaped (Be careful) 7. Not Limiting Mass Assignment 8. Exposing […]
Laravel Security Best Practices – A List of Tips for Coding Read More »