- 博客(7)
- 收藏
- 关注
原创 python network packet sniffer
import socketimport structimport textwrapdef ethernet_frame(data): dest_mac, src_mac, proto = struct.unpack('! 6s 6s H', data[:14]) return get_mac_addr(dest_mac), get_mac_addr(src_mac), socket.htons(p
2016-05-22 13:59:08
328
原创 wireshark学习笔记
今天找回newboston(https://thenewboston.com/videos.php?cat=360&video=30078)的课程, 改版了很多,赞一个,重新学习了下wireshark。知识点整理如下:
2016-05-21 23:31:01
231
原创 windows文件浏览器选项
1. Windows 文件管理器中shift+右键 , 可以有更多的选项,比如可以直接在命令行中进入从当前路径,以前都是傻傻的拷贝路径。
2016-05-21 23:28:34
609
原创 memmove实现
void* memmove(void *dest, const void *src,size_t n){ if (n == 0) { return 0; } /* 验证参数 */ if (dest == NULL) return 0; if (src == NULL) return 0; char *psr
2014-04-24 21:00:34
404
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人