├── .gitignore ├── README.md ├── URS.sln └── URS ├── URS.vcxproj ├── URS.vcxproj.filters ├── dllmain.cpp └── utils ├── bypasses └── memcheck │ └── memcheck.hpp ├── handlers ├── arg_handlers.cpp └── arg_handlers.hpp ├── offsets └── offsets.hpp ├── utils.cpp └── utils.hpp /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/README.md -------------------------------------------------------------------------------- /URS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS.sln -------------------------------------------------------------------------------- /URS/URS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/URS.vcxproj -------------------------------------------------------------------------------- /URS/URS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/URS.vcxproj.filters -------------------------------------------------------------------------------- /URS/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/dllmain.cpp -------------------------------------------------------------------------------- /URS/utils/bypasses/memcheck/memcheck.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/bypasses/memcheck/memcheck.hpp -------------------------------------------------------------------------------- /URS/utils/handlers/arg_handlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/handlers/arg_handlers.cpp -------------------------------------------------------------------------------- /URS/utils/handlers/arg_handlers.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/handlers/arg_handlers.hpp -------------------------------------------------------------------------------- /URS/utils/offsets/offsets.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/offsets/offsets.hpp -------------------------------------------------------------------------------- /URS/utils/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/utils.cpp -------------------------------------------------------------------------------- /URS/utils/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gogo9211/Roblox-Remote-Spy/HEAD/URS/utils/utils.hpp --------------------------------------------------------------------------------