Linux premium155.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
: 162.0.235.200 | : 18.116.85.102
Cant Read [ /etc/named.conf ]
7.4.33
varifktc
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
/
var /
softaculous /
sitepad /
editor /
site-admin /
[ HOME SHELL ]
Name
Size
Permission
Action
css
[ DIR ]
drwxr-xr-x
fonts
[ DIR ]
drwxr-xr-x
images
[ DIR ]
drwxr-xr-x
includes
[ DIR ]
drwxr-xr-x
js
[ DIR ]
drwxr-xr-x
admin-ajax.php
4.32
KB
-rw-r--r--
admin-footer.php
2.3
KB
-rw-r--r--
admin-header.php
13.74
KB
-rw-r--r--
admin-post.php
1.66
KB
-rw-r--r--
admin.php
11.1
KB
-rw-r--r--
async-upload.php
3.63
KB
-rw-r--r--
comment.php
10.66
KB
-rw-r--r--
cookie-consent.php
17.06
KB
-rw-r--r--
custom-background.php
20.06
KB
-rw-r--r--
custom-header.php
46.28
KB
-rw-r--r--
customize.php
8.69
KB
-rw-r--r--
edit-form-advanced.php
30.63
KB
-rw-r--r--
edit-form-blocks.php
12.82
KB
-rw-r--r--
edit-form-comment.php
7.32
KB
-rw-r--r--
edit-tag-form.php
9.28
KB
-rw-r--r--
edit-tags.php
21.41
KB
-rw-r--r--
edit.php
21.76
KB
-rw-r--r--
export.php
10.69
KB
-rw-r--r--
features.php
3.22
KB
-rw-r--r--
google-analytics.php
2.79
KB
-rw-r--r--
import.php
7.28
KB
-rw-r--r--
index.php
12.53
KB
-rw-r--r--
load-scripts.php
1.62
KB
-rw-r--r--
load-styles.php
2.27
KB
-rw-r--r--
mailchimp.php
4.51
KB
-rw-r--r--
media-new.php
3.12
KB
-rw-r--r--
media-upload.php
3.3
KB
-rw-r--r--
media.php
5.54
KB
-rw-r--r--
menu-header.php
7.63
KB
-rw-r--r--
menu.php
9.82
KB
-rw-r--r--
nav-menus.php
38.34
KB
-rw-r--r--
options-discussion.php
14.83
KB
-rw-r--r--
options-general.php
15.83
KB
-rw-r--r--
options-head.php
492
B
-rw-r--r--
options-media.php
6.05
KB
-rw-r--r--
options-permalink.php
9.34
KB
-rw-r--r--
options-reading.php
9.05
KB
-rw-r--r--
options.php
11.6
KB
-rw-r--r--
plans.php
9.21
KB
-rw-r--r--
post-new.php
3.56
KB
-rw-r--r--
post.php
10.65
KB
-rw-r--r--
privacy.php
6.81
KB
-rw-r--r--
profile.php
298
B
-rw-r--r--
revision.php
5.06
KB
-rw-r--r--
seo.php
3.98
KB
-rw-r--r--
setup.php
22.96
KB
-rw-r--r--
sitemap.php
7.88
KB
-rw-r--r--
smtp-mail.php
12.7
KB
-rw-r--r--
term.php
2.07
KB
-rw-r--r--
themes.php
20.72
KB
-rw-r--r--
themes_setup.php
18.26
KB
-rw-r--r--
upload.php
13.46
KB
-rw-r--r--
user-edit.php
21.36
KB
-rw-r--r--
user-new.php
21.56
KB
-rw-r--r--
users.php
18.62
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : plans.php
<?php /** * Themes administration panel. * * @package WordPress * @subpackage Administration */ /** WordPress Administration Bootstrap */ require_once( dirname( __FILE__ ) . '/admin.php' ); $title = __('Compare Plans'); require_once( ABSPATH . 'site-admin/admin-header.php' ); $plans = fetch_plan(); // Update the license if(!empty($_REQUEST['license_key'])){ $license_key = trim($_REQUEST['license_key']); $resp = wp_remote_get(SITEPAD_API.'license_enduser.php?eu_license='.$license_key.'&siteurl='.rawurlencode($sitepad['serving_url'])); if(is_array($resp)){ $json = json_decode($resp['body'], true); //r_print($json); if(empty($json['license'])){ $error['lic_invalid'] = __('The license key is invalid'); }else{ update_option('sitepad_license', $json); sitepad_license_check(); // Mark as saved $GLOBALS['saved'] = true; } }else{ $error['resp_invalid'] = __('The response was malformed<br>'.var_export($resp, true)); } } foreach($plans as $pk => $pv){ if($pv['slug'] == 'free'){ $plans[$pk]['button_txt'] = 'Free'; continue; } if(empty($sitepad['license'])){ $plans[$pk]['button_txt'] = 'Purchase'; continue; } if($pv['slug'] == $sitepad['license']['plan']){ $plans[$pk]['button_txt'] = 'Renew'; $matched_plan = 1; }else{ if(!empty($matched_plan)){ $plans[$pk]['button_txt'] = 'Upgrade'; }else{ $plans[$pk]['button_txt'] = 'Purchase'; $plans[$pk]['button_disable'] = 1; } } } //r_print($plans); echo ' <div class="wrap"> <div class="bg"> <h1 style="padding:0px"><!--This is to fix promo--></h1> <div class="row p-3 mb-4"> <div class="col-sm-6"> <h1><span class="dashicons-before sme-dash-header dashicons-cart"></span>Plans<br /></h1> </div> <div class="col-sm-6"> <div class="float-right"> <a href="javascript:toggle_license_form()" class="btn btn-info">Enter License</a> Contact us : <a href="mailto:sales@sitepad.com">sales@sitepad.com</a> </div> </div> </div> <div class="row" id="enter_license_form" style="display:none;"> <div class="col-sm-12 mb-5"> <div class="text-center"><h4>'.__('Enter SitePad License Key').'</h4></div> <div class="text-center">'.__('If you have already purchased the license you can enter the license key below and start using SitePad Premium').'</div><br /> <form action="" method="post" name="submit_license" id="submit_license"> <div class="row"> <div class="col-sm-4 offset-sm-3"> <input type="text" name="license_key" class="form-control" id="license_key" size="30" value="'.POSTval('license_key').'" placeholder="SITEP-xxxxx-xxxxx-xxxxx-xxxxx" /> </div> <div class="col-sm-1"> <button type="submit" class="btn btn-primary">'.__('Submit').'</button> </div> </div> </form> </div> </div>'; // Saved if(!empty($GLOBALS['saved'])){ echo '<div class="notice notice-success is-dismissible"> <p>'.__('The license has been saved').'</p> </div>'; } // Any errors ? if(!empty($error)){ pagelayer_report_error($error);echo '<br />'; } // Expired license ? if(!empty($sitepad['license']) && empty($sitepad['license']['status'])){ $msg = !empty($sitepad['license']['status_msg']) ? $sitepad['license']['status_msg'] : __('There is no active license for this website. Please buy a license from the <a href="'.SITEPAD_BUY.'">Client Center</a>.'); echo '<div id="message" class="error"><p>'.$msg.'</p></div>'; } //r_print($sitepad['license']); // Show plan details if(!empty($sitepad['license'])){ echo ' <center><div id="license_details" align="center" class="license_details py-2"><h5><span style="border-bottom: 1px solid #000;">Current plan details</span></h5> <b>Plan Name</b> : '.$plans[$sitepad['license']['plan']]['name']; if(!empty($sitepad['license']['expires'])){ echo '<br /><b>Expires</b> : '.makedate($sitepad['license']['expires'], 'jS F Y'); } echo '<br /><b>License Key</b> : '.$sitepad['license']['license'].' </div></center><br />'; } echo ' <div class="tab"> <div class="plan_highlight"><span class="current_plan'.(empty($sitepad['license']['plan']) ? '">Current Plan' : '">').'</span> </div> <div class="plan_highlight"><span class="current_plan'.($sitepad['license']['plan'] == 'personal' ? '">Current Plan' : '">').'</span> </div> <div class="plan_highlight"><span class="current_plan'.($sitepad['license']['plan'] == 'professional' ? '">Current Plan' : ' most_popular">Most Popular').'</span> </div> <div class="plan_highlight"><span class="current_plan'.($sitepad['license']['plan'] == 'business' ? '">Current Plan' : '">').'</span> </div> </div> <div class="tab">'; foreach($plans as $slug => $plan){ echo '<div class="pricing_tab" id="'.$plan['slug'].'"> <ul> <li class="plans_heading" id="plan"><span class="head_span">'.$plan['name'].'</span></li> <li class="plans_price" id="price"><span data-price="'.$plan['price'].'">'.(empty($plan['price']) ? 'No Cost' : '$'.$plan['price'].'/Year').'</span></li> <li>'.(empty($plan['themes']) ? 'Unlimited' : $plan['themes']).' Themes</li> <li>'.(empty($plan['sites']) ? 'Unlimited' : $plan['sites']).' Site'.($plan['sites'] != 1 ? 's' : '').' *</li> <li>'.(empty($plan['pages']) ? 'Unlimited' : $plan['pages']).' Pages</li> <li>'.(empty($plan['blogs']) ? 'Unlimited' : $plan['blogs']).' Blog Posts</li>'; //<li>Download Sites '.(!empty($plan['download_sites']) ? '<span class="dashicons dashicons-yes" style="color:#00B249;"></span>' : '<span class="dashicons dashicons-no" style="color:#D41B27;"></span>').'</li> echo ' <li><button class="buy_button" id="pay_now" onClick="start_buy(\''.$plan['slug'].'\');" '.(!empty($plan['button_disable']) ? 'style="background-color:#999999;"' : '').'>'.__($plan['button_txt']).'</button></li> </ul> </div>'; } echo ' </div> <p>* If your license expires, your site will continue to work, but you will not be able to edit your site</p> <br/><br/> </div> </div>'; ?> <style> .wrap{ font-size: 14px; } .plans_history th{ color: #FFFFFF !important; } .plans_heading{ background: #00B249; color: #FFFFFF !important; font-size: 24px !important; } .plans_price{ background: #33C16D; color: #FFFFFF !important; font-size: 20px !important; line-height: 45%; } .head_span{ border-bottom: 1px solid #fff; } .most_popular{ background: #FA9300 !important; } .current_plan{ background: #49A9F5; font-size: 14px; padding: 5px 20px; text-align: center; color: #FFFFFF; margin: 0 auto; display: table; } .buy_button{ font-size: 16px; padding: 5px 30px; line-height: 25px; background: #FA9300; color: #FFFFFF; border: 0px; cursor: pointer; } .buy_button:hover{ background: #D77E00; } .dashicons, .dashicons-before::before { width: 30px; } .pricing_tab ul{ border: 1px solid rgba(0, 0, 0, 0.14); box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14); margin-top: -1px; } .pricing_tab{ padding: 10px; width: 25%; padding-top: 0px; } .pricing_tab li { border-bottom: 1px solid rgba(0, 0, 0, 0.05); color: #737373; margin-bottom: 0; padding: 20px; text-align: center; list-style-type: none; font-size: 16px; } .plan_highlight{ width:25%; } .tab{ display: inline-flex; width: 100%; } .modalDialog { position: fixed; font-family: Arial, Helvetica, sans-serif; top: 40px; right: 0; bottom: 0; left: 0; background: rgba(0,0,0,0.8); z-index: 10001; display: none; } .modal-header { border-bottom: 1px solid #e5e5e5; padding: 0 15px; } .modal-header .close { margin-top: -2px; } button.close { background: rgba(0, 0, 0, 0) none repeat scroll 0 0; border: 0 none; cursor: pointer; padding: 0; } .close { color: #000; float: right; font-size: 21px; font-weight: 700; line-height: 1; opacity: 0.2; text-shadow: 0 1px 0 #fff; } .modal-body { padding: 15px; position: relative; } .modalDialog > div { width: 300px; left: calc(50% - 125px); background-clip: padding-box; background-color: #fff; border: 1px solid rgba(0, 0, 0, 0.2); border-radius: 6px; box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); outline: 0 none; position: relative; } .modal-footer { border-top: 1px solid #e5e5e5; padding: 10px 20px; text-align: right; } .btn-default { background-color: #fff; border-color: #ccc; color: #333; } .btn { -moz-user-select: none; background-image: none; border: 1px solid transparent; border-radius: 4px; cursor: pointer; display: inline-block; font-size: 14px; font-weight: 400; line-height: 1.42857; margin-bottom: 0; padding: 6px 12px; text-align: center; touch-action: manipulation; vertical-align: middle; white-space: nowrap; } .license_details{ background-color:#F5F5F5; border: 1px solid #E5E5E5; width:30%; } </style> <center><div id="display_theme" style="height:auto;"></div></center> <script> function toggle_license_form(){ $("#enter_license_form").toggle(300); } function start_buy(plan_name){ var cur_url = window.location; window.open(<?php echo '"'.$sitepad['buy_link'].'&license='.$sitepad['license']['license'].'&plan="'; ?>+plan_name+"&return_cp_url="+encodeURI(cur_url)); } </script> <?php require( ABSPATH . 'site-admin/admin-footer.php' );
Close