另外上面演示的是在本地,如果要远程呢??呵呵我们来看看:
f:>net use \\192.168.1.30\ipc$ password /u:administrator
命令成功完成。
f:\>auditpol.exe \\192.168.1.30 /enable /system:all /logon:all /account:success
running ...
audit information changed successfully on \\192.168.1.30 ...
new audit policy on \\192.168.1.30 ...
system = success and failure
logon = success and failure
object access = no privilege
use = no process
tracking = no
policy change = no
account management = no
directory service access = no
account logon = success
如果要关闭把上面的enable改成disable就可以啦!~~~~~~~~
审核策略就说到这里,还想继续了解的可以去参考有关书籍。接着上面说,知道了那3个系统自带的日志后,我们来看看怎么清除。首先看看基于ipc的远程删除日志的工具:一个是elsave,这个大家都很了解了吧,如下:
f:\tools\rizhi>elsave
elsave: you must use -f and/or -c
f:\tools\rizhi>elsave /?
usage: elsave [-s \\server] [-l log] [-f file] [-c] [-q]
saves and/or clears a windows nt event log. version 0.4 19980907.
-s \\server server for which you want to save or clear the log.
-l log name of log to save or clear.
-f file save the log to a file with this name. must be absolute path to
local file on the server for which you want to save the log.
-c clear the log.
-q write errors to the event log
那么我要删除远程机器的应用程序日志命令格式如下:
elsave -s \\192.168.0.77 -l "application" -c
同样的要删除安全日志和系统日志,就在-l参数后跟上“security”和“system”来。
另外一个工具是clearlogs使用说明如下:
f:\tools\rizhi>clearlogs
clearlogs 1.0 - (c) 2002, arne vidstrom (arne.vidstrom@ntsecurity.nu)
- http://ntsecurity.nu/toolbox/clearlogs/
比elsave简单多了是不是啊,呵呵!~~~~~我在此就不再赘述。这两个工具都需要你建立ipc连接来完成,那么如果没有ipc怎么办啊。那就是基于wmi(windows 管理规范)来清除了。
如下:
f:\tools\rizhi>cscript dellog.vbs
microsoft (r) windows 脚本宿主版本 5.1 for windows
版权所有(c) microsoft corporation 1996-1999. all rights reserved.
好了系统自带的日志我就介绍到这里。下面我们来看看,iis日志。
二。iis日志。iis日志保存在%systemroot%\system32\logfiles\下。如果启动了web server的话,那么就会在上述路径下多出一个w3svc1的文件夹,用来存储web服务日志。
如果也启动了iis 自带的ftp服务,那么还有会有个msftpsvc1的文件夹,里面是ftp的日志。
让我们来看看本地清除,要用到的工具是cleaniis.exe如下:
f:\tools\rizhi>cleaniis
iisantidote <logfile dir> <ip or string to hide>
iisantidote <logfile dir><ip or string to hide> stop
stop opiton will stop iis before clearing the files and restart it after
<logfile dir> exemple : c:\winnt\system32\logfiles\w3svc1\ dont forget the \
cleaniislog ver 0.1, by assassin 2001. all rights reserved.
usage: cleaniislog <logfile>|<.> <cleanip>|<.>
logfile - specify log file which you want process.
specified "all" will process all log files.
cleanip - specify ip address which you want clear.
specified "." will clean all ip record.
这个跟上面的工具是差不多的,我就不再赘述了我只举个例子:
clog all 192.168.1.30 //清楚所有日志里的此ip的记录!~~~~~
-----------------------------------------------------------------------------
stopping services......
the service "msftpsvc" doesn't exist
stopping the service "smtpsvc"......
stopping the service "w3svc"......
stopping the service "schedule"......
-----------------------------------------------------------------------------
restoring services status......
starting service "smtpsvc"
starting service "w3svc"
starting service "schedule"
-----------------------------------------------------------------------------
1. 日志的默认位置:%systemroot%\system32\logfiles\w3svc1\,默认每天一个日志。那我们就切换到这个目录下吧,然后 del *.*。你大概想是安全了吧,那就dir一下吧。…… 咦,咦,今天的日志怎么还在?不要慌!因为w3svc服务还开着,那我们怎么清除这个日志文件呢?
方法一: 如有3389可以登录,那就用notepad打开,按ctrl+a 然后del吧。
方法二: net 命令
c:\>net stop w3svc
world wide web publishing service 服务正在停止。(可能会等很长的时间,也可能不成功)
world wide web publishing service 服务已成功停止。