!C99Shell v. 2.0 [PHP 7 Update] [25.02.2019]!

Software: nginx/1.23.4. PHP/5.6.40-65+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux foro-restaurado-2 5.15.0-1040-oracle #46-Ubuntu SMP Fri Jul 14 21:47:21 UTC 2023
aarch64
 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/usr/share/nginx/html/phpbb3/language/es/acp/   drwxrwxr-x
Free 83.33 GB of 96.73 GB (86.14%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     permissions_phpbb.php (14.67 KB)      -rw-rw-r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/**
    *
    * This program is the full and free Spanish (of Spain) phpBB 3.0 Translation.
    * Copyright (c) 2007 Huan Manwe for phpbb-es.com
    *
    * This program is free software; you can redistribute it and/or modify
    * it under the terms of the GNU General Public License as published by
    * the Free Software Foundation; either version 2 of the License, or
    * (at your option) any later version.
    *
    * This program is distributed in the hope that it will be useful,
    * but WITHOUT ANY WARRANTY; without even the implied warranty of
    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
    * GNU General Public License for more details.
    *
    * You should have received a copy of the GNU General Public License along
    * with this program; if not, write to the Free Software Foundation, Inc.,
    * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
    *
    */
    
// ’ » " " …

/**
*
* This program is the full and free Spanish (of Spain) phpBB 3.0 Translation.
* Copyright (c) 2007 Huan Manwe for phpbb-es.com
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
**/

/** 
* acp_permissions_phpbb.php [Spanish [Es]]
*
* @package language
* @version $Id: $
* @copyright (c) 2007 phpBB Group. Modified by Huan Manwe for phpbb-es.com in 2007 
* @author 2007-11-26 - Traducido por Huan Manwe junto con phpbb-es.com (http://www.phpbb-es.com) basado en la version argentina hecha por larveando.com.ar ).
* @author - ImagePack made by Xoom (webmaster of http://www.muchografico.com and colaborator of http://www.phpbb-es.com) 
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
    exit;
}

if (empty(
$lang) || !is_array($lang))
{
    
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

/**
*    MODDERS PLEASE NOTE
*    
*    You are able to put your permission sets into a separate file too by
*    prefixing the new file with permissions_ and putting it into the acp
*    language folder.
*
*    An example of how the file could look like:
*
*    <code>
*
*    if (empty($lang) || !is_array($lang))
*    {
*        $lang = array();
*    }
*
*    // Adding new category
*    $lang['permission_cat']['bugs'] = 'Bugs';
*
*    // Adding new permission set
*    $lang['permission_type']['bug_'] = 'Bug Permissions';
*
*    // Adding the permissions
*    $lang = array_merge($lang, array(
*        'acl_bug_view'        => array('lang' => 'Can view bug reports', 'cat' => 'bugs'),
*        'acl_bug_post'        => array('lang' => 'Can post bugs', 'cat' => 'post'), // Using a phpBB category here
*    ));
*
*    </code>
*/

// Define categories and permission types
$lang array_merge($lang, array(
    
'permission_cat'    => array(
        
'actions'        => 'Acciones',
        
'content'        => 'Contenido',
        
'forums'        => 'Foros',
        
'misc'            => 'Varios',
        
'permissions'    => 'Permisos',
        
'pm'            => 'Mensajes privados',
        
'polls'            => 'Encuestas',
        
'post'            => 'Mensaje',
        
'post_actions'    => 'Acciones en mensaje',
        
'posting'        => 'Envío',
        
'profile'        => 'Perfil',
        
'settings'        => 'Configuración',
        
'topic_actions'    => 'Acciones en temas',
        
'user_group'    => 'Usuarios &amp; Grupos',
    ),

    
// With defining 'global' here we are able to specify what is printed out if the permission is within the global scope.
    
'permission_type'    => array(
        
'u_'            => 'Permisos de usuario',
        
'a_'            => 'Permisos de Admin',
        
'm_'            => 'Permisos de moderador',
        
'f_'            => 'Permisos de Foro',
        
'global'        => array(
            
'm_'        => 'Permisos moderador global',
        ),
    ),
));

// User Permissions
$lang array_merge($lang, array(
    
'acl_u_viewprofile'    => array('lang'    => 'Puede ver perfiles','cat'    => 'profile',),
    
'acl_u_chgname'        => array('lang'    => 'Puede cambiar nombre de usuario','cat'    => 'profile',),
    
'acl_u_chgpasswd'    => array('lang'    => 'Puede cambiar contraseña','cat'    => 'profile',),
    
'acl_u_chgemail'    => array('lang'    => 'Puede cambiar email','cat'    => 'profile',),
    
'acl_u_chgavatar'    => array('lang'    => 'Puede cambiar avatar','cat'    => 'profile',),'acl_u_chggrp'    => array('lang'    => 'Puede cambiar grupo de usuarios por defecto','cat'    => 'profile',),
    
'acl_u_chggrp'        => array('lang' => 'Puede cambiar el grupo de usuarios por defecto''cat' => 'profile'),

    
'acl_u_attach'        => array('lang'    => 'Puede adjuntar archivos','cat'    => 'post',),
    
'acl_u_download'    => array('lang'    => 'Puede descargar archivos','cat'    => 'post',),
    
'acl_u_savedrafts'    => array('lang'    => 'Puede guardar borradores','cat'    => 'post',),
    
'acl_u_chgcensors'    => array('lang'    => 'Puede deshabilitar censura','cat'    => 'post',),
    
'acl_u_sig'            => array('lang'    => 'Puede usar firma','cat'    => 'post',),

    
'acl_u_sendpm'        => array('lang'    => 'Puede enviar mensajes privados','cat'    => 'pm',),
    
'acl_u_masspm'        => array('lang'    => 'Puede enviar mensajes a múltiples usuarios','cat'    => 'pm',),
    
'acl_u_masspm_group'=> array('lang' => 'Puede enviar mensajes a grupos''cat' => 'pm'),
    
'acl_u_readpm'        => array('lang'    => 'Puede leer mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_edit'        => array('lang'    => 'Puede editar sus mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_delete'    => array('lang'    => 'Puede borrar mensajes privados de su carpeta','cat'    => 'pm',),
    
'acl_u_pm_forward'    => array('lang'    => 'Puede reenviar mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_emailpm'    => array('lang'    => 'Puede enviar mp por email','cat'    => 'pm',),
    
'acl_u_pm_printpm'    => array('lang'    => 'Puede imprimir mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_attach'    => array('lang'    => 'Puede adjuntar archivos en mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_download'    => array('lang'    => 'Puede descargar archivos en mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_bbcode'    => array('lang'    => 'Puede usar BBCode en mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_smilies'    => array('lang'    => 'Puede usar emoticonos en mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_img'        => array('lang'    => 'Puede usar imagenes en mensajes privados','cat'    => 'pm',),
    
'acl_u_pm_flash'    => array('lang'    => 'Puede usar Flash en mensajes privados','cat'    => 'pm',),

    
'acl_u_sendemail'    => array('lang'    => 'Puede enviar emails','cat'    => 'misc',),
    
'acl_u_sendim'        => array('lang'    => 'Puede enviar mensajes instantáneos','cat'    => 'misc',),
    
'acl_u_ignoreflood'    => array('lang'    => 'Puede ignorar límite de saturación','cat'    => 'misc',),
    
'acl_u_hideonline'    => array('lang'    => 'Puede ocultar estado de conexión','cat'    => 'misc',),
    
'acl_u_viewonline'    => array('lang'    => 'Puede ver online','cat'    => 'misc',),
    
'acl_u_search'        => array('lang'    => 'Puede hacer búsquedas','cat'    => 'misc',),
));

// Forum Permissions
$lang array_merge($lang, array(
    
'acl_f_list'    => array('lang'    => 'Puede ver foros','cat'    => 'post',),
    
'acl_f_read'    => array('lang'    => 'Puede leer foros','cat'    => 'post',),
    
'acl_f_post'    => array('lang'    => 'Puede iniciar nuevos temas','cat'    => 'post',),
    
'acl_f_reply'    => array('lang'    => 'Puede responder temas','cat'    => 'post',),
    
'acl_f_icons'    => array('lang'    => 'Puede usar emoticonos en mensajes','cat'    => 'post',),
    
'acl_f_announce'    => array('lang'    => 'Puede publicar anuncios','cat'    => 'post',),
    
'acl_f_sticky'    => array('lang'    => 'Puede publicar fijos','cat'    => 'post',),

    
'acl_f_poll'    => array('lang'    => 'Puede hacer encuestas','cat'    => 'polls',),
    
'acl_f_vote'    => array('lang'    => 'Puede votar en encuestas','cat'    => 'polls',),
    
'acl_f_votechg'    => array('lang'    => 'Puede cambiar una encuesta existente','cat'    => 'polls',),

    
'acl_f_attach'    => array('lang'    => 'Puede adjuntar archivos','cat'    => 'content',),
    
'acl_f_download'    => array('lang'    => 'Puede descargar archivos','cat'    => 'content',),
    
'acl_f_sigs'    => array('lang'    => 'Puede usar firmas','cat'    => 'content',),
    
'acl_f_bbcode'    => array('lang'    => 'Puede usar BBCode','cat'    => 'content',),
    
'acl_f_smilies'    => array('lang'    => 'Puede usar emoticonos','cat'    => 'content',),
    
'acl_f_img'    => array('lang'    => 'Puede enviar imagenes','cat'    => 'content',),
    
'acl_f_flash'    => array('lang'    => 'Puede usar Flash','cat'    => 'content',),

    
'acl_f_edit'    => array('lang'    => 'Puede editar sus mensajes','cat'    => 'actions',),
    
'acl_f_delete'    => array('lang'    => 'Puede borrar sus mensajes','cat'    => 'actions',),
    
'acl_f_user_lock'    => array('lang'    => 'Puede bloquear sus mensajes','cat'    => 'actions',),
    
'acl_f_bump'    => array('lang'    => 'Puede activar temas','cat'    => 'actions',),
    
'acl_f_report'    => array('lang'    => 'Puede reportar mensajes','cat'    => 'actions',),
    
'acl_f_subscribe'    => array('lang'    => 'Puede suscribir a foros','cat'    => 'actions',),
    
'acl_f_print'    => array('lang'    => 'Puede imprimir temas','cat'    => 'actions',),
    
'acl_f_email'    => array('lang'    => 'Puede enviar temas por email','cat'    => 'actions',),

    
'acl_f_search'    => array('lang'    => 'Puede buscar en foros','cat'    => 'misc',),
    
'acl_f_ignoreflood'    => array('lang'    => 'Puede ignorar límite de saturación','cat'    => 'misc',),
    
'acl_f_postcount'    => array('lang'    => 'Incrementar cuenta de mensaje<br /><em>Por favor obsérvese que este parámetro solo afecta a mensajes nuevos.</em>','cat'    => 'misc',),
    
'acl_f_noapprove'    => array('lang'    => 'Puede publicar sin aprobación','cat'    => 'misc',),
));

// Moderator Permissions
$lang array_merge($lang, array(
    
'acl_m_edit'    => array('lang'    => 'Puede editar mensajes','cat'    => 'post_actions',),
    
'acl_m_delete'    => array('lang'    => 'Puede borrar mensajes','cat'    => 'post_actions',),
    
'acl_m_approve'    => array('lang'    => 'Puede aprobar mensajes','cat'    => 'post_actions',),
    
'acl_m_report'    => array('lang'    => 'Puede cerrar y borrar informes','cat'    => 'post_actions',),
    
'acl_m_chgposter'    => array('lang'    => 'Puede cambiar autor en mensajes','cat'    => 'post_actions',),

    
'acl_m_move'    => array('lang'    => 'Puede mover temas','cat'    => 'topic_actions',),
    
'acl_m_lock'    => array('lang'    => 'Puede bloquear temas','cat'    => 'topic_actions',),
    
'acl_m_split'    => array('lang'    => 'Puede dividir temas','cat'    => 'topic_actions',),
    
'acl_m_merge'    => array('lang'    => 'Puede unir temas','cat'    => 'topic_actions',),

    
'acl_m_info'    => array('lang'    => 'Puede ver detalles de mensaje','cat'    => 'misc',),
    
'acl_m_warn'    => array('lang'    => 'Puede hacer advertencia','cat'    => 'misc',),
    
'acl_m_ban'    => array('lang'    => 'Puede administrar exclusiones','cat'    => 'misc',),
));

// Admin Permissions
$lang array_merge($lang, array(
    
'acl_a_board'    => array('lang'    => 'Puede modificar configuración de sitio/verificar actualizaciones','cat'    => 'settings',),
    
'acl_a_server'    => array('lang'    => 'Puede modificar configuración de servidor/comunicación','cat'    => 'settings',),
    
'acl_a_jabber'    => array('lang'    => 'Puede modificar parámetros Jabber','cat'    => 'settings',),
    
'acl_a_phpinfo'    => array('lang'    => 'Puede ver configuración de PHP','cat'    => 'settings',),

    
'acl_a_forum'    => array('lang'    => 'Puede administrar foros','cat'    => 'forums',),
    
'acl_a_forumadd'    => array('lang'    => 'Puede agregar nuevos foros','cat'    => 'forums',),
    
'acl_a_forumdel'    => array('lang'    => 'Puede borrar foros','cat'    => 'forums',),
    
'acl_a_prune'    => array('lang'    => 'Puede purgar foros','cat'    => 'forums',),

    
'acl_a_icons'    => array('lang'    => 'Puede modificar iconos de tema y emoticonos','cat'    => 'posting',),
    
'acl_a_words'    => array('lang'    => 'Puede modificar palabras censuradas','cat'    => 'posting',),
    
'acl_a_bbcode'    => array('lang'    => 'Puede definir código BBCode','cat'    => 'posting',),
    
'acl_a_attach'    => array('lang'    => 'Puede modificar parámetros relativos a adjuntos','cat'    => 'posting',),

    
'acl_a_user'    => array('lang'    => 'Puede administrar usuarios','cat'    => 'user_group',),
    
'acl_a_userdel'    => array('lang'    => 'Puede borrar/purgar usuarios','cat'    => 'user_group',),
    
'acl_a_group'    => array('lang'    => 'Puede administrar grupos','cat'    => 'user_group',),
    
'acl_a_groupadd'    => array('lang'    => 'Puede agregar nuevos grupos','cat'    => 'user_group',),
    
'acl_a_groupdel'    => array('lang'    => 'Puede borrar grupos','cat'    => 'user_group',),
    
'acl_a_ranks'    => array('lang'    => 'Puede manejar rangos','cat'    => 'user_group',),
    
'acl_a_profile'    => array('lang'    => 'Puede administrar campos de perfil personalizados','cat'    => 'user_group',),
    
'acl_a_names'    => array('lang'    => 'Puede administrar nombres deshabilitados','cat'    => 'user_group',),
    
'acl_a_ban'    => array('lang'    => 'Puede administrar exclusiones','cat'    => 'user_group',),

    
'acl_a_viewauth'    => array('lang'    => 'Puede ver máscaras de permisos','cat'    => 'permissions',),
    
'acl_a_authgroups'    => array('lang'    => 'Puede modificar permisos para grupos individuales','cat'    => 'permissions',),
    
'acl_a_authusers'    => array('lang'    => 'Puede modificar permisos para usuarios individuales','cat'    => 'permissions',),
    
'acl_a_fauth'    => array('lang'    => 'Puede modificar tipos de permisos de foros','cat'    => 'permissions',),
    
'acl_a_mauth'    => array('lang'    => 'Puede modificar tipos de permisos de moderadores','cat'    => 'permissions',),
    
'acl_a_aauth'    => array('lang'    => 'Puede modificar tipos de permisos de Admin','cat'    => 'permissions',),
    
'acl_a_uauth'    => array('lang'    => 'Puede modificar tipos de permisos de usuario','cat'    => 'permissions',),
    
'acl_a_roles'    => array('lang'    => 'Puede administrar roles','cat'    => 'permissions',),
    
'acl_a_switchperm'    => array('lang'    => 'Puede usar otros permisos','cat'    => 'permissions',),
    
    
'acl_a_styles'    => array('lang'    => 'Puede administrar estilos','cat'    => 'misc',),
    
'acl_a_viewlogs'    => array('lang'    => 'Puede ver registros','cat'    => 'misc',),
    
'acl_a_clearlogs'    => array('lang'    => 'Puede limpiar registros','cat'    => 'misc',),'acl_a_modules'    => array('lang'    => 'Puede administrar módulos','cat'    => 'misc',),
    
'acl_a_modules'        => array('lang' => 'Puede administrar modulos''cat' => 'misc'),
    
'acl_a_language'    => array('lang'    => 'Puede administrar paquetes de idioma','cat'    => 'misc',),
    
'acl_a_email'    => array('lang'    => 'Puede enviar emails masivos','cat'    => 'misc',),
    
'acl_a_bots'    => array('lang'    => 'Puede administrar bots','cat'    => 'misc',),
    
'acl_a_reasons'    => array('lang'    => 'Puede administrar motivos de reporte/negación','cat'    => 'misc',),
    
'acl_a_backup'    => array('lang'    => 'Puede resguardar/restaurar base de datos','cat'    => 'misc',),
    
'acl_a_search'    => array('lang'    => 'Puede administrar motores de búsqueda y parámetros','cat'    => 'misc',),
));

?>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.0 [PHP 7 Update] [25.02.2019] maintained by HackingTool | HackingTool | Generation time: 0.0042 ]--