lusid1 / pkg2zip

Decrypts PlayStation Vita pkg file and packages to zip archive

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

memset writing out of bounds

aguaviva opened this issue · comments

note that diccid is 10 bytes long

char discid[10];

but here you clear 16 (0x10)

memset(discid, 0x00, 0x10);