MyBB Community Forums

Full Version: Remote SQL
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I am making a plugin that would work the best if it could remotely access a SQL database. If I enabled remote SQL and made a SQL account that only has SELECT priveleges, would there be any security dangers?
Well, if the script is not SQL injection resistant, the hacker would have remote access to your server Toungue

You are better off getting your info from a PHP file that is stored on your SQL server and has access to the info. Then having some kind of verification of users, and only give out the info your plugin needs, instead of leaving your whole DB open to the hacker Smile
Ok, yeah, that sounds safer Smile