Hi all,

we are compiling and using the User Authentication extension (Windows, MSVC10 
and MSVC14, x86 and amd64).

Problem:
In 3.19 branch one can access a database without authentication.


Example:
When using sqlite 3.12 series (e.g. 3.12.2) everything works like expected.
One can do:

sqlite3.exe db
.user add admin pwd 1
.user login admin pwd
create table mytable (col1 int);
insert into mytable values (1);
.quit

Starting again

sqlite3.exe db
select * from mytable;
Error: user not authenticated

This error message is expected.


In 3.19 branch (3.19.2 and 3.19.3) you get this:

sqlite3.exe db
select * from mytable;
1

Access without authentication.


Is this a regression?

The user authentication extension source code did not change so far.

Best regards,
Christoph Thien
Bruker Optik GmbH 

_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to