Linux sh52.ich-4.com 5.14.0-611.26.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jan 29 05:24:47 EST 2026 x86_64
LiteSpeed
Server IP : 198.143.147.58 & Your IP : 216.73.217.21
Domains :
Cant Read [ /etc/named.conf ]
User : actualbuzz
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
cpguard /
app /
resources /
captcha /
Delete
Unzip
Name
Size
Permission
Date
Action
captcha.conf
2.11
KB
-rw-r--r--
2026-04-03 05:37
design.html
26.58
KB
-rw-r--r--
2025-12-23 13:11
http.html
8.33
KB
-rw-r--r--
2025-12-23 13:11
https.html
6.62
KB
-rw-r--r--
2025-12-23 13:11
nginx.conf
2.38
KB
-rw-r--r--
2026-01-14 16:07
nginx_daemon.sh
1.49
KB
-rw-r--r--
2026-01-14 16:07
ssl.conf
1.74
KB
-rw-r--r--
2026-04-03 05:37
Save
Rename
server { listen 9096 default_server; server_name _; root /opt/cpguard/app/api/public/captcha; etag off; keepalive_timeout 0; # Security and Cache Headers add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always; add_header Pragma "no-cache" always; add_header Expires "0" always; add_header X-Frame-Options "SAMEORIGIN"; # 1. The Captcha Processor location = /captcha.php { include fastcgi_params; fastcgi_pass unix:/opt/cpguard/cpg-php-fpm/var/run/cpgphp-cgi.sock; fastcgi_index captcha.php; fastcgi_param SCRIPT_FILENAME $document_root/captcha.php; } # 2. Asset Blocker (Save Bandwidth) location ~* \.(jpg|jpeg|gif|png|bmp|webp|ico|svg|tiff|css|js|woff|woff2|ttf|eot|map|json|pdf|doc|docx|xls|xlsx|ppt|pptx|txt|rtf|zip|rar|7z|tar|gz|bz2|iso|mp3|mp4|avi|mov|mpeg|flv|wav|ogg)$ { return 444; } # 3. Default Catch-All -> Show the HTML Interface location / { rewrite ^ /http.html break; } } server { listen 9097 default_server ssl; server_name _; # Fallback Self-Signed Certs ssl_certificate /opt/cpguard/cpg-nginx/ssl/cpg.pem; ssl_certificate_key /opt/cpguard/cpg-nginx/ssl/cpg.key; root /opt/cpguard/app/api/public/captcha; etag off; keepalive_timeout 0; # Absolute no-cache on captcha add_header Cache-Control "no-store, no-cache, must-revalidate, max-age=0" always; add_header Pragma "no-cache" always; add_header Expires "0" always; location = /altcha.php { include fastcgi_params; fastcgi_pass unix:/opt/cpguard/cpg-php-fpm/var/run/cpgphp-cgi.sock; fastcgi_index altcha.php; fastcgi_param SCRIPT_FILENAME $document_root/altcha.php; } # This saves bandwidth. Nginx simply hangs up on them. location ~* \.(jpg|jpeg|gif|png|bmp|webp|ico|svg|tiff|css|js|woff|woff2|ttf|eot|map|json|pdf|doc|docx|xls|xlsx|ppt|pptx|txt|rtf|zip|rar|7z|tar|gz|bz2|iso|mp3|mp4|avi|mov|mpeg|flv|wav|ogg)$ { return 444; } location / { rewrite ^ /https.html break; } } include captcha/*.conf;