Commit 2ab849a InformationSecurity
authored
1 parent 619bd6b commit 2ab849a Copy full SHA for 2ab849a
File tree 1 file changed +59
-0
lines changed
1 file changed +59
-0
lines changed Original file line number Diff line number Diff line change
1
+ # 日期:2016-07-14
2
+ # 作者:ym
3
+
4
+ 目前windows安全检查脚本实现的功能有如下几点:
5
+
6
+ 1、系统信息检查
7
+
8
+ 2、端口状态检查
9
+
10
+ 3、添加/卸载记录
11
+
12
+ 4、IE浏览器记录
13
+
14
+ 5、用户检查
15
+
16
+ 6、隐藏用户检查
17
+
18
+ 7、进程检查
19
+
20
+ 8、注册表启动项检查
21
+
22
+ 9、通信检查
23
+
24
+ 10、CMD使用记录检查
25
+
26
+ 11、C盘部分文件夹捆绑文件检查
27
+
28
+
29
+ # 这里有一个使用重点:如果是涉及到注册表检查的,需要给注册表赋予权限,通过reg query来读取,大部分注册表是不允许直接读取的。
30
+
31
+ HKEY_LOCAL_MACHINE\SAM\SAM\Domains\Account\Users\Names [ 1 2 19]
32
+ 注册表相关权限如下:
33
+
34
+ 用regini,是系统自带的注册表权限工具
35
+ 1 - Administrators 完全访问
36
+ 2 - Administrators 只读访问
37
+ 3 - Administrators 读和写入访问
38
+ 4 - Administrators 读、写入、删除访问
39
+ 5 - Creator 完全访问
40
+ 6 - Creator 读和写入访问
41
+ 7 - everyone 完全访问
42
+ 8 - everyone 只读访问
43
+ 9 - everyone 读和写入访问
44
+ 10 - everyone 读、写入、删除访问
45
+ 11 - Power Users 完全访问
46
+ 12 - Power Users 读和写入访问
47
+ 13 - Power Users 读、写入、删除访问
48
+ 14 - System Operators 完全访问
49
+ 15 - System Operators 读和写入访问
50
+ 16 - System Operators 读、写入、删除访问
51
+ 17 - System 完全访问
52
+ 18 - System 读和写入访问
53
+ 19 - System 只读访问
54
+ 20 - Administrators 读、写、执行访问
55
+ 21 - Interactive User 完全访问
56
+ 22 - Interactive User 读和写入访问
57
+ 23 - Interactive User 读、写入、删除访问
58
+
59
+ 命令格式为HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run [ 2 9 19]
You can’t perform that action at this time.
0 commit comments