事发缘由:因三级等保、需要将centos7系统中的”高危”用户进行封禁或者注释,用户有: dademon、adm、lp、shutdown、halt、mail、operator、gamesftp、nobody、system-network、polkitd、dbus、postfix,其中polktd、d ...
分类:
其他好文 时间:
2021-06-02 10:30:31
阅读次数:
0
PreparedStatement对象 使用preparedStatement对象,可以有效的防止SQL注入,并且效率更高 新增 import java.sql.Connection; import java.sql.PreparedStatement; import java.util.Date; ...
分类:
其他好文 时间:
2021-05-24 13:10:42
阅读次数:
0
import smtplib import os from email.header import Header from email.mime.text import MIMEText # shenyuximr@163.com def sendemail(host,usernames,verify ...
分类:
编程语言 时间:
2021-05-24 04:25:15
阅读次数:
0
本地邮箱告警配置 配置本地邮箱告警前,我们要用到mail命令 所以先安装mail命令 [root@mf ~]# yum -y install mailx 使用mail命令发送邮箱 [root@mf ~]# echo "test" | mail -s "20210426" 18808843007@16 ...
分类:
其他好文 时间:
2021-04-27 14:43:11
阅读次数:
0
最近在学习fofa,感觉功能挺强大的,就开了一个会员,来玩玩,不过结果是挺多的,在网上也有很多工具爬取下,不过我找到一个简化版的fofa,分享一下 搜索HTTP响应头中含有"thinkphp"关键词的网站和IP 结果有170361条,肯定看不完的,用脚本爬取, 1 import pyfofa 2 3 ...
分类:
其他好文 时间:
2021-04-22 15:45:42
阅读次数:
0
http://mail.qq.com/cgi-bin/ftnExs_download?k=0d33656100442bca7470667411370a175051575505510b0f48510757021a0c5d5457480303075d150355075504565d00045707593 ...
分类:
其他好文 时间:
2021-04-21 12:28:03
阅读次数:
0
def selfAdd(a): a += a a_int = 1 print('a_int1:',a_int) selfAdd(a_int) print('a_int2:',a_int) 输出结果: a_int1: 1 a_int2: 1 a_list =[1,2] print('a_list1:' ...
分类:
其他好文 时间:
2021-04-21 12:25:48
阅读次数:
0
https://www.git-scm.com/docs/git-pull https://www.runoob.com/git/git-pull.html https://www.yiibai.com/git/git_pull.html https://www.runoob.com/git/git ...
分类:
其他好文 时间:
2021-04-19 14:14:27
阅读次数:
0
1、看了https://www.cnblogs.com/hizhaolei/p/10001459.html 必须是专业版的pycharm, 学生使用edu.cn邮箱可以免费申请(nice) Interpreter解释器:用来跑代码 那就应该用服务器的解释器 所以第一件事是 配置pycharm的解释器 ...
分类:
其他好文 时间:
2021-04-16 12:07:10
阅读次数:
0
1、查找/var目录下属主为root,且属组为mail的所有文件 有目录没有文件,-type f [14:29:30 root@centos7 ~]#find /var -user root -a -group mail -ls 67142179 4 drwxrwxr-x 2 root mail 4 ...
分类:
其他好文 时间:
2021-04-08 13:25:06
阅读次数:
0