A static phpMyAdmin login page with faux error messages. https://pube.tk/phpmyadmin/
Go to file
Abhorrent_Anger 712364a5e6 Updated Nginx configuration 2022-05-28 12:23:59 +03:00
themes Basic functionality 2022-05-26 22:32:27 +03:00
.gitignore Basic functionality 2022-05-26 22:32:27 +03:00
LICENSE Initial commit 2022-05-18 21:41:05 +03:00
README.md Updated Nginx configuration 2022-05-28 12:23:59 +03:00
dot.gif Basic functionality 2022-05-26 22:32:27 +03:00
favicon.ico Basic functionality 2022-05-26 22:32:27 +03:00
frame.html Basic functionality 2022-05-26 22:32:27 +03:00
functions.js Basic functionality 2022-05-26 22:32:27 +03:00
index.html Index rename & symlinks 2022-05-26 23:13:53 +03:00
logo_right.png Basic functionality 2022-05-26 22:32:27 +03:00
phpmyadmin.css Basic functionality 2022-05-26 22:32:27 +03:00

README.md

phpMyAdminHoneypot

A static phpMyAdmin login page with faux error messages.

Nginx configuration

Add this section to your website's config file:

location /phpmyadmin {
    location ~ \.php$ {
            try_files $uri $uri/ /phpmyadmin/index.html;
    }
    alias /var/www/phpMyAdminHoneypot/;
    index index.html;
    try_files $uri $uri/ /phpmyadmin/index.html;
    error_page 403 =200 /phpmyadmin/index.html;
    error_page 404 =200 /phpmyadmin/index.html;
    error_page 405 =200 /phpmyadmin/index.html;
    error_page 500 =200 /phpmyadmin/index.html;
}

OPTIONAL: Loading arbitrary hidden HTML

Create a frame.html file at the root of the project directory with the desired content.