This article is meant to encourage readers to keep a high standard of what is acceptable for a CAPTCHA in second decade of the 21st century. It is neither meant to be a hacking tutorial nor is it meant to incite any type of malicious behavior. This article is for educational purposes only.
In a good-faith effort to protect the identity of the CAPTCHA provider being targeted throughout this article, some CSS class names and other code changes have been made.
Recently I came across a CAPTCHA on a WordPress site that utilized nothing but simple math (sometimes using the written out word for a number) to prevent automated submissions. I’m here to tell you this isn’t enough. Computers are inherently good at math and parsing written numbers into integers is no longer considered a difficult feat. …
Testing is an important yet often overlooked aspect of building successful Laravel applications. This article will provide an introduction to testing applications written using the Laravel Framework.
For our purposes we’ll be writing feature tests that make HTTP requests to our application and then make assertions about the responses and the state of the application’s database after the request is complete. We will make minimal changes to the authentication scaffolding provided by Laravel and focus on testing the Password Reset feature.
Assuming you are familiar with setting up a new Laravel project, use your terminal and the Laravel installer to create a new project. …
Today we’ll be learning about working with geospatial data, or data relating to geographical locations, in Laravel 5.6. As an exercise for working with this kind of data we’ll be building a simple USA Neighborhood Finder application.
There are three main learning objectives for this article:
In this article we will be building a task list application in Laravel 5.7 complete with a paginated list of tasks per user account, user registration, and password resets.
There are a few things you should be familiar with already in order to get the most out of this article.
To begin, let’s define the basic functionality of our…