openssl_1.result
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. drop table if exists t1;
  2. create table t1(f1 int);
  3. insert into t1 values (5);
  4. grant select on test.* to ssl_user1@localhost require SSL;
  5. grant select on test.* to ssl_user2@localhost require cipher "DHE-RSA-AES256-SHA";
  6. grant select on test.* to ssl_user3@localhost require cipher "DHE-RSA-AES256-SHA" AND SUBJECT "/C=SE/L=Uppsala/O=MySQL AB/CN=MySQL Client/Email=abstract.mysql.developer@mysql.com";
  7. grant select on test.* to ssl_user4@localhost require cipher "DHE-RSA-AES256-SHA" AND SUBJECT "/C=SE/L=Uppsala/O=MySQL AB/CN=MySQL Client/Email=abstract.mysql.developer@mysql.com" ISSUER "/C=SE/L=Uppsala/O=MySQL AB/CN=Abstract MySQL Developer/Email=abstract.mysql.developer@mysql.com";
  8. flush privileges;
  9. select * from t1;
  10. f1
  11. 5
  12. delete from t1;
  13. ERROR 42000: Access denied for user 'ssl_user1'@'localhost' to database 'test'
  14. select * from t1;
  15. f1
  16. 5
  17. delete from t1;
  18. ERROR 42000: Access denied for user 'ssl_user2'@'localhost' to database 'test'
  19. select * from t1;
  20. f1
  21. 5
  22. delete from t1;
  23. ERROR 42000: Access denied for user 'ssl_user3'@'localhost' to database 'test'
  24. select * from t1;
  25. f1
  26. 5
  27. delete from t1;
  28. ERROR 42000: Access denied for user 'ssl_user4'@'localhost' to database 'test'
  29. delete from mysql.user where user='ssl_user%';
  30. delete from mysql.db where user='ssl_user%';
  31. flush privileges;
  32. drop table t1;