📁
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.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_domains.sh
#!/bin/bash echo "Content-type: text/html" echo "" read -n $CONTENT_LENGTH POST_DATA # Decode POST data DOMAINS=$(echo "$POST_DATA" | sed -e 's/^domains=//' | tr '+' ' ' | sed -e 's/%0D%0A/\n/g' -e 's/%0A/\n/g' -e 's/%0D/\n/g' | sed -e 's/%2E/./g' | sed -e 's/%2F/\//g' | sed -e 's/%3A/:/g' | sed -e 's/%40/@/g') # HTML start cat <<EOF <!DOCTYPE html> <html> <head> <title>Domain Blocklist Results</title> <style> /* Loading overlay style */ #loadingOverlay { position: fixed; top: 0; left: 0; width: 100vw; height: 50vh; display: flex; justify-content: center; align-items: center; font-size: 2rem; font-weight: bold; z-index: 9999; } body { font-family: Arial, sans-serif; background: url('/Purple.avif') no-repeat center center fixed; background-size: cover; color: #fff; padding: 30px; } table { width: 40%; margin: auto; border-collapse: collapse; background-color: rgba(255, 255, 255, 0.85); color: #000; } th, td { padding: 12px; border: 1px solid #ddd; text-align: left; } th { background-color: #5e2a7e; color: #fff; } .listed { color: red; font-weight: bold; } .clean { color: green; font-weight: bold; } h2 { text-align: center; color: #000; text-shadow: 1px 1px 2px #000; } </style> </head> <body> <div id="loadingOverlay">Loading...</div> <h2><i>Domain Blocklist Check Results (Spamhaus DBL)</i></h2> <script> // When page fully loaded, remove loading overlay window.addEventListener('load', function() { const loading = document.getElementById('loadingOverlay'); loading.style.display = 'none'; }); </script> <table> <tr> <th>S.No</th> <th>Domain</th> <th>Status</th> </tr> EOF # Loop through each domain IFS=$'\n' count=1 for domain in $DOMAINS; do domain=$(echo "$domain" | sed 's/[^a-zA-Z0-9.-]//g') # sanitize input if [[ -z "$domain" ]]; then continue; fi lookup="${domain}.dbl.spamhaus.org" if host "$lookup" > /dev/null 2>&1; then status="<span class='listed'>LISTED</span>" else status="<span class='clean'>CLEAN</span>" fi echo " <tr><td>$count</td><td>$domain</td><td>$status</td></tr>" count=$((count+1)) done # HTML end cat <<EOF </table> </body> </div> <div style='text-align: center; margin-top: 20px;'> <form method='GET' action="/index.html"> <button style='padding: 10px 20px; font-size: 16px; background-color: #444; color: white; border: none; border-radius: 5px;'>Back</button> </form> </div> </html> EOF
Save