!C99Shell v.2.1 [PHP 7 Update] [1.12.2019]!

Software: Apache. PHP/5.6.40-67+ubuntu20.04.1+deb.sury.org+1 

uname -a: Linux hosting1.erectacloud.it 5.4.0-182-generic #202-Ubuntu SMP Fri Apr 26 12:29:36 UTC
2024 x86_64
 

uid=5229(web473) gid=5117(client172) groups=5117(client172),5002(sshusers) 

Safe-mode: OFF (not secure)

/var/www/clients/client172/web473/web/OLD_WP/wp-content/plugins/broken-link-checker/includes/admin/   drwxr-xr-x
Free 180.04 GB of 490.84 GB (36.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Feedback    Self remove    Logout    


Viewing file:     search-form.php (5.67 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
    $search_params 
$current_filter['search_params'];
?>
<div class="search-box">
    
    <?php
            
//If we're currently displaying search results offer the user the option to
            //save the search query as a custom filter.     
            
if ( $filter_id == 'search' ){
    
?>
    <form name="save-search-query" id="custom-filter-form" action="<?php echo admin_url("tools.php?page=view-broken-links");  ?>" method="post" class="blc-inline-form">
        <?php wp_nonce_field('create-custom-filter');  ?>
        <input type="hidden" name="name" id="blc-custom-filter-name" value="" />
        <input type="hidden" name="params" id="blc-custom-filter-params" value="<?php echo http_build_query($search_paramsnull'&'); ?>" />
        <input type="hidden" name="action" value="create-custom-filter" />
        <input type="button" value="<?php esc_attr_e'Save This Search As a Filter''broken-link-checker' ); ?>" id="blc-create-filter" class="button" />
    </form>                                 
    <?php
            
} elseif ( !empty($current_filter['custom']) ){
            
//If we're displaying a custom filter give an option to delete it.
    
?>
    <form name="save-search-query" id="custom-filter-form" action="<?php echo admin_url("tools.php?page=view-broken-links");  ?>" method="post" class="blc-inline-form">
        <?php wp_nonce_field('delete-custom-filter');  ?>
        <input type="hidden" name="filter_id" id="blc-custom-filter-id" value="<?php echo $filter_id?>" />
        <input type="hidden" name="action" value="delete-custom-filter" />
        <input type="submit" value="<?php esc_attr_e'Delete This Filter''broken-link-checker' ); ?>" id="blc-delete-filter" class="button" />
    </form>
    <?php
            
}
    
?>
    
    <input type="button" value="<?php esc_attr_e'Search''broken-link-checker' ); ?> &raquo;" id="blc-open-search-box" class="button" />
</div>

<!-- The search dialog -->
<div id='search-links-dialog' title='Search'>
<form class="search-form" action="<?php echo admin_url('tools.php?page=view-broken-links'); ?>" method="get">
    <input type="hidden" name="page" value="view-broken-links" />
    <input type="hidden" name="filter_id" value="search" />
    <fieldset>
    
    <label for="s_link_text"><?php _e('Link text''broken-link-checker'); ?></label>
    <input type="text" name="s_link_text" value="<?php if(!empty($search_params['s_link_text'])) echo esc_attr($search_params['s_link_text']); ?>" id="s_link_text" class="text ui-widget-content" />
    
    <label for="s_link_url"><?php _e('URL''broken-link-checker'); ?></label>
    <input type="text" name="s_link_url" id="s_link_url" value="<?php if(!empty($search_params['s_link_url'])) echo esc_attr($search_params['s_link_url']); ?>" class="text ui-widget-content" />
    
    <label for="s_http_code"><?php _e('HTTP code''broken-link-checker'); ?></label>
    <input type="text" name="s_http_code" id="s_http_code" value="<?php if(!empty($search_params['s_http_code'])) echo esc_attr($search_params['s_http_code']); ?>" class="text ui-widget-content" />
    
    <label for="s_filter"><?php _e('Link status''broken-link-checker'); ?></label>
    <select name="s_filter" id="s_filter">
        <?php
        
if ( !empty($search_params['s_filter']) ){
            
$search_subfilter $search_params['s_filter']; 
        } else {
            
$search_subfilter 'all';
        }
        
        
$linkQuery blcLinkQuery::getInstance();
        foreach (
$linkQuery->native_filters as $filter => $data){
            
$selected = ($search_subfilter == $filter)?' selected="selected"':'';
            
printf('<option value="%s"%s>%s</option>'$filter$selected$data['name']);
        }         
        
?>
    </select>
    
    <label for="s_link_type"><?php _e('Link type''broken-link-checker'); ?></label>
    <select name="s_link_type" id="s_link_type">
        <option value=""><?php _e('Any''broken-link-checker'); ?></option>
        <?php
        $moduleManager 
blcModuleManager::getInstance();
        
        
printf('<optgroup label="%s">'esc_attr(__('Links used in''broken-link-checker')));
        
$containers $moduleManager->get_modules_by_category('container'falsetrue);
        foreach(
$containers as $container_type => $module_data){
            if ( !empty(
$module_data['ModuleHidden']) || !$moduleManager->is_active($container_type) ){
                continue;
            }
            
$selected = ( isset($search_params['s_link_type']) && $search_params['s_link_type'] == $container_type )?' selected="selected"':'';
            
printf('<option value="%s"%s>%s</option>'$container_type$selected$module_data['Name']);
        }
        echo 
'</optgroup>';
        
//TODO: Better group labels
        
printf('<optgroup label="%s">'esc_attr(__('Link type''broken-link-checker')));
        
$parsers $moduleManager->get_modules_by_category('parser'falsetrue);
        foreach(
$parsers as $parser_type => $module_data){
            if ( !empty(
$module_data['ModuleHidden']) || !$moduleManager->is_active($parser_type) ){
                continue;
            }
            
$selected = ( isset($search_params['s_link_type']) && $search_params['s_link_type'] == $parser_type )?' selected="selected"':'';
            
printf('<option value="%s"%s>%s</option>'$parser_type$selected$module_data['Name']);
        }
        echo 
'</optgroup>';
        
        
/*
        $link_types = array(
            __('Any', 'broken-link-checker') => '',
            __('Normal link', 'broken-link-checker') => 'link',
            __('Image', 'broken-link-checker') => 'image',
            __('Custom field', 'broken-link-checker') => 'custom_field',
            __('Bookmark', 'broken-link-checker') => 'blogroll',
            __('Comment', 'broken-link-checker') => 'comment',
        );
        */
        
?>
    </select>
    
    </fieldset>
    
    <div id="blc-search-button-row">
        <input type="submit" value="<?php esc_attr_e'Search Links''broken-link-checker' ); ?>" id="blc-search-button" name="search_button" class="button-primary" />
        <input type="button" value="<?php esc_attr_e'Cancel''broken-link-checker' ); ?>" id="blc-cancel-search" class="button" />
    </div>
    
</form>    
</div>

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

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

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

--[ c99shell v.2.1 [PHP 7 Update] [1.12.2019] maintained by KaizenLouie and updated by cermmik | C99Shell Github (MySQL update) | Generation time: 0.0088 ]--