├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── COPYING.LESSER ├── Library ├── File.cpp ├── File.h ├── Library.def ├── Library.rc ├── Library.vcxproj ├── Library.vcxproj.filters ├── MMap.cpp ├── MMap.h ├── ProcessInfo.h ├── Shtreeba.h ├── Start.cpp └── resource.h ├── README.md ├── Shtreeba.sln └── UI ├── FindProcessId.cpp ├── FindProcessId.h ├── Shtreeba.ini ├── UI.cpp ├── UI.rc ├── UI.vcxproj ├── UI.vcxproj.filters └── resource.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/.gitignore -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /Library/File.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/File.cpp -------------------------------------------------------------------------------- /Library/File.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/File.h -------------------------------------------------------------------------------- /Library/Library.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Library.def -------------------------------------------------------------------------------- /Library/Library.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Library.rc -------------------------------------------------------------------------------- /Library/Library.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Library.vcxproj -------------------------------------------------------------------------------- /Library/Library.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Library.vcxproj.filters -------------------------------------------------------------------------------- /Library/MMap.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/MMap.cpp -------------------------------------------------------------------------------- /Library/MMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/MMap.h -------------------------------------------------------------------------------- /Library/ProcessInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/ProcessInfo.h -------------------------------------------------------------------------------- /Library/Shtreeba.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Shtreeba.h -------------------------------------------------------------------------------- /Library/Start.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/Start.cpp -------------------------------------------------------------------------------- /Library/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Library/resource.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/README.md -------------------------------------------------------------------------------- /Shtreeba.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/Shtreeba.sln -------------------------------------------------------------------------------- /UI/FindProcessId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/FindProcessId.cpp -------------------------------------------------------------------------------- /UI/FindProcessId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/FindProcessId.h -------------------------------------------------------------------------------- /UI/Shtreeba.ini: -------------------------------------------------------------------------------- 1 | [Library] 2 | DLL=Jweega.bin 3 | ProcessName=csgo.exe 4 | [UI] 5 | Silent=0 6 | -------------------------------------------------------------------------------- /UI/UI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/UI.cpp -------------------------------------------------------------------------------- /UI/UI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/UI.rc -------------------------------------------------------------------------------- /UI/UI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/UI.vcxproj -------------------------------------------------------------------------------- /UI/UI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/UI.vcxproj.filters -------------------------------------------------------------------------------- /UI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mdilai/Shtreeba/HEAD/UI/resource.h --------------------------------------------------------------------------------