├── .gitattributes ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── arm_dlls ├── dbghelp.dll └── symsrv.dll ├── img └── RT.png ├── meow ├── .clang-format ├── Common │ └── meow_ioctl.h ├── clean.bat ├── install.bat ├── meow.sln ├── meow │ ├── arch │ │ ├── amd64 │ │ │ ├── amd64.asm │ │ │ ├── common.inc │ │ │ └── fnparse.cpp │ │ └── arm │ │ │ ├── arm.asm │ │ │ └── fnparse.cpp │ ├── asm.h │ ├── dispg.cpp │ ├── dispg.h │ ├── exclusivity.cpp │ ├── exclusivity.h │ ├── fnparse.h │ ├── log.cpp │ ├── log.h │ ├── meow.cpp │ ├── meow.pfx │ ├── meow.vcxproj │ ├── meow.vcxproj.filters │ ├── meow.vcxproj.user │ ├── stdafx.cpp │ ├── stdafx.h │ ├── util.cpp │ └── util.h ├── meow_client │ ├── NyanCat.ico │ ├── Resource.rc │ ├── SymbolAddressDeriver.cpp │ ├── SymbolAddressDeriver.h │ ├── SymbolResolver.cpp │ ├── SymbolResolver.h │ ├── meow.pfx │ ├── meow_client.cpp │ ├── meow_client.ruleset │ ├── meow_client.vcxproj │ ├── meow_client.vcxproj.filters │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── symbolManagement.cpp │ ├── symbolManagement.h │ ├── targetver.h │ ├── util.cpp │ └── util.h └── uninstall.bat └── x64_dlls ├── dbghelp.dll └── symsrv.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/README.md -------------------------------------------------------------------------------- /arm_dlls/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/arm_dlls/dbghelp.dll -------------------------------------------------------------------------------- /arm_dlls/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/arm_dlls/symsrv.dll -------------------------------------------------------------------------------- /img/RT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/img/RT.png -------------------------------------------------------------------------------- /meow/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/.clang-format -------------------------------------------------------------------------------- /meow/Common/meow_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/Common/meow_ioctl.h -------------------------------------------------------------------------------- /meow/clean.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/clean.bat -------------------------------------------------------------------------------- /meow/install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/install.bat -------------------------------------------------------------------------------- /meow/meow.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow.sln -------------------------------------------------------------------------------- /meow/meow/arch/amd64/amd64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/arch/amd64/amd64.asm -------------------------------------------------------------------------------- /meow/meow/arch/amd64/common.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/arch/amd64/common.inc -------------------------------------------------------------------------------- /meow/meow/arch/amd64/fnparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/arch/amd64/fnparse.cpp -------------------------------------------------------------------------------- /meow/meow/arch/arm/arm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/arch/arm/arm.asm -------------------------------------------------------------------------------- /meow/meow/arch/arm/fnparse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/arch/arm/fnparse.cpp -------------------------------------------------------------------------------- /meow/meow/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/asm.h -------------------------------------------------------------------------------- /meow/meow/dispg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/dispg.cpp -------------------------------------------------------------------------------- /meow/meow/dispg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/dispg.h -------------------------------------------------------------------------------- /meow/meow/exclusivity.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/exclusivity.cpp -------------------------------------------------------------------------------- /meow/meow/exclusivity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/exclusivity.h -------------------------------------------------------------------------------- /meow/meow/fnparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/fnparse.h -------------------------------------------------------------------------------- /meow/meow/log.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/log.cpp -------------------------------------------------------------------------------- /meow/meow/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/log.h -------------------------------------------------------------------------------- /meow/meow/meow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/meow.cpp -------------------------------------------------------------------------------- /meow/meow/meow.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/meow.pfx -------------------------------------------------------------------------------- /meow/meow/meow.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/meow.vcxproj -------------------------------------------------------------------------------- /meow/meow/meow.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/meow.vcxproj.filters -------------------------------------------------------------------------------- /meow/meow/meow.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/meow.vcxproj.user -------------------------------------------------------------------------------- /meow/meow/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/stdafx.cpp -------------------------------------------------------------------------------- /meow/meow/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/stdafx.h -------------------------------------------------------------------------------- /meow/meow/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/util.cpp -------------------------------------------------------------------------------- /meow/meow/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow/util.h -------------------------------------------------------------------------------- /meow/meow_client/NyanCat.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/NyanCat.ico -------------------------------------------------------------------------------- /meow/meow_client/Resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/Resource.rc -------------------------------------------------------------------------------- /meow/meow_client/SymbolAddressDeriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/SymbolAddressDeriver.cpp -------------------------------------------------------------------------------- /meow/meow_client/SymbolAddressDeriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/SymbolAddressDeriver.h -------------------------------------------------------------------------------- /meow/meow_client/SymbolResolver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/SymbolResolver.cpp -------------------------------------------------------------------------------- /meow/meow_client/SymbolResolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/SymbolResolver.h -------------------------------------------------------------------------------- /meow/meow_client/meow.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/meow.pfx -------------------------------------------------------------------------------- /meow/meow_client/meow_client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/meow_client.cpp -------------------------------------------------------------------------------- /meow/meow_client/meow_client.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/meow_client.ruleset -------------------------------------------------------------------------------- /meow/meow_client/meow_client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/meow_client.vcxproj -------------------------------------------------------------------------------- /meow/meow_client/meow_client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/meow_client.vcxproj.filters -------------------------------------------------------------------------------- /meow/meow_client/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/resource.h -------------------------------------------------------------------------------- /meow/meow_client/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/stdafx.cpp -------------------------------------------------------------------------------- /meow/meow_client/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/stdafx.h -------------------------------------------------------------------------------- /meow/meow_client/symbolManagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/symbolManagement.cpp -------------------------------------------------------------------------------- /meow/meow_client/symbolManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/symbolManagement.h -------------------------------------------------------------------------------- /meow/meow_client/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/targetver.h -------------------------------------------------------------------------------- /meow/meow_client/util.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/util.cpp -------------------------------------------------------------------------------- /meow/meow_client/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/meow_client/util.h -------------------------------------------------------------------------------- /meow/uninstall.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/meow/uninstall.bat -------------------------------------------------------------------------------- /x64_dlls/dbghelp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/x64_dlls/dbghelp.dll -------------------------------------------------------------------------------- /x64_dlls/symsrv.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tandasat/meow/HEAD/x64_dlls/symsrv.dll --------------------------------------------------------------------------------