码迷,mamicode.com
首页 >  
搜索关键字:insecure    ( 369个结果
MySQL5.6 Using a password on the command line interface can be insecure
最近把MySQL从5.5升到5.6以后,mysqldump居然不好用了,提示:代码如下复制代码[root@qttc ~]# /usr/local/mysql/bin/mysqldump -uroot -proot db > bak.sqlWarning: Using a passwordon the...
分类:数据库   时间:2014-12-15 23:15:07    阅读次数:411
mysql_error:mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication
SET old_passwords =0;UPDATE mysql.user SET Password =PASSWORD('testpass') WHERE User='testuser' limit 1;SELECT LENGTH(Password) FROM mysql.user WHERE ...
分类:数据库   时间:2014-11-19 20:04:18    阅读次数:206
mysqlnd cannot connect to MySQL 4.1+ using the old insecure authentication的解决方法
直接命令行操作没有问题,但是PHP连接就会报上面的错误。SET old_passwords =0;USE mysql;UPDATE user SET password =PASSWORD('yourpassword') WHERE user='testuser' limit 1;SELECT LEN...
分类:数据库   时间:2014-10-10 14:54:24    阅读次数:229
pod install warning
warning: Insecure world writable dir /usr/local/bin in PATH, mode 040777解决方法:sudo chmod 775 /usr/localtips:775 => root(7) group(7) others(5), 7 => rea...
分类:其他好文   时间:2014-09-17 11:54:12    阅读次数:248
Easier Done Than Said? 【杭电-1039】
/* Easier Done Than Said? Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some...
分类:其他好文   时间:2014-07-29 14:40:28    阅读次数:288
Easier Done Than Said? 【杭电-1039】 附题
/* Easier Done Than Said? Problem DescriptionPassword security is a tricky thing. Users prefer simple passwords that are easy to remember (like buddy), but such passwords are often insecure. Some...
分类:其他好文   时间:2014-07-29 14:39:48    阅读次数:302
pythonxml-rpc记录(游戏自动发布)
#!/usr/bin/python#-*-encoding=utf-8-*-####################################fromSimpleXMLRPCServerimportSimpleXMLRPCServerfromSocketServerimportThreadingMixInimportsubprocess,os.path,os,statimportre,getopt,sysERR_INSECURE=‘[INSECURE_NAME]‘ERR_NO_SCRIPT=‘[NO_S..
分类:编程语言   时间:2014-07-21 15:26:17    阅读次数:300
iOS:解决pod的Insecure world writable dir问题
当我们运行pod setup的命令的时候,有时候会碰到这个警告:/Library/Ruby/Gems/2.0.0/gems/cocoapods-0.33.1/lib/cocoapods/executable.rb:55: warning: Insecure world writable dir /u...
分类:移动开发   时间:2014-06-25 21:25:14    阅读次数:278
Format string is not a string literal (potentially insecure)
Warning: Format string is not a string literal (potentially insecure)[objc]view plaincopyNSString*str=nil;str=[NSStringstringWithFormat:@"---%d---",18...
分类:其他好文   时间:2014-06-07 06:52:53    阅读次数:263
369条   上一页 1 ... 35 36 37
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!