hedgeberg

Results 44 comments of hedgeberg

@173210 we had all those details for part numbers etc already. The main question is how the SPI flash is read/controlled and whether it's mastered by the proasic chip or...

Yeah, I know the card uses a lot of power. Could you send me that experiment? That sounds like it might be exactly what we need tbh.

Not quite, you missed the point a bit. This repo contains the research side of ntrboot, the actual application side is: https://github.com/kitling/ntrboot_flasher Basically, theres a factory backdoor in 3ds arm9...

I would note that the problem of python 3 in ghidra, specifically, is already solved by another government entity: https://github.com/dod-cyber-crime-center/pyhidra Leverages jpype to integrate native python installations into ghidra, and...

> Is there specific security concerns that you need assistance with? @Thrameos to be clear, it's not that there are security concerns -- ghidra currently leverages jython to enable python...

(I'm going to end up sending multiple messages here, sorry. It's how I debug this sort of issue and record what I've done) I haven't gotten any output of that...

Here's what I get as the output from running strace on jtagconfig: ``` $> strace jtagconfig --enum 2>&1 | grep "libjtag"   openat(AT_FDCWD, "/mnt/remote_tools/Altera/23.3/quartus/linux64/glibc-hwcaps/x86-64-v3/libjtag_client.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT (No such file...

I'm going to go forward with the plan of throwing `jtagd` into ghidra, see what I can figure out as far as how exactly `jtagd` decides which files get pulled...

Apologies, it's 22.1, don't know how I misnamed that so bad.

Ok, throwing `jtagd` into ghidra, I found where the `libjtag_hw_*.so` files are being loaded. It's in the aptly-named function "load_libraries", pictured below. ![image](https://github.com/j-marjanovic/jtag-quartus-ft232h/assets/3290125/9c668e79-8e3c-4a66-bddb-1eaa8e11645a) Seems like I can use GDB to...