Kiprey

Results 6 issues of Kiprey

RT,例如这个链接 https://caozongpeng.github.io/photos/

enhancement

These are my codes: ``` from pwn import * p = process("./pwn1_64") e = ELF("pwn1_64") plt_write_addr = e.plt["write"] start_addr = e.symbols["vulnerable_function"] pop_rsi_rdx_rdi_addr = 0x40053b def leak(address): payload1 = "a"*136 payload1...

mystery

Hello! Would you like to ask whether OOM is considered in `GrammarMutator`? There seems to be no limit to the size of `interesting_trees` and various `*_ candidates` in `GrammarMutator`. This...

When the value recorded in the API log is `'" ' "'`, ApiFuzz will make an error when executing the `evaluate` function. Because python recognizes the second single quote as...

根据 `Server::start` 的函数签名: ```rust pub fn start(&mut self) -> Result ``` 可以看到这里使用的是可变借用。该函数一旦执行将一直阻塞,直到 listen 用 fd 被关闭。 而这个 fd 只会在 `Server::close` 函数中被关闭,以下是它的函数签名: ```rust pub fn close(&self) ``` 可以看到这里有一个不可变借用。 由于 Rust 语言限制同一个变量的可变借用和不可变借用不能同时存在,因此在调用...

Classic python object shallow-copy problem. ```python context = { 'lastvar': last_var, 'lines': [], 'variables': {}, 'interesting_lines': [], 'force_var_reuse': False } ... while len(context['lines']) < num_lines: tmp_context = context.copy() try: if...