标签:sina 而且 如何 bash make .sh 程序 设计 ide
1 [root@proxy ~]# yum -y install audit //安装软件包 2 [root@proxy ~]# cat /etc/audit/auditd.conf //查看配置文件,确定日志位置 3 log_file = /var/log/audit/audit.log //日志文件路径 4 [root@proxy ~]# systemctl start auditd //启动服务 5 [root@proxy ~]# systemctl enable auditd //设置开机自启
1 [root@proxy ~]# auditctl -s //查询状态 2 [root@proxy ~]# auditctl -l //查看规则 3 [root@proxy ~]# auditctl -D //删除所有规则
1 [root@proxy ~]# auditctl -w /etc/passwd -p wa -k passwd_change //设置规则所有对passwd文件的写、属性修改操作都会被记录审计日志 2 [root@proxy ~]# auditctl -w /etc/selinux/ -p wa -k selinux_change //设置规则,监控/etc/selinux目录 3 [root@proxy ~]# auditctl -w /usr/sbin/fdisk -p x -k disk_partition //设置规则,监控fdisk程序 4 [root@proxy ~]# auditclt -w /etc/ssh/sshd_conf -p warx -k sshd_config //设置规则,监控sshd_conf文件
1 [root@proxy ~]# vim /etc/audit/rules.d/audit.rules 2 -w /etc/passwd -p wa -k passwd_changes 3 -w /usr/sbin/fdisk -p x -k partition_disks
1 [root@proxy ~]# tailf /var/log/audit/audit.log 2 type=SYSCALL msg=audit(1517557590.644:229228): arch=c000003e 3 syscall=2 success=yes exit=3 4 a0=7fff71721839 a1=0 a2=1fffffffffff0000 a3=7fff717204c0 5 items=1 ppid=7654 pid=7808 auid=0 uid=0 gid=0 euid=0 suid=0 6 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts2 ses=3 comm="cat" 7 exe="/usr/bin/cat" 8 subj=unconfined_u:unconfined_r:unconfined_t:s0-s0:c0.c1023 key="sshd_config" 9 .. .. 10 #内容分析 11 # type为类型 12 # msg为(time_stamp:ID),时间是date +%s(1970-1-1至今的秒数) 13 # arch=c000003e,代表x86_64(16进制) 14 # success=yes/no,事件是否成功 15 # a0-a3是程序调用时前4个参数,16进制编码了 16 # ppid父进程ID,如bash,pid进程ID,如cat命令 17 # auid是审核用户的id,su - test, 依然可以追踪su前的账户 18 # uid,gid用户与组 19 # tty:从哪个终端执行的命令 20 # comm="cat" 用户在命令行执行的指令 21 # exe="/bin/cat" 实际程序的路径 22 # key="sshd_config" 管理员定义的策略关键字key 23 # type=CWD 用来记录当前工作目录 24 # cwd="/home/username" 25 # type=PATH 26 # ouid(owner‘s user id) 对象所有者id 27 # guid(owner‘s groupid) 对象所有者id
1 [root@proxy ~]# ausearch -k sshd_config -i //根据key搜索日志,-i选项表示以交互式方式操作
1 [root@proxy ~]# tar -xf nginx-1.12.tar.gz 2 [root@proxy ~]# cd nginx-1.12 3 [root@proxy nginx-1.12]# ./configure 4 >--without-http_autoindex_module \ //禁用自动索引文件目录模块 5 >--without-http_ssi_module 6 [root@proxy nginx-1.12]# make 7 [root@proxy nginx-1.12]# make install
1 [root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf 2 … … 3 http{ 4 server_tokens off; //在http下面手动添加这么一行 5 … … 6 } 7 [root@proxy ~]# nginx -s reload 8 [root@proxy ~]# curl -I http://192.168.4.5 //查看服务器响应的头部信息
1 [root@proxy nginx-1.12]# vim +48 src/http/ngx_http_header_filter_module.c 2 //注意:vim这条命令必须在nginx-1.12源码包目录下执行!!!!!! 3 //该文件修改前效果如下: 4 static u_char ngx_http_server_string[] = "Server: nginx" CRLF; 5 static u_char ngx_http_server_full_string[] = "Server: " NGINX_VER CRLF; 6 static u_char ngx_http_server_build_string[] = "Server: " NGINX_VER_BUILD CRLF; 7 //下面是我们修改后的效果: 8 static u_char ngx_http_server_string[] = "Server: Jacob" CRLF; 9 static u_char ngx_http_server_full_string[] = "Server: Jacob" CRLF; 10 static u_char ngx_http_server_build_string[] = "Server: Jacob" CRLF; 11 //修改完成后,再去编译安装Nignx,版本信息将不再显示为Nginx,而是Jacob 12 [root@proxy nginx-1.12]# ./configure 13 [root@proxy nginx-1.12]# make && make install 14 [root@proxy nginx-1.12]# killall nginx 15 [root@proxy nginx-1.12]# /usr/local/nginx/sbin/nginx //启动服务 16 [root@proxy nginx-1.12]# curl -I http://192.168.4.5 //查看版本信息验证
1 [root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf 2 … … 3 http{ 4 … … 5 limit_req_zone $binary_remote_addr zone=one:10m rate=1r/s; 6 server { 7 listen 80; 8 server_name localhost; 9 limit_req zone=one burst=5; 10 } 11 } 12 //备注说明: 13 //limit_req_zone语法格式如下: 14 //limit_req_zone key zone=name:size rate=rate; 15 //上面案例中是将客户端IP信息存储名称为one的共享内存,内存空间为10M 16 //1M可以存储8千个IP信息,10M可以存储8万个主机连接的状态,容量可以根据需要任意调整 17 //每秒中仅接受1个请求,多余的放入漏斗 18 //漏斗超过5个则报错 19 [root@proxy ~]# /usr/local/nginx/sbin/nginx -s reload
1 [root@client ~]# ab -c 100 -n 100 http://192.168.4.5/
1 [root@client ~]# curl -i -X GET http://192.168.4.5 //正常 2 [root@client ~]# curl -i -X HEAD http://192.168.4.5 //正常
1 [root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf 2 http{ 3 server { 4 listen 80; 5 #这里,!符号表示对正则取反,~符号是正则匹配符号 6 #如果用户使用非GET或POST方法访问网站,则retrun返回444的错误信息 7 if ($request_method !~ ^(GET|POST)$ ) { 8 return 444; 9 } 10 } 11 } 12 [root@proxy ~]# /usr/local/nginx/sbin/nginx -s reload
1 [root@client ~]# curl -i -X GET http://192.168.4.5 //正常 2 [root@client ~]# curl -i -X HEAD http://192.168.4.5 //报错
1 [root@proxy ~]# vim /usr/local/nginx/conf/nginx.conf 2 http{ 3 client_body_buffer_size 1K; 4 client_header_buffer_size 1k; 5 client_max_body_size 1k; 6 large_client_header_buffers 2 1k; 7 … … 8 } 9 [root@proxy ~]# /usr/local/nginx/sbin/nginx -s reload
1 [root@proxy ~]# systemctl status mariadb //确保服务已启动 2 [root@proxy ~]# mysql_secure_installation //执行初始化安全脚本
1 [root@proxy ~]# mysqladmin -uroot -predhat password ‘mysql‘ 2 //修改密码,旧密码为redhat,新密码为mysql 3 [root@proxy ~]# mysql -uroot -pmysql 4 MariaDB [(none)]>set password for root@‘localhost‘=password(‘redhat‘) 5 //使用账户登录数据库,修改密码 6 MariaDB [(none)]> select user,host,password from mysql.user; 7 +--------+---------+---------------------------------------------+ 8 | user | host | password | 9 +--------+---------+---------------------------------------------+ 10 | root | localhost | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 | 11 | root | 127.0.0.1 | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 | 12 | root | ::1 | *84BB5DF4823DA319BBF86C99624479A198E6EEE9 | 13 +--------+-----------+--------------------------------------------+
1 [root@proxy ~]# cat .bash_history 2 mysqladmin -uroot -pxxx password ‘redhat‘ 3 //通过命令行修改的密码,bash会自动记录历史,历史记录中记录了明文密码 4 [root@proxy ~]# cat .mysql_history 5 set password for root@‘localhost‘=password(‘redhat‘); 6 select user,host,password from mysql.user; 7 flush privileges; 8 //通过mysql命令修改的密码,mysql也会有所有操作指令的记录,这里也记录了明文密码
1 [root@proxy ~]# mysqldump -uroot -predhat mydb table > table.sql //备份数据库中的某个数据表 2 [root@proxy ~]# mysqldump -uroot -predhat mydb > mydb.sql //备份某个数据库 3 [root@proxy ~]# mysqldump -uroot -predhat --all-databases > all.sql //备份所有数据库
1 [root@proxy ~]# mysql -uroot -predhat mydb < table.sql //还原数据表 2 [root@proxy ~]# mysql -uroot -predhat mydb < mydb.sql //还原数据库 3 [root@proxy ~]# mysql -uroot -predhat < all.sql //还原所有数据库
1 [root@proxy ~]# mysql -uroot -predhat //使用管理员,登陆数据库 2 MariaDB [(none)]> grant all on *.* to tom@‘%‘ identified by ‘123‘; //创建一个新账户tom 3 使用tcpdump抓包(192.168.4.5) 4 [root@proxy ~]# tcpdump -w log -i any src or dst port 3306 //抓取源或目标端口是3306的数据包,保存到log文件中
1 [root@client ~]# mysql -utom -p123 -h 192.168.4.5 2 //在192.168.4.100这台主机使用mysql命令登陆远程数据库服务器(192.168.4.5) 3 //用户名为tom,密码为123 4 MariaDB [(none)]> select * from mysql.user; //登陆数据库后,任意执行一条查询语句
1 [root@proxy ~]# tcpdump -A -r log 2 //使用tcpdump查看之前抓取的数据包,很多数据库的数据都明文显示出来
1 [root@proxy ~]# curl -I http://192.168.2.100:8080/xx //访问不存在的页面文件,查看头部信息 2 [root@proxy ~]# curl -I http://192.168.2.100:8080 //访问存在的页面文件,查看头部信息 3 [root@proxy ~]# curl http://192.168.2.100:8080/xx//访问不存在的页面文件,查看错误信息
1 [root@web1 tomcat]# yum -y install java-1.8.0-openjdk-devel 2 [root@web1 tomcat]# cd /usr/local/tomcat/lib/ 3 [root@web1 lib]# jar -xf catalina.jar 4 [root@web1 lib]# vim org/apache/catalina/util/ServerInfo.properties //根据自己的需要,修改版本信息的内容 5 [root@web1 lib]# /usr/local/tomcat/bin/shutdown.sh //关闭服务 6 [root@web1 lib]# /usr/local/tomcat/bin/startup.sh //启动服务
1 [root@proxy ~]# curl -I http://192.168.2.100:8080/xx //访问不存在的页面文件,查看头部信息 2 [root@proxy ~]# curl -I http://192.168.2.100:8080 //访问存在的页面文件,查看头部信息 3 [root@proxy ~]# curl http://192.168.2.100:8080/xx//访问不存在的页面文件,查看错误信息
1 [root@web1 lib]# vim /usr/local/tomcat/conf/server.xml 2 connectionTimeout="20000" redirectPort="8443" server="jacob" /> 3 [root@web1 lib]# /usr/local/tomcat/bin/shutdown.sh //关闭服务 4 [root@web1 lib]# /usr/local/tomcat/bin/startup.sh //启动服务
1 [root@proxy ~]# curl -I http://192.168.2.100:8080/xx //访问不存在的页面文件,查看头部信息 2 [root@proxy ~]# curl -I http://192.168.2.100:8080 //访问存在的页面文件,查看头部信息 3 [root@proxy ~]# curl http://192.168.2.100:8080/xx//访问不存在的页面文件,查看错误信息
1 [root@web1 ~]# useradd tomcat 2 [root@web1 ~]# chown -R tomcat:tomcat /usr/local/tomcat/ //修改tomcat目录的权限,让tomcat账户对该目录有操作权限 3 [root@web1 ~]# su -c /usr/local/tomcat/bin/startup.sh tomcat //使用su命令切换为tomcat账户,以tomcat账户的身份启动tomcat服务 4 [root@web1 ~]# chmod +x /etc/rc.local //该文件为开机启动文件 5 [root@web1 ~]# vim /etc/rc.local //修改文件,添加如下内容 6 su -c /usr/local/tomcat/bin/startup.sh tomcat
1 [root@web1 ~]# rm -rf /usr/local/tomcat/webapps/*
1 [root@proxy ~]# cat test1.sh //v1版本脚本 2 #!/bin/bash 3 echo "hello wrld" 4 [root@proxy ~]# cat test2.sh //v2版本脚本 5 #!/bin/bash 6 echo "hello the world" 7 echo "test file"
1 [root@proxy ~]# diff test1.sh test2.sh //查看文件差异 2 @@ -1,3 +1,3 @@ 3 #!/bin/bash 4 -echo "hello world" 5 -echo "test" 6 +echo "hello the world" 7 +echo "test file" 8 [root@proxy ~]# diff -u test1.sh test2.sh //查看差异,包含头部信息 9 --- test1.sh 2018-02-07 22:20:02.723971251 +0800 10 +++ test2.sh 2018-02-07 22:20:13.358760687 +0800 11 @@ -1,3 +1,3 @@ 12 #!/bin/bash 13 -echo "hello world" 14 -echo "test" 15 +echo "hello the world" 16 +echo "test file"
1 [root@proxy ~]# cd demo 2 [root@proxy demo]# vim test1.sh 3 #!/bin/bash 4 echo "hello world" 5 echo "test" 6 [root@proxy demo]# vim test2.sh 7 #!/bin/bash 8 echo "hello the world" 9 echo "test file"
1 [root@proxy demo]# diff -u test1.sh test2.sh > test.patch
1 [root@proxy demo]# yum -y install patch 2 [root@proxy demo]# patch -p0 < test.patch //打补丁 3 patching file test1.sh 4 //patch -pnum(其中num为数字,指定删除补丁文件中多少层路径前缀) 5 //如原始路径为/u/howard/src/blurfl/blurfl.c 6 //-p0则整个路径不变 7 //-p1则修改路径为u/howard/src/blurfl/blurfl.c 8 //-p4则修改路径为blurfl/blurfl.c 9 //-R(reverse)反向修复,-E修复后如果文件为空,则删除该文件 10 [root@proxy demo]# patch -RE < test.patch //还原旧版本,反向修复
1 [root@proxy ~]# mkdir demo 2 [root@proxy ~]# cd demo 3 [root@proxy demo]# mkdir {source1,source2} 4 [root@proxy demo]# echo "hello world" > source1/test.sh 5 [root@proxy demo]# cp /bin/find source1/ 6 [root@proxy demo]# tree source1/ //source1目录下2个文件 7 |-- find 8 `-- test.sh 9 [root@proxy demo]# echo "hello the world" > source2/test.sh 10 [root@proxy demo]# echo "test" > source2/tmp.txt 11 [root@proxy demo]# cp /bin/find source2/ 12 [root@proxy demo]# echo "1" >> source2/find 13 [root@proxy demo]# tree source2/ //source1目录下3个文件 14 |-- find 15 |-- test.sh 16 `-- tmp.txt 17 //注意:两个目录下find和test.sh文件内容不同,source2有tmp.txt而source1没有该文件
1 [root@proxy demo]# diff -u source1/ source2/ //仅对比了文本文件test.sh;二进制文件、tmp都没有对比差异,仅提示,因为没有-a和-N选项 2 [root@proxy demo]# diff -Nu source1/ source2/ //对比了test.sh,并且使用source2目录的tmp.txt与source1的空文件对比差异。 3 [root@proxy demo]# diff -Nua source1/ source2/ //对比了test.sh、tmp.txt、find(程序)。
1 [root@proxy ~]# cd demo 2 [root@proxy demo]# diff -Nuar source1/ source2/ > source.patch
1 [root@proxy demo]# ls 2 source1 source2 source.patch 3 [root@proxy demo]# cat source.patch //对比的文件有路径信息 4 --- source1/test.sh 2018-02-07 22:51:33.034879417 +0800 5 +++ source2/test.sh 2018-02-07 22:47:32.531754268 +0800 6 @@ -1 +1 @@ 7 -hello world 8 +hello the world 9 [root@proxy demo]# cd source1 10 [root@proxy source1]# patch -p1 < ../source.patch
部署audit监控文件、加固常见服务的安全、使用diff和patch工具打补丁
标签:sina 而且 如何 bash make .sh 程序 设计 ide
原文地址:https://www.cnblogs.com/share368/p/9600002.html