01 2024 档案
摘要:class Node: def __init__(self, key, val): self.key = key self.val = val self.prev = None self.next = None class LRUCache: def __init__(self, capacity)
阅读全文
摘要:最近在写用C写算法的过程中,发现一个异常,非常有趣,现象如下: [2024-01-03 20:34:54] Exception info (no: 1 idx: 0) [2024-01-03 20:34:54] Exception Type: 11 [2024-01-03 20:34:54] Exc
阅读全文
摘要:Shellcode初探[1]: 什么是shellcode? 用chatGPT构造简易shellcode from:https://blog.restkhz.com/post/glance-at-shellcode-1 前言 我可能又要开一个系列文, 希望这次不要太监了.最近正在重新自学一些比较二进制
阅读全文