Hello G0dfather,
I am unaware of whether it is a plug-in or not, it doesn't seem like it is.
However, to disable plug-ins via config.php put this code right after <?php
PHP Code:
define('DISABLE_HOOKS', true);
So your config.php should look like:
PHP Code:
<?php
define('DISABLE_HOOKS', true);
with the rest of it underneath. Might I suggest when you have finished with the plug-in disable to comment it out and write above it what it is like so:
PHP Code:
<?php
// Disable plug-ins:
#define('DISABLE_HOOKS', true);
The # comments out the command so it isn't executed!
Hope this helped you.