Laravel

Laravel is a popular open-source PHP web application framework. It's one of the most used frameworks along with Symphony.

Laravel uses Eloquent (ORM), Blade (Templates), and Artisan (CLI).

The easiest way to get started is to use composer:

$ composer create-project --prefer-dist laravel/laravel my_project
$ cd my_project
$ cp .env.example .env
$ php artisan key:generate && php artisan serve # test that it works

Laravel Pentester Notes ☠️

Enumeration

baby_bonechewercon

  • If APP_DEBUG was enabled in .env, triggering an error will lead to sensitive data exposure such as API tokens.