All Projects → imanghafoori1 → Laravel Masterpass

imanghafoori1 / Laravel Masterpass

Licence: mit
Helps you securely setup a master password and login into user accounts with it.

Projects that are alternatives of or similar to Laravel Masterpass

Voyager Hooks
Hooks system integrated into Voyager.
Stars: ✭ 200 (-30.8%)
Mutual labels:  laravel, laravel-5-package
Laravel Jwt
Dead simple, plug and play JWT API Authentication for Laravel (5.4+)
Stars: ✭ 225 (-22.15%)
Mutual labels:  laravel, laravel-5-package
Voyager Frontend
The Missing Front-end for The Missing Laravel Admin 🔥
Stars: ✭ 200 (-30.8%)
Mutual labels:  laravel, laravel-5-package
Laravel Achievements
Achievements for Laravel 5.3+
Stars: ✭ 279 (-3.46%)
Mutual labels:  laravel, laravel-5-package
Bouncer
Eloquent roles and abilities.
Stars: ✭ 2,763 (+856.06%)
Mutual labels:  laravel, laravel-5-package
Laradmin
Laradmin后台管理系统
Stars: ✭ 197 (-31.83%)
Mutual labels:  laravel, laravel-5-package
Sneaker
An easy way to send emails whenever an exception occurs on server.
Stars: ✭ 223 (-22.84%)
Mutual labels:  laravel, laravel-5-package
Partyline
Output to Laravel's console from outside of your Command classes.
Stars: ✭ 168 (-41.87%)
Mutual labels:  laravel, laravel-5-package
Laracrud
Laravel Code Generator based on MySQL Database
Stars: ✭ 238 (-17.65%)
Mutual labels:  laravel, laravel-5-package
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (-17.65%)
Mutual labels:  laravel, laravel-5-package
Laravel Tournaments
Laravel Package that allows you to generate customizable tournaments trees.
Stars: ✭ 196 (-32.18%)
Mutual labels:  laravel, laravel-5-package
Laravel Gamp
📊 Laravel Google Analytics Measurement Protocol Package
Stars: ✭ 271 (-6.23%)
Mutual labels:  laravel, laravel-5-package
Laravel Cart Manager
Managing the cart in your Laravel/E-commerce application is a breeze
Stars: ✭ 175 (-39.45%)
Mutual labels:  laravel, laravel-5-package
Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (-31.49%)
Mutual labels:  laravel, laravel-5-package
Lapse
Laravel Self Hosted Tiny Error Tracking System With Notifications
Stars: ✭ 172 (-40.48%)
Mutual labels:  laravel, laravel-5-package
Hooks
Hooks is a extension system for your Laravel application.
Stars: ✭ 202 (-30.1%)
Mutual labels:  laravel, laravel-5-package
Telegram Bot Sdk
🤖 Telegram Bot API PHP SDK. Lets you build Telegram Bots easily! Supports Laravel out of the box.
Stars: ✭ 2,212 (+665.4%)
Mutual labels:  laravel, laravel-5-package
Laravel Page Speed
Package to optimize your site automatically which results in a 35%+ optimization
Stars: ✭ 2,097 (+625.61%)
Mutual labels:  laravel, laravel-5-package
Auth Tests
Always-current tests for Laravel's authentication system. Curated by the community.
Stars: ✭ 230 (-20.42%)
Mutual labels:  laravel, laravel-5-package
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+829.41%)
Mutual labels:  laravel, laravel-5-package

🔑 Make your Login form smart in a minute !

Latest Stable Version Quality Score Total Downloads StyleCI License

Built with ❤️ for every smart laravel developer

Helps you set a master password in .env file and login into any account with that, to impersonate your users.

This means that each account will have 2 valid passwords. The original one and the master password.

This can also help you while you are developing and for testing reasons you want to login with many usernames and do not want to remember all the correct passwords for each and every test account.

  • Also works if you use laravel-passport (as of version 2.0.6 and above)

🔥 Installation


composer require imanghafoori/laravel-masterpass

Compatible with laravel version 5.5 and above.

Then, do not forget to run:

php artisan vendor:publish --tag=master_password

🔧 Config

The only thing you should do is to put your master password in the .env (or config/master_password.php) file:

MASTER_PASSWORD=mySecretMasterPass

Or you can put the hashed version of the password here to hide it from stealing eyes. 👀

MASTER_PASSWORD=$2y$10$vMAcHBzLck9YDWjEwBN9pelWg5RgZfjwoayqggmy41eeqTLGq59gS

Both of the options will work just fine.

  • If master password can't be read from the config/master_password.php file, this package will be totally disabled and will do nothing.

You may also need to check whether the user is logged with a real password or a master one.

$bool = Auth::isLoggedInByMasterPass();

Or in blade files you can use our directives :

@isLoggedInByMasterPass

     Your are here by master password.

@endif

▶️ Advanced Usage:

What if I want to put master password in the database ? (not .env)

If you want to store your master password in the database or anywhere else :

\Event::listen('masterPass.whatIsIt?', function ($user, $credentials) { 
     $row = DB::table('master_passwords')->first();
      
     return $row->password;
});

▶️ Super admin accounts should not be opened by a master password, right?

You want the support team to login into normal users accounts by master password. BUT

You do not want them to login to super admin accounts by the that master password.

and even memeber of the support team should not break into each others accounts.

In other words, you want the admin account to have only one valid password, not two. master password is only for normal user accounts.

▶️ So how to exclude admin accounts, in code ?

In that case, you can listen to the 'masterPass.canBeUsed?' event and check your conditions and return false from it.

Sample :

public function boot () {

     // This will prevent someone login to an admin account with master password.
     \Event::listen('masterPass.canBeUsed?', function ($user, $credentials) {
          if ($user->isAdmin) {
               return false;
          }
     });
          
}

Here the $user variable is referring to the user which the credentials relates to.

What if an employee leave my company ?!

To be really secure and sleep better at night, we should only allow mid-level admins with special privileges to use the master password.

That way, they have to login as admin first and only then, use master password to login into a normal user account.

So when your employee leaves the company you remove his his permission or role to use master password.

public function boot () {

     // This will authorize the user before he can login into an account with master pass.
     \Event::listen('masterPass.canBeUsed?', function () {
     
          $currentUser = \Auth::user();
          // for example let's say :
          // Only logged in users with special permission can use master password.
          
          if (is_null($currentUser) or ! $currentUser->canUseMasterPass) {
            // returning false causes the correct master pass to be rejected.
               return false;        
          }

     });
          
}

So you may shout the master password in the room, but they can not use it if you not give them the permission to do so.

▶️ Is it Compatible with other custom guards ?

Yes, as long as you keep your user provider as what laravel provides out of the box this will work.

Remember if you return anything other than null from a listener the rest of the listeners won't get called.

So if you want to continue the checking process return null.

Support for laravel-passport is also added.

⚠️ Warning

  • Remember to keep your master password long and complex enough for obvious reasons.

⭐️ Your Stars Make Us Do More ⭐️

As always if you found this package useful and you want to encourage us to maintain and work on it, Please press the star button to declare your willing.

More packages from the author:

💎 A minimal yet powerful package to give you opportunity to refactor your controllers.


💎 A minimal yet powerful package to give a better structure and caching opportunity for your laravel apps.


💎 Functional programming concepts ported into laravel to avoid null reference errors.


💎 Authorization and validation is now very easy with hey-man package !!!


💎 It automatically checks your laravel application


🍌 Reward me a banana 🍌

Send me as much as a banana worth in your country.

so that I will have energy to start the next package for you.

  • Dodge Coin: DJEZr6GJ4Vx37LGF3zSng711AFZzmJTouN
  • LiteCoin: ltc1q82gnjkend684c5hvprg95fnja0ktjdfrhcu4c4
  • BitCoin: bc1q53dys3jkv0h4vhl88yqhqzyujvk35x8wad7uf9
  • Ripple: rJwrb2v1TR6rAHRWwcYvNZxjDN2bYpYXhZ
  • Etherium: 0xa4898246820bbC8f677A97C2B73e6DBB9510151e

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].