Item | version |
---|---|
OS | macOS Catalina |
Wireshark | 3.6.2 |
Lua for building luagcrypt | 5.2.4 |
luagcrypt | https://github.com/Lekensteyn/luagcrypt 5763e94b751e6ff0dcf20e328c299d49eb8fcbce |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* CloudFare IP list: https://www.cloudflare.com/ips/ | |
* Google's IP addresses: | |
nslookup -q=TXT _netblocks.google.com 8.8.8.8 | |
nslookup -q=TXT _netblocks2.google.com 8.8.8.8 | |
nslookup -q=TXT _netblocks3.google.com 8.8.8.8 | |
Each of the above line will display a CIDR block or Google’s IP addresses. | |
* Amazon IP addresses: https://ip-ranges.amazonaws.com/ip-ranges.json |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Implementation of a UDP proxy | |
package main | |
import ( | |
"flag" | |
"fmt" | |
"log" | |
"net" | |
"os" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
自动补全 : esc | |
查找项目文件:command+t | |
查找文件内符号:shift+command+t | |
跳到某行:command+l | |
选择:shift+方向键 | |
向后缩进:option+tab | |
向前缩进:shift+option+tab | |
reformat 所选:option+command+[ | |
大写所选:control+u | |
小写所选:control+shift+u |