1000 search results

Updating security, translation & validator Recipes

…more main Symfony recipes to update. Let's get to it! The next one is for security-bundle. Update it: composer recipes:install symfony/security-bundle --force -v And then run: git add -p Woh! It looks like it made a lot of changes! But..…

5:08
Symfony Security: Beautiful Authentication, Powerful Authorization

…with roles, voters and other good stuff: Making a User with the fancy new make:user command (ooOOOoo) Security & Firewall Fundamentals Creating a custom login form CSRF protection API token authentication system All about Guard authentication User Providers (why you need them, but don't…

33 videos
|
3:34:13
Symfony Security Voters (free cookies!)

…Symfony Voters are the work horses of authorization. But they're not well-understood and are totally under-utilized. So let's take our wild security business logic and see how a customer voter can centralize things and make your controller and templates dead simple.

1 videos
|
14:28
Installing the Security Bundle

Hey Friends! Welcome to the Symfony Security course! In this tutorial, we're going to explore one of the most important parts of any web application: controlling who can access your site and what they're allowed to do once they're inside. To help…

6:09
Composer Audit and Security Updates

…the rule. Whenever possible, upgrading to a patched version is the safest option. Let's remove this ignore configuration and fix the issue properly. Update our dependencies with: symfony composer update No security vulnerability advisories found. Sweet, that seemed to have done it. Double check…

7:39
DTO Validation & Security

…Validation, check! The next thing we need to re-add - code that used to live on User - is security. Up here on the API level, for the entire resource, require is_granted("ROLE_USER"). This means that we need to be logged in to use…

6:13
Deny Access with The "security" Option

…scope is called SCOPE_TREASURE_CREATE... which maps to ROLE_TREASURE_CREATE. So we look for that. Also, in security.yaml, via role_hierarchy, if you log in via the login form, you get ROLE_FULL_USER... and then you automatically also get ROLE_TREASURE…

7:11
composer require security

…Oh, but see this enable_authenticator_manager key? In Symfony 5.3 - the version I'm using - the old and new security systems live side-by-side and you get to choose which one you want! When you set enable_authenticator_manager to true, you…

5:07
Improving Javascript Event Security

…simultaneously. But, let's take a moment to look at our handleCheckout() action. We may have a potential security issue on our hands here. Malicious users might attempt to send an AJAX request to this endpoint using a different LemonSqueezy customer ID. This could override…

4:35
Symfony 5 Security: Authenticators

It's security time! Symfony 5.3 comes with a reimagined version of its security system and I ❤️it! Yes, it's still super flexible & dependable. But the "guts" have been streamlined and simplified, making it easier to get your job done and giving you…

47 videos
|
4:41:51
Creating a Security Event Subscriber

…at any time during the authentication process, we can throw an AuthenticationException - from Security - and that will cause authentication to fail: And there are a bunch of subclasses to this class, like BadCredentialsException. You can throw any of these because they all extend AuthenticationException. Check…

8:47
Hello API Security + API Docs on Production?

…if you want to hide your documentation so that nobody will use your API, that's a bad plan. That's security through obscurity. If your API lives out on the web, you need to assume people will find it and you need to properly…

8:55
A bit of Security Cleanup

…that we need to clean up. In ArticleAdminController, we created this endpoint... but we didn't add any security on it! It's open entirely to the world: there's no @IsGranted annotation above the method or above the class. Now... this might be ok …

7:02
Design Config & Security Setup

…and "Design Configuration". Before we keep going... we need to talk security! Because right now, I can log out and go back to /easyadmin with no problem. This is totally open to the public. Fun! How can we configure security in EasyAdminBundle? We don't…

4:16
Configuring the Encoder in security.yml

…I kept saying we would encrypt the passwords with bcrypt? Do you remember actually configuring that anywhere? Nope! We need to do that. Open security.yml. Add an encoders key, then AppBundle\Entity\User: bcrypt: If you want, you can configure a few other options…

3:07
Migrating Services & Security

…to say if $targetPath = $this->getTargetPath() with $request->getSession() and main. Let's break this down. First, the main string is just the name of our firewall. In both the old and new security config, that's its key. Second, what does getTargetPath() do…

8:03
Symfony 3 Security: Beautiful Authentication, Powerful Authorization

…Then, we'll turn to authorization, with roles, voters and other good stuff: Security & Firewall Fundamentals Creating a custom login form Making a User (ooOOOoo) User Providers (why you need them, but don't care) Password Encryption Logging out! Protecting entire URLs with access_control…

21 videos
|
1:22:39
Course

Learn APIs

API Platform 3 Part 2: Security for your Treasures

Here be dragons! We've built a pretty sweet API for storing dragon treasures... but we've completely neglected one minor detail: security! In this tutorial, we'll secure our API Platform-powered API in every way imaginable... and spin up a nifty test suite…

37 videos
|
3:43:31