Artem Nechaev
Artem Nechaev
## Environment ### radare version: ```sh $ r2 -v radare2 5.7.7 28569 @ linux-x86-64 git.5.7.6-4-gd6cd7e74b commit: d6cd7e74ba392ea3c224572d031c61c100403257 build: 2022-08-02__18:16:00 ``` ### system info: ``` sh $ uname -ms Linux x86_64...
thread 'main' panicked at 'called `Result::unwrap()` on an `Err` value: Error("missing field `string_symbols`", line: 0, column: 0)', src/cwe_checker_lib/src/checkers/cwe_78.rs:104:69 note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace https://github.com/fkie-cad/cwe_checker/blob/41f10fa1256728e84eabefaa9cd7d0201432fbbf/src/cwe_checker_lib/src/checkers/cwe_78.rs#L104 rather,...
how to manually disassembly fragment raw bytes in disassembly window? angr-management did not disassemble a function that is called indirectly, how can you manually disassemble a piece of bytes, for...
>>> barf = BARF("/home/user/code") Traceback (most recent call last): File "", line 1, in File "/usr/local/lib/python3.8/dist-packages/barf-0.6.0-py3.8.egg/barf/barf.py", line 90, in __init__ self.open(filename) File "/usr/local/lib/python3.8/dist-packages/barf-0.6.0-py3.8.egg/barf/barf.py", line 211, in open self.binary = BinaryFile(filename)...
``` golang fmt.Println(src,dst) opt := copy.Options{ Skip: func(src string) (bool, error) { return strings.HasSuffix(src, ".ext"), nil }, } if err := copy.Copy( src, dst, opt, );err != nil { fmt.Println("[-]...
Lokinet API
where can I see the api and are there examples of the client and server model, that is, full integration of the lokinet library and the shell that communicates with...
>>> avatar_gdb = AvatarGDBConcreteTarget(avatar2.archs.x86.X86,"127.0.0.1", 1234) CRITICAL | 2021-01-12 07:11:52,893 | avatar.targets.GDBTarget0.GDBProtocol | GDBProtocol was unable to connect to remote target 2021-01-12 07:11:52,893 | avatar.targets.GDBTarget0.GDBProtocol.CRITICAL | GDBProtocol was unable to connect...
add: detect default visibility detect potential reentrancy
I'm calling: ptedit_init(),and return non zero value fragment golang code: // #include import "C" func main() { if C.ptedit_init() != 0 { panic("[-] Cannot init PTEdit.sys") } ... }