403Webshell
Server IP : 121.121.20.254  /  Your IP : 216.73.216.202
Web Server : Microsoft-IIS/10.0
System : Windows NT WEB-SERVER 10.0 build 20348 (Windows Server 2022) AMD64
User : IUSR ( 0)
PHP Version : 8.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/arforms/core/views/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : C:/inetpub/wwwroot/KnowledgeBase/wp-content/plugins/arforms/core/views/arf_sysinfo.php
<?php

$directaccesskey = "arf999repute";
$directaccess    = isset($_REQUEST['arforms_sysinfo']) ? sanitize_text_field($_REQUEST['arforms_sysinfo']) : ''; //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.MissingUnslash               

if ( is_user_logged_in() || $directaccesskey==$directaccess) 
{
    
}
else
{
    $redirect_to = user_admin_url();
    wp_safe_redirect($redirect_to);
}

$geoiploaded = "";

if(!(extension_loaded('geoip'))) {
    $geoiploaded = "No";
}
else
{
    $geoiploaded = "Yes";
}

$ziploaded = "";

if(!(extension_loaded('zip'))) {
    $ziploaded = "No";
} else {
    $ziploaded = "Yes";
}

$php_version = phpversion();

$server_ip = $_SERVER['SERVER_ADDR'];

$servername = $_SERVER['SERVER_NAME'];

//$server_user = $_ENV["USER"];

$upload_max_filesize = ini_get('upload_max_filesize');

$post_max_size = ini_get('post_max_size');

$short_open_tag = ini_get('short_open_tag');

$max_input_vars = ini_get('max_input_vars');

if($short_open_tag==1)
{
    $short_open_tag = "Yes";
}
else
{
    $short_open_tag = "No";
}
if(ini_get('safe_mode'))
{
    $safe_mode = "On";
}
else
{
    $safe_mode = "Off";
}

$memory_limit = ini_get('memory_limit');

$apache_version = "";

if(function_exists('apache_get_version'))
{
    $apache_version = apache_get_version();
}
else
{
    $apache_version = $_SERVER['SERVER_SOFTWARE']."( ".$_SERVER['SERVER_SIGNATURE']." )";	
}

$system_info = php_uname();

//$mysql_server_version = mysqli_get_server_info();
global $wpdb;
$mysql_server_version = $wpdb->db_version();

//wordpress details

$wordpress_version = get_bloginfo('version');

$wordpress_sitename = get_bloginfo('name');

$wordpress_sitedesc = get_bloginfo('description');

$wordpress_wpurl = site_url();

$wordpress_url = home_url();

$wordpress_admin_email = get_bloginfo('admin_email');

$wordpress_language = get_bloginfo('language');

//$wordpress_templateurl = wp_get_theme();

$my_theme = wp_get_theme();
$wordpress_templateurl = $my_theme->get( 'Name' );
$wordpress_templateurl_version = $my_theme->get( 'Version' );


$wordpress_charset = get_bloginfo('charset');

$wordpress_debug  = WP_DEBUG;

if($wordpress_debug==true)
{
    $wordpress_debug = "On";
}
else
{
    $wordpress_debug = "Off";
}

if ( is_multisite() ) { $wordpress_multisite = 'Yes'; }else( $wordpress_multisite = "No");


if ( is_plugin_active( 'arforms/arforms.php' ) ) 
{
    $arforms_active = "Active";
    $arforms_version = get_option("arf_db_version");
    $upload_dir_path = wp_upload_dir();
}
else
{
    $arforms_active = "Deactive";
    $arforms_version = "";
    $upload_dir_path = wp_upload_dir();
}

$setvaltolic = 0;
global $arformcontroller,$arformsplugin;
if( $arformcontroller && $arformsplugin ){
    $setvaltolic = $arformcontroller->$arformsplugin();
}
$arforms_active_text = "";
$arforms_license_details = "";
if(1 != $setvaltolic){
    $arforms_active_text = "<font color='#ff0000'>".$arforms_active."</font>";
} else {
    $arforms_active_text = "<font color='#10bd0d'>".$arforms_active."</font>";
    
    if( get_option('arfSortInfo') ){
        $get_purchased_info = get_option('arfSortInfo');
        $sortorderval = base64_decode($get_purchased_info);
        $ordering = array();
        
        $pcodeinfo = "";
        $pcodedate = "";
        $pcodedateexp = "";
        $pcodelastverified = "";
        $pcodecustemail = "";
        
        if(is_array($ordering)){
            $ordering = explode("^", $sortorderval);
            
            $pcodeinfo = $ordering[0];
            $pcodedate = $ordering[1];
            $pcodedateexp = $ordering[2];
            $pcodelastverified = $ordering[3];
            $pcodecustemail = $ordering[4];
        }
        $arforms_license_details .= '<font color="white">'.$pcodeinfo.' | '.$pcodedate.' | '.$pcodedateexp.' | '.$pcodecustemail. '</font>';
    }
}



$arforms_active = $arforms_active_text;
$folderpermission = substr(sprintf('%o', fileperms($upload_dir_path["basedir"])), -4);
$plugin_list = get_plugins();
$plugin = array();
$active_plugins = get_option( 'active_plugins' );

foreach ($plugin_list as $key => $plugin) {
            $is_active = in_array($key, $active_plugins);

            
            //filter for only gravityforms ones, may get some others if using our naming convention
            if ( $is_active == 1){
                $name = substr($key, 0, strpos($key,"/"));
                $plugins[] = array("name" => $plugin["Name"], "version" => $plugin["Version"], "is_active" => $is_active);
            }
        }
        
?>
<style type="text/css">
table
{
    border:2px solid #cccccc;
    width:900px;
    font-family:Verdana, Arial, Helvetica, sans-serif;
    font-size:12px;
}
.title
{
    border-bottom:2px solid #cccccc; padding:5px 0px 5px 15px; font-weight:bold;
}
.leftrowtitle
{
    border-bottom:2px solid #cccccc; border-right:2px solid #cccccc; padding:5px 0px 5px 15px; width:250px; background-color:#333333; color:#FFFFFF; font-weight:bold;
}
.rightrowtitle
{
    border-bottom:2px solid #cccccc; padding:5px 0px 5px 15px; width:650px; background-color:#333333;  color:#FFFFFF; font-weight:bold;
}
.leftrowdetails
{
    border-bottom:2px solid #cccccc; border-right:2px solid #cccccc; padding:5px 0px 5px 15px; width:250px;
}
.rightrowdetails
{
    border-bottom:2px solid #cccccc; padding:5px 0px 5px 15px; width:650px;
}	
</style>

<table border="0" cellpadding="0" cellspacing="0">
    <tr>
        <td colspan="2" class="title">Php Details</td>
    </tr>
    <tr>
        <td class="leftrowtitle">Variable Name</td>
        <td class="rightrowtitle">Details</td>
    </tr>
    <tr>
        <td class="leftrowdetails">PHP Version</td>
        <td class="rightrowdetails"><?php echo $php_version;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">System</td>
        <td class="rightrowdetails"><?php echo $system_info;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Apache Version</td>
        <td class="rightrowdetails"><?php echo $apache_version;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Server Ip</td>
        <td class="rightrowdetails"><?php echo $server_ip;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Server Name</td>
        <td class="rightrowdetails"><?php echo $servername;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Upload Max Filesize</td>
        <td class="rightrowdetails"><?php echo $upload_max_filesize;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Post Max Size</td>
        <td class="rightrowdetails"><?php echo $post_max_size;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Max Input Vars</td>
        <td class="rightrowdetails"><?php echo $max_input_vars;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Short Tag</td>
        <td class="rightrowdetails"><?php echo $short_open_tag;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Safe Mode</td>
        <td class="rightrowdetails"><?php echo $safe_mode;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Memory Limit</td>
        <td class="rightrowdetails"><?php echo $memory_limit;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">MySql Version</td>
        <td class="rightrowdetails"><?php echo $mysql_server_version;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Geo IP</td>
        <td class="rightrowdetails"><?php echo $geoiploaded;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Zip</td>
        <td class="rightrowdetails"><?php echo $ziploaded;?></td>
    </tr>
    <tr>
        <td colspan="2" style="border-bottom:2px solid #cccccc;">&nbsp;</td>
    </tr>
    <tr>
        <td colspan="2" class="title">WordPress Details</td>
    </tr>
    <tr>
        <td class="leftrowtitle">Variable Name</td>
        <td class="rightrowtitle">Details</td>
    </tr>
    <tr>
        <td class="leftrowdetails">Site Title</td>
        <td class="rightrowdetails"><?php echo $wordpress_sitename;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Tagline</td>
        <td class="rightrowdetails"><?php echo $wordpress_sitedesc;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Version</td>
        <td class="rightrowdetails"><?php echo $wordpress_version;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">WordPress address (URL)</td>
        <td class="rightrowdetails"><?php echo $wordpress_wpurl;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Site address (URL)</td>
        <td class="rightrowdetails"><?php echo $wordpress_url;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Admin Email</td>
        <td class="rightrowdetails"><?php echo $wordpress_admin_email;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Charset</td>
        <td class="rightrowdetails"><?php echo $wordpress_charset;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Language</td>
        <td class="rightrowdetails"><?php echo $wordpress_language;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Active theme</td>
        <td class="rightrowdetails"><?php echo $wordpress_templateurl." (".$wordpress_templateurl_version.")" ; ?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Debug Mode</td>
        <td class="rightrowdetails"><?php echo $wordpress_debug;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Multisite Enable</td>
        <td class="rightrowdetails"><?php echo $wordpress_multisite;?></td>
    </tr>
    <tr>
        <td colspan="2" style="border-bottom:2px solid #cccccc;">&nbsp;</td>
    </tr>
    <tr>
        <td colspan="2" class="title">Arforms Details &nbsp; <?php echo $arforms_license_details; ?></td>
    </tr>
    <tr>
        <td class="leftrowtitle">Variable Name</td>
        <td class="rightrowtitle">Details</td>
    </tr>
    <tr>
        <td class="leftrowdetails">Arforms Status</td>
        <td class="rightrowdetails"><?php echo $arforms_active;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Arforms Version</td>
        <td class="rightrowdetails"><?php echo $arforms_version;?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Upload Basedir</td>
        <td class="rightrowdetails"><?php echo $upload_dir_path["basedir"];?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Upload Baseurl</td>
        <td class="rightrowdetails"><?php echo $upload_dir_path["baseurl"];?></td>
    </tr>
    <tr>
        <td class="leftrowdetails">Upload Folder Permission</td>
        <td class="rightrowdetails"><?php echo $folderpermission;?></td>
    </tr>

    <tr>
        <td colspan="2" class="title">Active Plugin List</td>
    </tr>

    <?php
        foreach($plugins as $myplugin)
        {
        ?>
        <tr>
            <td class="leftrowdetails"><?php echo $myplugin['name']; ?></td>
            <td class="rightrowdetails"><?php if($myplugin['is_active'] == 1) {echo "ACTIVE";} else {echo "INACTIVE";}  ?><?php echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(".$myplugin['version'].")"; ?></td>
        </tr>
        <?php
        }
    ?>    
        
    <tr>
        <td colspan="2">&nbsp;</td>
    </tr>
</table>

Youez - 2016 - github.com/yon3zu
LinuXploit