# I am the Watcher. I am your guide through this vast new twtiverse.
# 
# Usage:
#     https://watcher.sour.is/api/plain/users              View list of users and latest twt date.
#     https://watcher.sour.is/api/plain/twt                View all twts.
#     https://watcher.sour.is/api/plain/mentions?uri=:uri  View all mentions for uri.
#     https://watcher.sour.is/api/plain/conv/:hash         View all twts for a conversation subject.
# 
# Options:
#     uri     Filter to show a specific users twts.
#     offset  Start index for quey.
#     limit   Count of items to return (going back in time).
# 
# twt range = 1 1
# self = https://watcher.sour.is/conv/unf4qra
Go AST 淺析與 CTF 中的實戰運用**
前言-----------在前段時間的網鼎杯某賽道中遇到了一個題,通過混淆的 go 源碼分析各類函數調用、定義信息。但由於題目本身要求獲得的信息過於簡單,有不少人直接暴力搜索來解決。但當我們遇到更爲複雜,更爲巨大的混淆代碼時,IDE 所提供的簡單分析功能也就無能爲力了。這也就是我寫下這篇文章的原因。What are ASTs?------------------------------------ ⌘ Read more