摘要: django基础 安装python环境 安装虚拟环境 使用power shell 通过命令让当前shell无限制运行脚本(一些linux命令等也可以使用) Set-ExecutionPolicy Unrestricted 使用cls清屏,使用clear也可以操作 使用pip安装对应模块,查看当前模块 阅读全文
posted @ 2021-11-02 16:38 EpheSeren 阅读(105) 评论(0) 推荐(0) 编辑
摘要: SYN flood攻击 也称SYN洪水攻击,拒绝服务攻击的一种。其他还有ack-flood攻击,udp-flood攻击,icmp-flood攻击。今天,就以syn-flood攻击为例说明。 原理: 利用TCP建立连接时3次握手的“漏洞”,通过原始套接字发送源地址虚假的SYN报文,使目标主机永远无法完 阅读全文
posted @ 2021-10-25 00:03 EpheSeren 阅读(1588) 评论(0) 推荐(0) 编辑
摘要: OSI模型及其对应下的安全问题 阅读全文
posted @ 2021-10-24 22:54 EpheSeren 阅读(1060) 评论(0) 推荐(0) 编辑
摘要: 渗透测试工程师面试1: 来源:https://www.freebuf.com/articles/neopoints/265312.html 渗透就跟泡妹纸⼀样样的,认识妹纸--了解妹纸(信息收集)--逗妹纸开心(扫描)-- 得到妹纸的肯定之后 就开始寻找时机表⽩(漏洞利⽤) -- 表⽩失败(漏洞被修 阅读全文
posted @ 2021-09-11 15:16 EpheSeren 阅读(672) 评论(0) 推荐(0) 编辑
摘要: 字符串 substr() 字符串截取 <?php $str='dds jkdsfdj'; echo substr($str,2,5); ?> 访问 echo $str[2]; echo $str[-2]; // 可以访问,但是不能修改 strlen($str) 求长度 strlen($str); 输 阅读全文
posted @ 2021-09-11 14:18 EpheSeren 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 文件 filetype() <?php echo filetype('a.txt'); // 查看文件类型 ?> file_exists() stat() array_slice() //截断 getfileMsg(),获取文件信息 getfileSize,获取文件大小 getfiletype,获取 阅读全文
posted @ 2021-09-11 14:16 EpheSeren 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 思科配置 阅读全文
posted @ 2021-08-21 11:34 EpheSeren 阅读(760) 评论(0) 推荐(0) 编辑
摘要: LAMP环境搭建 阅读全文
posted @ 2021-05-11 21:17 EpheSeren 阅读(41) 评论(0) 推荐(0) 编辑
摘要: MySQL最基本操作增删改查 阅读全文
posted @ 2021-05-11 21:16 EpheSeren 阅读(39) 评论(0) 推荐(0) 编辑
摘要: PHP连接MySQL 阅读全文
posted @ 2021-05-11 21:15 EpheSeren 阅读(53) 评论(0) 推荐(0) 编辑