rootkiter

Results 9 comments of rootkiter

Typically, a lot of compilation logs are generated after the make command.However, the log above is generated directly, and no other results are output. I mean the output like `gcc...

另一个选择是一个叫Kaitai的项目 https://github.com/kaitai-io/kaitai_struct 这个项目的问题是当前模版太少

https://pref.github.io 一个早期的010模版引擎代码。C++实现,似乎是目前的最优解。

This code is suitable for my scenario, I'm not sure if it's universal. ```python3 class Qlkit(qiling.Qiling): def __init__(self, *args, **kw): qiling.Qiling.__init__(self, *args, **kw) self.heap = self.heap_init() def heap_init(self): qlkit_heap_address =...

See here for the effect https://github.com/rootkiter/SwiftUI-Bootcamp/tree/quickstudy

什么叫 nginx 代理链接... v2ray 和 nginx 没啥关系吧

如果通讯双方没有关闭, 那就一直持续到有一方关闭. 至于你说的那种断开重连的情况, 是应用层的事, 由通讯双方自己维护状态, vmess 只负责隧道的通讯, 对是不是重连不感兴趣.

> 那么也就是对于需要保持长连接的tcp或者ws,比如tcp登录后可以发送消息,其实在服务器端保持了连接状态下次发送的会从代理服务器找到第一次的连接吗? 短线重连是应用层的事, 由客户端和服务器自行管理, v2ray 只负责网络通讯. 参考 你浏览器访问网站时, 关闭浏览器重开后, 仍然维持登陆状态, 此时 v2ray 可“近似理解”为网卡的角色, 不关心你是不是登陆了账号, 来了数据包交到对应的目标就够了, 账号的登录状态是浏览器和服务器各自维护的.