Vikz 0 Posted April 19, 2019 Share Posted April 19, 2019 Anyone have some advice to make my own website more secure from attack like MySQL Injection? Link to comment Share on other sites More sharing options...
Knight444 0 Posted April 19, 2019 Share Posted April 19, 2019 I would suggest cloudflare for website protection Link to comment Share on other sites More sharing options...
FaithMan 17 Posted April 20, 2019 Share Posted April 20, 2019 From what I know IPS or any other CMS have fairly good protection from MySQL Injection, you should probably worry more about some kind of network attack. Link to comment Share on other sites More sharing options...
Elvag 1 Posted April 24, 2019 Share Posted April 24, 2019 (edited) protecting yourself from things like mysql injection........ thats funky just make sure everything is up 2 date like your mysql or maria db's etc but my 2 cents for web security is if you do not need ssh access aka remote access 2 the server disable it immediately, this is solid advice i have been brute forced more times than u can imagine simply because i had remote ssh access enabled. also if you are going too use ssh remember that Using public key authentication for SSH is far more secure than using usernames and passwords to authenticate. finally if you do not need remote mysql database access than disable it by setting bind-address=127.0.0.1 in my.cnf configuration file Edited April 24, 2019 by Elvag Link to comment Share on other sites More sharing options...
bykamn 0 Posted April 25, 2019 Share Posted April 25, 2019 Don't use passwords ever. SSH keys only. Passwords for things like root accounts to forum softwares/mysql users/ etc, I reccomend going to a password generator and generating a fairly long password for EACH account and keeping them in a neat notepad document or something. Link to comment Share on other sites More sharing options...
mast100 0 Posted April 29, 2019 Share Posted April 29, 2019 SSH key is safest way to connect to ur ftp. Cloudflare is very good at ddosing, but u have to write clean code without sqli etc. Rest should be just fine. Link to comment Share on other sites More sharing options...
livedigi 2 Posted May 3, 2019 Share Posted May 3, 2019 You didn't told us in what your website is built (php, asp.net etc.) Link to comment Share on other sites More sharing options...
RevoltSec 0 Posted May 15, 2019 Share Posted May 15, 2019 I would suggest Cloudflare Protection, but you could just also google about website protection. Link to comment Share on other sites More sharing options...
Meehoweq 1 Posted May 15, 2019 Share Posted May 15, 2019 SSH keys instead of plain passwords, CF as a web proxy, don't ever trust user input if you're coding something on your own - always escape any characters, any suspiciously looking shit. Link to comment Share on other sites More sharing options...
nowthisisepic 0 Posted May 17, 2019 Share Posted May 17, 2019 Always use open source software when you can, That way you can fix any holes the original creators might have not found. Also do what Meehoweq said about escaping characters etc... Link to comment Share on other sites More sharing options...
cnglow 0 Posted May 29, 2019 Share Posted May 29, 2019 Only use SSH keys. Link to comment Share on other sites More sharing options...
Hiro. 0 Posted June 1, 2019 Share Posted June 1, 2019 Cloudflare seems like its one of the best right now. Link to comment Share on other sites More sharing options...
felix ulrich 5 Posted June 2, 2019 Share Posted June 2, 2019 Use bitninja.io and kernelkare if you have your own server. bitninja also has WAF to use with webserver for increased security. Maybe also, consider using docker if you use several web apps. Can increase security through containerizing. Link to comment Share on other sites More sharing options...
Kojixus 0 Posted June 6, 2019 Share Posted June 6, 2019 Cloudflare doesn't do that much with my MySQL Injections, you just have to setup it up properly its like the same thing with php if you can code it really good you won't have any issues Link to comment Share on other sites More sharing options...
Shirayukiie 0 Posted June 6, 2019 Share Posted June 6, 2019 Keep yourself patched and always be up to date with any exploitations on the software u are running, and also firewalls can help. Link to comment Share on other sites More sharing options...
Recommended Posts