Server IP : 103.119.228.120 / Your IP : 3.128.31.76 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/softaculous/pfn/ |
Upload File : |
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8 */; -- -- Database: `pfn` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]accesos` -- CREATE TABLE `[[dbprefix]]accesos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `login` varchar(50) NOT NULL DEFAULT '', `ip` varchar(15) NOT NULL DEFAULT '', `estado` tinyint(1) unsigned NOT NULL DEFAULT '0', `donde` varchar(50) NOT NULL DEFAULT '', `session` varchar(100) DEFAULT NULL, `data` int(10) unsigned NOT NULL DEFAULT '0', `ultimo` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]accesos` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]arquivos` -- CREATE TABLE `[[dbprefix]]arquivos` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `arquivo` varchar(245) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `id_directorio` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `arquivo` (`arquivo`,`id_directorio`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]arquivos` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]arquivos_campos_palabras` -- CREATE TABLE `[[dbprefix]]arquivos_campos_palabras` ( `id_arquivo` int(10) unsigned NOT NULL DEFAULT '0', `id_campo` smallint(6) unsigned NOT NULL DEFAULT '0', `id_palabra` int(10) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id_arquivo`,`id_campo`,`id_palabra`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]arquivos_campos_palabras` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]bloqueo_ip` -- CREATE TABLE `[[dbprefix]]bloqueo_ip` ( `ip` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`ip`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]bloqueo_ip` -- INSERT INTO `[[dbprefix]]bloqueo_ip` VALUES('0.0.0.0'); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]campos` -- CREATE TABLE `[[dbprefix]]campos` ( `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `campo` varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `campo` (`campo`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]campos` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]configuracions` -- CREATE TABLE `[[dbprefix]]configuracions` ( `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `conf` varchar(50) NOT NULL DEFAULT '', `vale` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]configuracions` -- INSERT INTO `[[dbprefix]]configuracions` VALUES(1, 'basicas', 0); INSERT INTO `[[dbprefix]]configuracions` VALUES(2, 'login', 0); INSERT INTO `[[dbprefix]]configuracions` VALUES(3, 'default', 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]configuracions_datos` -- CREATE TABLE `[[dbprefix]]configuracions_datos` ( `campo` varchar(50) NOT NULL DEFAULT '', `valor` varchar(50) NOT NULL DEFAULT '', `id_conf` smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id_conf`,`campo`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]configuracions_datos` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]directorios` -- CREATE TABLE `[[dbprefix]]directorios` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `directorio` varchar(245) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '', `id_raiz` smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`), UNIQUE KEY `directorio` (`directorio`,`id_raiz`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]directorios` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]grupos` -- CREATE TABLE `[[dbprefix]]grupos` ( `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `nome` varchar(50) NOT NULL DEFAULT '', `id_conf` smallint(6) unsigned NOT NULL DEFAULT '0', `estado` tinyint(1) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]grupos` -- INSERT INTO `[[dbprefix]]grupos` VALUES(1, 'Administrators', 3, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]palabras` -- CREATE TABLE `[[dbprefix]]palabras` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `palabra` varchar(100) NOT NULL DEFAULT '', PRIMARY KEY (`id`), UNIQUE KEY `palabra` (`palabra`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]palabras` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]raices` -- CREATE TABLE `[[dbprefix]]raices` ( `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `nome` varchar(50) NOT NULL DEFAULT '', `path` varchar(255) NOT NULL DEFAULT '', `web` varchar(255) NOT NULL DEFAULT '', `host` varchar(255) NOT NULL DEFAULT '', `estado` tinyint(1) unsigned NOT NULL DEFAULT '0', `mantemento` date NOT NULL DEFAULT '0000-00-00', `peso_maximo` bigint(20) unsigned NOT NULL DEFAULT '0', `peso_actual` bigint(20) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]raices` -- INSERT INTO `[[dbprefix]]raices` VALUES(1, '[[site_name]]', '[[startpath]]/', '/', '[[domhost]]', 1, '0000-00-00', 0, 0); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]raices_grupos_configuracions` -- CREATE TABLE `[[dbprefix]]raices_grupos_configuracions` ( `id_raiz` smallint(6) unsigned NOT NULL DEFAULT '0', `id_grupo` smallint(6) unsigned NOT NULL DEFAULT '0', `id_conf` smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id_raiz`,`id_grupo`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]raices_grupos_configuracions` -- INSERT INTO `[[dbprefix]]raices_grupos_configuracions` VALUES(1, 1, 3); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]raices_usuarios` -- CREATE TABLE `[[dbprefix]]raices_usuarios` ( `id_raiz` smallint(6) unsigned NOT NULL DEFAULT '0', `id_usuario` smallint(6) unsigned NOT NULL DEFAULT '0', PRIMARY KEY (`id_raiz`,`id_usuario`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]raices_usuarios` -- INSERT INTO `[[dbprefix]]raices_usuarios` VALUES(1, 1); -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]sesions` -- CREATE TABLE `[[dbprefix]]sesions` ( `id` varchar(45) NOT NULL DEFAULT '', `tempo` int(10) unsigned NOT NULL DEFAULT '0', `contido` text NOT NULL, `ip` varchar(20) NOT NULL DEFAULT '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]sesions` -- -- -------------------------------------------------------- -- -- Table structure for table `[[dbprefix]]usuarios` -- CREATE TABLE `[[dbprefix]]usuarios` ( `id` smallint(6) unsigned NOT NULL AUTO_INCREMENT, `nome` varchar(50) NOT NULL DEFAULT '', `usuario` varchar(50) NOT NULL DEFAULT '', `contrasinal` varchar(50) NOT NULL DEFAULT '', `contrasinal_tmp` varchar(50) NOT NULL DEFAULT '', `email` varchar(50) NOT NULL DEFAULT '', `estado` tinyint(1) unsigned NOT NULL DEFAULT '0', `admin` tinyint(1) unsigned NOT NULL DEFAULT '0', `id_grupo` smallint(6) unsigned NOT NULL DEFAULT '0', `mantemento` date NOT NULL DEFAULT '0000-00-00', `descargas_maximo` bigint(20) unsigned NOT NULL DEFAULT '0', `cambiar_datos` tinyint(1) unsigned NOT NULL DEFAULT '1', PRIMARY KEY (`id`), UNIQUE KEY `usuario` (`usuario`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `[[dbprefix]]usuarios` -- INSERT INTO `[[dbprefix]]usuarios` VALUES(1, '[[admin_realname]]', '[[admin_username]]', '[[admin_pass]]', '', '[[admin_email]]', 1, 1, 1, '0000-00-00', 0, 1);