├── .github └── workflows │ └── Build.yml ├── .gitignore ├── LICENSE ├── YY-Guard.h ├── YY-Guard.nuspec ├── YY-Guard.targets ├── YY-Guard_ui_8C8C5BC5-EF9B-44A0-8CF5-1BC0CC9F0156.xml ├── YY-Guard_ui_with_Runtime_DLL_Hijacking.xml ├── readme.md └── src ├── Build.cmd ├── BuildAll.cmd ├── YY-Guard.cpp ├── delaygv1.c ├── delayhlp.cpp ├── pfnDliFailureHook2.c └── pfnDliNotifyHook2.c /.github/workflows/Build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/.github/workflows/Build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/LICENSE -------------------------------------------------------------------------------- /YY-Guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/YY-Guard.h -------------------------------------------------------------------------------- /YY-Guard.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/YY-Guard.nuspec -------------------------------------------------------------------------------- /YY-Guard.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/YY-Guard.targets -------------------------------------------------------------------------------- /YY-Guard_ui_8C8C5BC5-EF9B-44A0-8CF5-1BC0CC9F0156.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/YY-Guard_ui_8C8C5BC5-EF9B-44A0-8CF5-1BC0CC9F0156.xml -------------------------------------------------------------------------------- /YY-Guard_ui_with_Runtime_DLL_Hijacking.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/YY-Guard_ui_with_Runtime_DLL_Hijacking.xml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/readme.md -------------------------------------------------------------------------------- /src/Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/src/Build.cmd -------------------------------------------------------------------------------- /src/BuildAll.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/src/BuildAll.cmd -------------------------------------------------------------------------------- /src/YY-Guard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/src/YY-Guard.cpp -------------------------------------------------------------------------------- /src/delaygv1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/src/delaygv1.c -------------------------------------------------------------------------------- /src/delayhlp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Chuyu-Team/YY-Guard/HEAD/src/delayhlp.cpp -------------------------------------------------------------------------------- /src/pfnDliFailureHook2.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | void* const __pfnDliFailureHook2; -------------------------------------------------------------------------------- /src/pfnDliNotifyHook2.c: -------------------------------------------------------------------------------- 1 | 2 | 3 | void* const __pfnDliNotifyHook2; --------------------------------------------------------------------------------