Server IP : 103.119.228.120 / Your IP : 3.144.114.8 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/fud/default/ |
Upload File : |
<?php /** * copyright : (C) 2001-2013 Advanced Internet Designs Inc. * email : forum@prohost.org * $Id$ * * 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; version 2 of the License. **/ defined('_hs') or define('_hs', ''); defined('_rsid') or define('_rsid', ''); /** Forum is disabled. Display reason and hang up. */ function exit_forum_disabled($format='html') { $TITLE_EXTRA = $RSS = null; header('HTTP/1.1 503 Service Temporarily Unavailable'); header('Status: 503 Service Temporarily Unavailable'); header('Retry-After: 1800'); // 30 minutes. header('Connection: Close'); header('Content-type: text/'. $format .'; charset=utf-8'); if ($format == 'xml') { exit('<?xml version="1.0" encoding="utf-8"?> <error> <message>'.$GLOBALS['DISABLED_REASON'].'</message> </error>'); } else { exit('<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="'.(!empty($META_DESCR) ? ''.$META_DESCR.'' : ''.$GLOBALS['FORUM_DESCR'].'' ) .'" /> <title>'.$GLOBALS['FORUM_TITLE'].$TITLE_EXTRA.'</title> <link rel="search" type="application/opensearchdescription+xml" title="'.$GLOBALS['FORUM_TITLE'].' Search" href="[[relativeurl]]/open_search.php" /> '.$RSS.' <link rel="stylesheet" href="[[relativeurl]]/theme/default/forum.css" media="screen" title="Default Forum Theme" /> <link rel="stylesheet" href="[[relativeurl]]/js/ui/jquery-ui.css" media="screen" /> <script src="[[relativeurl]]/js/jquery.js"></script> <script async src="[[relativeurl]]/js/ui/jquery-ui.js"></script> <script src="[[relativeurl]]/js/lib.js"></script> </head> <body> <!-- --> <div class="header"> '.($GLOBALS['FUD_OPT_1'] & 1 && $GLOBALS['FUD_OPT_1'] & 16777216 ? ' <div class="headsearch"> <form id="headsearch" method="get" action="[[relativeurl]]/index.php">'._hs.' <input type="hidden" name="t" value="search" /> <br /><label accesskey="f" title="Forum Search">Forum Search:<br /> <input type="search" name="srch" value="" size="20" placeholder="Forum Search" /></label> <input type="image" src="[[relativeurl]]/theme/default/images/search.png" title="Search" name="btn_submit"> </form> </div> ' : '' ) .' <a href="[[relativeurl]]/" title="Home"> <img class="headimg" src="[[relativeurl]]/theme/default/images/header.gif" alt="" align="left" height="80" /> <span class="headtitle">'.$GLOBALS['FORUM_TITLE'].'</span> </a><br /> <span class="headdescr">'.$GLOBALS['FORUM_DESCR'].'<br /><br /></span> </div> <div class="content"> <!-- Table for sidebars. --> <table width="100%"><tr><td> <br /> <h2>'.$GLOBALS['DISABLED_REASON'].'</h2> <br /> <small>Administrators can login <a href="[[relativeurl]]/adm/admloginuser.php">here</a>.</small> <br /><br /> '.(!empty($RIGHT_SIDEBAR) ? ' </td><td width="200px" align-"right" valign="top" class="sidebar-right"> '.$RIGHT_SIDEBAR.' ' : '' ) .' </td></tr></table> </div> <div class="footer ac"> <b>.::</b> <a href="mailto:'.$GLOBALS['ADMIN_EMAIL'].'">Contact</a> <b>::</b> <a href="[[relativeurl]]/index.php?t=index&'._rsid.'">Home</a> <b>::.</b> <p class="SmallText">Powered by: FUDforum '.$GLOBALS['FORUM_VERSION'].'.<br />Copyright ©2001-2023 <a href="http://fudforum.org/">FUDforum Bulletin Board Software</a></p> </div> </body></html>'); } } /** User is banned. Notify and hang up. */ function exit_user_banned() { $TITLE_EXTRA = $RSS = null; header('HTTP/1.1 403 Forbidden'); header('Status: 403 Forbidden'); header('Connection: Close'); header('Content-type: text/html; charset=utf-8'); exit('<!DOCTYPE html> <html lang="en" dir="ltr"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <meta name="description" content="'.(!empty($META_DESCR) ? ''.$META_DESCR.'' : ''.$GLOBALS['FORUM_DESCR'].'' ) .'" /> <title>'.$GLOBALS['FORUM_TITLE'].$TITLE_EXTRA.'</title> <link rel="search" type="application/opensearchdescription+xml" title="'.$GLOBALS['FORUM_TITLE'].' Search" href="[[relativeurl]]/open_search.php" /> '.$RSS.' <link rel="stylesheet" href="[[relativeurl]]/theme/default/forum.css" media="screen" title="Default Forum Theme" /> <link rel="stylesheet" href="[[relativeurl]]/js/ui/jquery-ui.css" media="screen" /> <script src="[[relativeurl]]/js/jquery.js"></script> <script async src="[[relativeurl]]/js/ui/jquery-ui.js"></script> <script src="[[relativeurl]]/js/lib.js"></script> </head> <body> <!-- --> <div class="header"> '.($GLOBALS['FUD_OPT_1'] & 1 && $GLOBALS['FUD_OPT_1'] & 16777216 ? ' <div class="headsearch"> <form id="headsearch" method="get" action="[[relativeurl]]/index.php">'._hs.' <input type="hidden" name="t" value="search" /> <br /><label accesskey="f" title="Forum Search">Forum Search:<br /> <input type="search" name="srch" value="" size="20" placeholder="Forum Search" /></label> <input type="image" src="[[relativeurl]]/theme/default/images/search.png" title="Search" name="btn_submit"> </form> </div> ' : '' ) .' <a href="[[relativeurl]]/" title="Home"> <img class="headimg" src="[[relativeurl]]/theme/default/images/header.gif" alt="" align="left" height="80" /> <span class="headtitle">'.$GLOBALS['FORUM_TITLE'].'</span> </a><br /> <span class="headdescr">'.$GLOBALS['FORUM_DESCR'].'<br /><br /></span> </div> <div class="content"> <!-- Table for sidebars. --> <table width="100%"><tr><td> <br /> Your prior actions have resulted in you being permanently banned from this forum. Goodbye. <br /><br /> '.(!empty($RIGHT_SIDEBAR) ? ' </td><td width="200px" align-"right" valign="top" class="sidebar-right"> '.$RIGHT_SIDEBAR.' ' : '' ) .' </td></tr></table> </div> <div class="footer ac"> <b>.::</b> <a href="mailto:'.$GLOBALS['ADMIN_EMAIL'].'">Contact</a> <b>::</b> <a href="[[relativeurl]]/index.php?t=index&'._rsid.'">Home</a> <b>::.</b> <p class="SmallText">Powered by: FUDforum '.$GLOBALS['FORUM_VERSION'].'.<br />Copyright ©2001-2023 <a href="http://fudforum.org/">FUDforum Bulletin Board Software</a></p> </div> </body></html>'); } ?>