调查目的:了解当前各基于TLS的协议方案中ClientHello的指纹独特性。理论背景见 https://arxiv.org/abs/1607.01639 。
指纹数据库:
(利益相关:我是这个的作者)
| CUTTER = python3 jumpcutter/jumpcutter.py | |
| %_0.3.mp4: %.mkv | |
| ffmpeg -i $< -c:v copy $(basename $<).mp4 | |
| if [ -d ./TEMP ]; then rm -r ./TEMP; fi | |
| ${CUTTER} --silent_threshold 0.3 --input_file $(basename $<).mp4 --output_file $(basename $<)_0.3.mp4 | |
| %_wechat.mp4: %_0.3.mp4 | |
| ffmpeg -i $< -c copy -t 00:05:00.00 $@ | |
| %_0.1.mp4 %_0.2.mp4 %_0.3.mp4: %.mp4 | |
| if [ -d ./TEMP ]; then rm -r ./TEMP; fi |
调查目的:了解当前各基于TLS的协议方案中ClientHello的指纹独特性。理论背景见 https://arxiv.org/abs/1607.01639 。
指纹数据库:
(利益相关:我是这个的作者)
I'm writing this up as a gist, because I'm not sure I'll pursue any of it, but it seems worth writing down.
A basic problem with IPv6-only LANs at the moment is that you still need support for legacy protocol servers, which implies you doing some kind of DNS64 and NAT64 (IPv6-to-IPv4 stateful translation).
Currently, NAT64 only exists outside the kernel, as userspace software. This is not ideal because it limits available performance (since you have to keep bouncing between user space and kernel space),
| # Cyber attack maps: | |
| #################### | |
| Akamai https://www.akamai.com/us/en/solutions/intelligent-platform/visualizing-akamai/real-time-web-monitor.jsp | |
| Arbor Networks https://www.digitalattackmap.com | |
| Bitdefender https://threatmap.bitdefender.com | |
| BlueLiv https://community.blueliv.com/map | |
| Cisco Talos https://www.talosintelligence.com | |
| Checkpoint https://threatmap.checkpoint.com | |
| Deutsche Telekom https://sicherheitstacho.eu/start/main |
| // Async await func | |
| async function getTimelineData() { | |
| var response = await fetch('/some-api-url') | |
| return response.json() | |
| } | |
| async function populateTimelineInit() { | |
| var data = await getTimelineData(); | |
| new vis.DataSet(data); |
| { | |
| "update_interval_minutes": { | |
| "2G": 1440, | |
| "3G": 1440, | |
| "4G": 1440, | |
| "WIFI": 1440 | |
| }, | |
| "version": 1526088187, | |
| "url_list": [ | |
| { |
| #! /usr/bin/python | |
| # Usage `python list-url.py` | |
| import frida,sys | |
| jspayload= """ | |
| setImmediate(function() { |
| #!/usr/bin/python | |
| """ | |
| Usage: python csv2wikitable.py csv_file | |
| ----- | |
| input: csv format | |
| output: wiki table format | |
| """ |
For KVM and Laptop
I want full control what boots the computer to avoid the so called evil maid attack. That requires setting SecureBoot with only my own keys.