Hellow guys,
I have a question about MYSQL.
I have a serverfiles and on MYSQL i had a user name monty'@' and i just remove that user and i have this error on mysql db mysql_query error: The user specified as a definer ('monty'@') does not exist
The game is working but i can't creat any characters. I search with notepad++ in db source that user and i don't find it.
I need help with this problem... because this is a backdoor. In my config from db,auth,ch i change user and password.
I find in performance_schema this:
SELECT COUNT(*) FROM `performance_schema`.`users` WHERE CAST(`performance_schema`.`users`.`USER` AS CHAR CHARACTER SET utf8) COLLATE utf8_general_ci LIKE '%monty%'
SELECT
*
FROM
`performance_schema`.`events_statements_current`
WHERE
CAST(
`performance_schema`.`events_statements_current`.`EVENT_NAME` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`SOURCE` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`SQL_TEXT` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`DIGEST` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`DIGEST_TEXT` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`CURRENT_SCHEMA` AS CHAR CHARACTER
SET utf8
) COLLATE utf8_general_ci LIKE '%monty%'
OR CAST(
`performance_schema`.`events_statements_current`.`OBJECT_TYPE` AS CH...