Re: file privilege

2012-01-30 Thread Carlos Proal
in m > <mailto:ka...@el.net>> wrote: > > > > > > > > hi... > > > > so i have this user in the user table in the mysql db that has all > the > > privileges but "grant". now i need for that user to have the "file"

Re: file privilege

2012-01-30 Thread kalin m
s, "db" is > specific to each database. > > Carlos > > > On Mon, Jan 30, 2012 at 10:56 PM, kalin m <mailto:ka...@el.net>> wrote: > > > > hi... > > so i have this user in the user table in the mysql db that has all the > pr

Re: file privilege

2012-01-30 Thread Carlos Proal
leges but "grant". now i need for that user to have the "file" > privilege so it can do "into outfile". thing is i don't see that > privilege anywhere in the db table. i know that i have to do the "grant > file on user@localhst" thing but what tabl

file privilege

2012-01-30 Thread kalin m
hi... so i have this user in the user table in the mysql db that has all the privileges but "grant". now i need for that user to have the "file" privilege so it can do "into outfile". thing is i don't see that privilege anywhere in the db table. i know that i

Re: GRANT FILE privilege SECURITY hole

2001-07-12 Thread Sinisa Milivojevic
Thank you for the fine bug report. We shall fix it soon. -- Regards, __ ___ ___ __ / |/ /_ __/ __/ __ \/ /Mr. Sinisa Milivojevic <[EMAIL PROTECTED]> / /|_/ / // /\ \/ /_/ / /__ MySQL AB, FullTime Developer /_/ /_/\_, /___/\___\_\___/ Larnaca, Cyprus <___/ w

grant FILE privilege SECURITY hole

2001-07-12 Thread Andrei B.
I give file access to a user on tables in a database : GRANT INSERT,SELECT,FILE ON LOGS.* TO www@localhost identified by 'hidden'; then : SHOW GRANTS www@localhost; +---+ | Grants for www@localhost

GRANT FILE privilege SECURITY hole

2001-07-12 Thread root
>Description: Granting a normal user FILE privilege will be listed as DROP and user has both FILE and DROP privileges. >How-To-Repeat: mysql -u root -p CREATE DATABASE TEST1; USE TEST1; CREATE TABLE TESTING (COL1 CHAR(3) ); GRANT INSERT,