-- MySQL dump honeypot -- This is a fake file designed to detect scanners -- -- Server version: 8.0.0 CREATE DATABASE IF NOT EXISTS `honeypot`; USE `honeypot`; CREATE TABLE `users` ( `id` int NOT NULL AUTO_INCREMENT, `username` varchar(255), `password` varchar(255), PRIMARY KEY (`id`) ); INSERT INTO `users` VALUES (1, 'admin', 'HONEYPOT_FAKE_PASSWORD');