摘要:
在http://www.cnblogs.com/dhb133/archive/2007/05/31/765955.html文章中有句话“客户端缺省为active(port)模式;近来,由于Port模式的安全问题,许多客户端的FTP应用缺省为Passive模式” 为什么呢?客户端和服务器端21端口建立连接后,客户端软件使用 PORT命令,这个命令包含了一个暂时的端口和一个ip地址,这个ip地址和端口一般是客户端自己的ip和一个随机端口,但是这个ip地址和端口可以伪造(未经过验证,理论值),那如果是一个被攻击者的ip和80端口,这样就可以找到很多ftp服务器,去连接被攻击者 阅读全文
摘要:
以MySQL 5.1.36为例:在slow_query_log (注意log_slow_querys参数已经废弃)值为ON的情况下(默认为OFF),当一条SQL语句执行的时间超过了 long_query_time 预设的时间(默认为10s,同时精确到微秒)时,默认(log_output值为FIFL时)就会把这种慢查询记录 到:slow_query_log_file值所指定的文件中。 mysql select @@global.log_output;+---------------------+| @@global.log_output |+---------------------+| 阅读全文
摘要:
//LUDB为可疑数据库名 USE MASTERGOSP_CONFIGURE 'ALLOW UPDATES',1 RECONFIGURE WITH OVERRIDEGOALTER DATABASE LUDB SET EMERGENCYGOsp_dboption 'LUDB', 'single user', 'true'GODBCC CHECKDB('LUDB','REPAIR_ALLOW_DATA... 阅读全文
摘要:
安装了xp sp3之后,命令mstsc.exe /console就不起作用了此时命令更改为: mstsc.exe /admin 了! 此命令支持一下操作系统 Windows Server 2008 Windows Vista Service Pack 1 (SP1) Beta and RC Windows XP Service Pack 3 (SP3) Beta and RC 阅读全文
摘要:
转自 xiaomei's blog 当apache站点受到严重的cc攻击,我们可以用iptables来防止web服务器被CC攻击,实现自动屏蔽IP的功能。 1.系统要求 (1)LINUX 内核版本:2.6.9-42ELsmp或2.6.9-55ELsmp(其它内核版本需要重新编译内核,比较麻烦,但是也是可以实现的)。 (2)iptables版本:1.3.7 2. 安装 安装iptables1.3.7... 阅读全文
摘要:
bind 安装配置文档官方网站:http://www.bind.com/源码软件包:Bind 是开源的软件,可以去其官方网站下载。http://www.bind.com/pub/bind9/tar xzvf bind-9.6.0.tar.gzcd bind-9.6.0./configure –prefix=/usr/localmakemake install在/usr/local/et... 阅读全文
摘要:
iptables -A INPUT -s 121.8.107.2 -p tcp --dport 9988 -j ACCEPThosts,host.conf,resolv.conf,/etc/init.d/iptables save #会保存规则到/etc/sysconfig/iptablesiptables-save #保存规则不是/etc/sysconfig/iptablesiptables-save /etc/sysconfig/iptables #保存规则到/etc/sysconfig/iptablesservice iptables restart 重启iptables会加载/et 阅读全文
摘要:
在默认情况下,黑冰(BlackIce)防火墙是不拦载PING的。如果你一定要对PING进行拦载,就需要 对ICMP进行设置。首先在安全模式下进入BlackIce的安装目录,用记事本打开firewall.ini文件(或者在DOS下用edit打开对其编 辑)。找到[MANUAL ICMP ACCEPT]行,可以看到在此项下的内容是空的,即BlackIce对ICMP是不进行干预的。我们需要手工在其下添加... 阅读全文
摘要:
异常信息: SQL Server 阻止了对组件 'Ad Hoc Distributed Queries' 的 STATEMENT'OpenRowset/OpenDatasource' 的访问,因为此组件已作为此服务器安全配置的一部分而被关闭。系统管理员可以通过使用 sp_configure 启用 'Ad Hoc Distributed Queries'。有关启用 'Ad Hoc Distribut... 阅读全文
摘要:
来源:http://blog.chinaunix.net/u/23251/showart_459448.html 方法如下:配置工具-> Sql Server Configuration Manager-> MSSQLSERVER的协议 看看TCP/IP协议是否启动,如果启动,右键菜单点"属性" ,在分页菜单中选"IP地址",把"IP1"和"IP2"中"TCP端口"为1433,... 阅读全文
摘要:
1 在运行里“ sqlservr -c -f ”2 用查询分析器连接到 SQL Server,然后运行下列 Transact-SQL 命令: ALTER DATABASE tempdb MODIFY FILE (NAME = 'tempdev', SIZE = 100) --Desired target size for the data file ALTER DATA... 阅读全文
摘要:
用这个连接串 StrDSN="driver={SQL server};server="& StrServer &",1104;uid="&StrUser&";pwd="& StrSaPwd &";database=database出现下面错误Microsoft OLE DB Provider for ODBC Drivers (0x80040E21)... 阅读全文
摘要:
我们公司的同事写的create PROCEDURE get_tableinfo AS if not exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[tablespaceinfo]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) create table tablespa... 阅读全文
摘要:
[代码]select convert(nvarchar(13),begintime,120),count(1) from tb_table(nolock)where begintime>='2008-10-20' and begintime<'2008-10-21'group by convert(nvarchar(13),begintime,120) 阅读全文
摘要:
修改机器名字后,修改sql任务,提示不能修改、删除任务等等,用下面的语句就可以处理。 use msdb go sp_configure allow updates,1 reconfigure with override go update sysjobs set originating_server=@@servername go sp_configure allow updates,0 reco... 阅读全文