├── .gitattributes ├── .gitignore ├── PEstructs.h ├── README.md ├── helpers.cpp ├── helpers.h ├── indirect.asm ├── perunsfart.cpp ├── perunsfart.sln ├── perunsfart.vcxproj ├── perunsfart.vcxproj.filters ├── syscalls.h └── utils.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/.gitignore -------------------------------------------------------------------------------- /PEstructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/PEstructs.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/README.md -------------------------------------------------------------------------------- /helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/helpers.cpp -------------------------------------------------------------------------------- /helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/helpers.h -------------------------------------------------------------------------------- /indirect.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/indirect.asm -------------------------------------------------------------------------------- /perunsfart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/perunsfart.cpp -------------------------------------------------------------------------------- /perunsfart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/perunsfart.sln -------------------------------------------------------------------------------- /perunsfart.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/perunsfart.vcxproj -------------------------------------------------------------------------------- /perunsfart.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/perunsfart.vcxproj.filters -------------------------------------------------------------------------------- /syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/syscalls.h -------------------------------------------------------------------------------- /utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ph3n1x007/Night_Walker/HEAD/utils.h --------------------------------------------------------------------------------