码迷,mamicode.com
首页 >  
搜索关键字:cpan proxy authentication needed    ( 7708个结果
Chapter 2 User Authentication, Authorization, and Security(3):保护服务器避免暴力攻击
暴力攻击(Brute-force attack)是通过几乎所有可能的字符组合尝试破解密码,或者使用一个字典表,包含几乎所有可能的密码来实现密码破解的方法。如果你的密码很简单,那么很快就会被破解。所以,测试密码是非常重要的。...
分类:其他好文   时间:2014-08-22 16:29:39    阅读次数:221
学习大话设计模式07_代理模式
代理模式:为其他对象提供一种代理以控制对这个对象的访问。 1 /** 2 * 定义了RealSubject和Proxy的共用接口,这样就在任何使用RealSubject的地方都可以使用Proxy. 3 * @author Monica 4 * 5 */ 6 abstract class Su...
分类:其他好文   时间:2014-08-22 15:58:28    阅读次数:182
如何在Linux下使用命令行嗅探HTTP流量
通常我们在调试Web应用、RESTFUL服务或者排错PAC?(proxy auto config)?以及检查是否有恶意访问等会去通过错误日志日志或者嗅探数据包的方式去排错;常见的嗅探数据包软件有tcpdump、wireshark;但是针对H...
分类:系统相关   时间:2014-08-22 11:03:06    阅读次数:323
配置.NET程序使用代理进行HTTP请求
方式一:编码方式处理 var defaultProxy = new WebProxy(); defaultProxy.Address = new Uri("http://proxy:8080"); defaultProxy.Crede...
分类:Web程序   时间:2014-08-22 10:48:35    阅读次数:295
nginx配置支持nagios
配置前提:安装了nginx和php。并且php也安装了gd支持现在需要做的是让nagios在LNMP环境下也能运行1.首先须需要安装依赖包1.1.安装perlShell>yuminstallperl1.2.安装perlfcgi模块Shell>wgethttp://search.cpan.org/CPAN/authors/id/F/FL/FLORA/FCGI-0.74.tar.gzShell>p..
分类:移动开发   时间:2014-08-21 19:42:25    阅读次数:329
Nginx Upstream Keepalive 配置
Nginx自1.1.4以后内置支持UpstreamKeepalive配置。 upstreamhttp_backend{ server127.0.0.1:8080; keepalive16; } server{ ... location/http/{ proxy_passhttp://http_backend; proxy_http_version1.1; proxy_set_headerConnection""; ... } }更多细节可参考:http://ngin..
分类:其他好文   时间:2014-08-21 15:17:45    阅读次数:395
ahjesus 前端缓存原理 转载
LAMP缓存图从图中我们可以看到网站缓存主要分为五部分服务器缓存:主要是基于web反向代理的静态服务器nginx和squid,还有apache2的mod_proxy和mod_cache模浏览器缓存:包括页面html缓存和图片js,css等资源的缓存PHP缓存:有很多免费的PHP缓冲加速工具,如apc...
分类:其他好文   时间:2014-08-21 12:50:34    阅读次数:181
Sending SMS And Dialing Numbers without User Consent(Context is not needed)
Sending SMS And Dialing Numbers without User ConsentSending SMS does not require context or user interaction. A simple call does the job, as shown in ...
分类:其他好文   时间:2014-08-21 09:44:43    阅读次数:170
Failed to issue method call: Unit mysqld.service failed to load: No such file or directory.
可能的原因:1、http://blog.sina.com.cn/s/blog_4692ea0a0101jqhz.html2、http://diag.5ustore.com/proxy/index.php?url=1J1h12y31F1b1918yLyByU1FyNyjyD101z1612yo1C1c...
分类:数据库   时间:2014-08-20 22:19:43    阅读次数:1085
Chapter 2 User Authentication, Authorization, and Security(2):创建登录帐号
登录帐号是定义在服务器(实例)级别,并能被授予进行管理任务、连接、访问数据库等权限的帐号。SQL Server安全模型有两个级别:服务器级别和数据库级别。登录帐号必须先创建在服务器级别。如果需要访问数据库,还需要在数据库级别创建一个用户映射到已有的登录名中。...
分类:其他好文   时间:2014-08-20 16:31:22    阅读次数:279
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!