摘要: #python学习-re模块 ##预备知识 正则表达式基本语法 ''' ^ 匹配一个输入或一行的开头,/^a/匹配"an A",而不匹配"An a" $ 匹配一个输入或一行的结尾,/a$/匹配"An a",而不匹配"an A" * 匹配前面元字符0次或多次,/ba*/将匹配b,ba,baa,baaa 阅读全文
posted @ 2021-02-07 20:52 Shivers0x72 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ###从0开始的c语言学习 学习资料来源于imooc教程的c语言入门 ####Hello World #include <stdio.h> int main() { printf("Hello World\n"); return 0; } //`#include <stdio.h>` 预处理命令,作 阅读全文
posted @ 2021-02-01 21:34 Shivers0x72 阅读(210) 评论(0) 推荐(0) 编辑
摘要: ###Fluxion工具 ####下载地址与安装 git clone https://github.com/shivers0x72/fluxion.git ./fluxion.sh -i //选择 17 中文 ####步骤 //开始前插上可监听无线网卡 ./fluxion.sh ''' [*] 请选 阅读全文
posted @ 2021-02-01 09:08 Shivers0x72 阅读(568) 评论(0) 推荐(0) 编辑
摘要: ###利用工具 可以监听的无线网卡(必需) EWSA airmon-ng ####抓包 //查看本机网卡 iwconfig //查看网卡详细信息 iw list //打开网卡监听,wlan0为网卡名称 airmon-ng start wlan0 //监听所有wifi,此时网卡名称改变 airodum 阅读全文
posted @ 2021-02-01 08:08 Shivers0x72 阅读(252) 评论(0) 推荐(0) 编辑
摘要: ###内网穿透工具 ###下载地址 https://github.com/jpillora/chisel/releases/tag/v1.7.4 ###使用示例 1. chisel进行ssh内网穿透 //vps上 ./chisel server -p 6666 --reverse //靶机上 ./c 阅读全文
posted @ 2021-01-31 16:20 Shivers0x72 阅读(397) 评论(0) 推荐(0) 编辑
摘要: ###函数如下 abs() dict() help() min() setattr() all() dir() hex() next() slice() any() divmod() id() object() sorted() ascii() enumerate() input() oct() s 阅读全文
posted @ 2021-01-30 23:50 Shivers0x72 阅读(44) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2021-01-30 22:05 Shivers0x72 阅读(7) 评论(0) 推荐(0) 编辑