├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── latebros.sln ├── latebros ├── api_set.cpp ├── api_set.hpp ├── binary_file.cpp ├── binary_file.hpp ├── latebros.vcxproj ├── latebros.vcxproj.filters ├── latebros.vcxproj[Conflict].filters ├── loadlibrary.hpp ├── logger.hpp ├── main.cpp ├── manualmap.cpp ├── manualmap.hpp ├── memory_section.cpp ├── memory_section.hpp ├── ntdll.cpp ├── ntdll.hpp ├── portable_executable.cpp ├── portable_executable.hpp ├── process.cpp ├── process.hpp ├── remote_detours.cpp ├── remote_detours.hpp ├── rng.hpp ├── safe_handle.hpp ├── stdafx.cpp └── stdafx.h └── littlebro ├── detour.cpp ├── detour.hpp ├── dllmain.cpp ├── littlebro.vcxproj ├── littlebro.vcxproj.filters └── stdafx.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/README.md -------------------------------------------------------------------------------- /latebros.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros.sln -------------------------------------------------------------------------------- /latebros/api_set.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/api_set.cpp -------------------------------------------------------------------------------- /latebros/api_set.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/api_set.hpp -------------------------------------------------------------------------------- /latebros/binary_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/binary_file.cpp -------------------------------------------------------------------------------- /latebros/binary_file.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/binary_file.hpp -------------------------------------------------------------------------------- /latebros/latebros.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/latebros.vcxproj -------------------------------------------------------------------------------- /latebros/latebros.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/latebros.vcxproj.filters -------------------------------------------------------------------------------- /latebros/latebros.vcxproj[Conflict].filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/latebros.vcxproj[Conflict].filters -------------------------------------------------------------------------------- /latebros/loadlibrary.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/loadlibrary.hpp -------------------------------------------------------------------------------- /latebros/logger.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/logger.hpp -------------------------------------------------------------------------------- /latebros/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/main.cpp -------------------------------------------------------------------------------- /latebros/manualmap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/manualmap.cpp -------------------------------------------------------------------------------- /latebros/manualmap.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/manualmap.hpp -------------------------------------------------------------------------------- /latebros/memory_section.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/memory_section.cpp -------------------------------------------------------------------------------- /latebros/memory_section.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/memory_section.hpp -------------------------------------------------------------------------------- /latebros/ntdll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/ntdll.cpp -------------------------------------------------------------------------------- /latebros/ntdll.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/ntdll.hpp -------------------------------------------------------------------------------- /latebros/portable_executable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/portable_executable.cpp -------------------------------------------------------------------------------- /latebros/portable_executable.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/portable_executable.hpp -------------------------------------------------------------------------------- /latebros/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/process.cpp -------------------------------------------------------------------------------- /latebros/process.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/process.hpp -------------------------------------------------------------------------------- /latebros/remote_detours.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/remote_detours.cpp -------------------------------------------------------------------------------- /latebros/remote_detours.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/remote_detours.hpp -------------------------------------------------------------------------------- /latebros/rng.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/rng.hpp -------------------------------------------------------------------------------- /latebros/safe_handle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/safe_handle.hpp -------------------------------------------------------------------------------- /latebros/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/stdafx.cpp -------------------------------------------------------------------------------- /latebros/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/latebros/stdafx.h -------------------------------------------------------------------------------- /littlebro/detour.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/detour.cpp -------------------------------------------------------------------------------- /littlebro/detour.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/detour.hpp -------------------------------------------------------------------------------- /littlebro/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/dllmain.cpp -------------------------------------------------------------------------------- /littlebro/littlebro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/littlebro.vcxproj -------------------------------------------------------------------------------- /littlebro/littlebro.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/littlebro.vcxproj.filters -------------------------------------------------------------------------------- /littlebro/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmcall/latebros/HEAD/littlebro/stdafx.h --------------------------------------------------------------------------------