Re: Verifying security

2010-12-03 Thread Grant
> To verify that root has a password, do the following: > > 1) service mysql restart --skip-grant-tables > 2) In MySQL, SELECT CONCAT(,user,'''@''',host,) mysql_user,password > from mysql.user where user='root'; > This will show every host that root can login as along with the PASSWORD >

Re: Verifying security

2010-12-03 Thread Grant
> without flags to tell it otherwise, nmap only scan ports 1-1024, > higher numbered ports would have to be specified via nmap -p 1-5000 > but see how much longer it takes. Bingo. That was it. I see now that I've had port 3306 open until recently. I'm working on verifying that the mysql users h

Re: Verifying security

2010-11-29 Thread Michael Dykman
without flags to tell it otherwise, nmap only scan ports 1-1024, higher numbered ports would have to be specified via nmap -p 1-5000 but see how much longer it takes. - michael dykman On Mon, Nov 29, 2010 at 9:02 AM, Grant wrote: > I've got a couple security questions for you guys. > > Is ther

RE: Verifying security

2010-11-29 Thread Rolando Edwards
To verify that root has a password, do the following: 1) service mysql restart --skip-grant-tables 2) In MySQL, SELECT CONCAT(,user,'''@''',host,) mysql_user,password from mysql.user where user='root'; This will show every host that root can login as along with the PASSWORD function-encr