gitextract_4mmdaia1/ ├── Compiled/ │ ├── s32 │ └── s64 ├── LICENSE.md ├── README.md ├── Source/ │ ├── Harusame/ │ │ ├── Harusame.vcxproj │ │ ├── Harusame.vcxproj.filters │ │ ├── Harusame.vcxproj.user │ │ ├── main.c │ │ ├── resource.h │ │ └── resource.rc │ ├── Murasame/ │ │ ├── Murasame.vcxproj │ │ ├── Murasame.vcxproj.filters │ │ ├── Murasame.vcxproj.user │ │ ├── main.c │ │ ├── resource.h │ │ └── resource.rc │ ├── Shigure/ │ │ ├── Shigure.vcxproj │ │ ├── Shigure.vcxproj.filters │ │ ├── Shigure.vcxproj.user │ │ ├── main.c │ │ ├── resource.h │ │ └── resource.rc │ ├── Umikaze/ │ │ ├── Umikaze.vcxproj │ │ ├── Umikaze.vcxproj.filters │ │ ├── Umikaze.vcxproj.user │ │ ├── main.c │ │ ├── resource.h │ │ └── resource.rc │ ├── Yuudachi/ │ │ ├── Yuudachi.vcxproj │ │ ├── Yuudachi.vcxproj.filters │ │ ├── Yuudachi.vcxproj.user │ │ ├── gui.c │ │ ├── gui.h │ │ ├── main.c │ │ ├── p2p.c │ │ ├── p2p.h │ │ ├── resource.h │ │ ├── resource.rc │ │ └── za.manifest │ ├── ZeroAccess.sln │ ├── minirtl/ │ │ ├── _filename.c │ │ ├── _filename.h │ │ ├── _strcat.c │ │ ├── _strcmp.c │ │ ├── _strcmpi.c │ │ ├── _strcpy.c │ │ ├── _strend.c │ │ ├── _strlen.c │ │ ├── _strncmp.c │ │ ├── _strncmpi.c │ │ ├── _strncpy.c │ │ ├── _strstr.c │ │ ├── _strstri.c │ │ ├── cmdline.c │ │ ├── cmdline.h │ │ ├── hextou64.c │ │ ├── hextoul.c │ │ ├── i64tostr.c │ │ ├── itostr.c │ │ ├── minirtl.h │ │ ├── rtltypes.h │ │ ├── strtoi.c │ │ ├── strtoi64.c │ │ ├── strtou64.c │ │ ├── strtoul.c │ │ ├── u64tohex.c │ │ ├── u64tostr.c │ │ ├── ultohex.c │ │ └── ultostr.c │ └── shared/ │ ├── cab.c │ ├── cab.h │ ├── cui.c │ ├── cui.h │ ├── ea.c │ ├── ea.h │ ├── gdip.c │ ├── gdip.h │ ├── global.h │ ├── ldr.c │ ├── ldr.h │ ├── md5.c │ ├── md5.h │ ├── ntos.h │ ├── rc4.c │ ├── rc4.h │ ├── util.c │ ├── util.h │ ├── za.h │ ├── za_crypto.c │ ├── za_crypto.h │ └── za_rkey.h └── ZeroAccess.sha256