kooWZ

Results 12 comments of kooWZ

自动登录是参考start.bat使用吧

> > However, vanilla GDB works well without errors. > > What does this mean? My OS starts at `_start`. After enabling MMU and doing other configurations, it calls `main`....

@disconnect3d I think I found the reason, but still I have totally no idea why this would happen: When attaching QEMU with vanilla GDB and pwndbg, a certain instruction in...

@disconnect3d I figured out this problem was caused by some kind of encoding problem in `poke` function in `memory.py`. It tries to check whether `0x40000000` is writeable. https://github.com/pwndbg/pwndbg/blob/f945b417da14c5bafdc41e6c0c38d83100501e0d/pwndbg/gdblib/memory.py#L114-L130 https://github.com/pwndbg/pwndbg/blob/f945b417da14c5bafdc41e6c0c38d83100501e0d/pwndbg/gdblib/memory.py#L149-L171 First...

I modified https://github.com/pwndbg/pwndbg/blob/f945b417da14c5bafdc41e6c0c38d83100501e0d/pwndbg/gdblib/memory.py#L107-L108 to: ```py if isinstance(data, str): try: data = bytes(data, "latin1") except: data = bytes(data, "utf-8") ``` and now pwndbg works fluently.

@w568w https://gs.fudan.edu.cn/2701/list.htm 这个是完整的研究生课表吗?

Changing the line to `@timeout_decorator.timeout(30, use_signals=False)` at https://github.com/open-compass/VLMEvalKit/blob/7c47fcaedcd9e3eff1546cb41da84c090a64679c/vlmeval/dataset/utils/mathv.py#L14 fixes this error on MathVision. See https://github.com/pnpnpn/timeout-decorator#multithreading