├── README.md ├── SEP PoC.mkv └── src ├── CommonUtils ├── CommonUtils.cpp ├── CommonUtils.h ├── CommonUtils.vcxproj ├── CommonUtils.vcxproj.filters ├── CommonUtils.vcxproj.user ├── DirectoryObject.cpp ├── FileOpLock.cpp ├── FileOpLock.h ├── FileSymlink.cpp ├── FileSymlink.h ├── Hardlink.cpp ├── NativeSymlink.cpp ├── RegistrySymlink.cpp ├── ReparsePoint.cpp ├── ReparsePoint.h ├── ScopedHandle.cpp ├── ScopedHandle.h ├── ntimports.h ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── typed_buffer.h ├── Exploit ├── Exploit.cpp ├── Exploit.filters ├── Exploit.user ├── Exploit.vcxproj ├── Exploit.vcxproj.user ├── stdafx.cpp ├── stdafx.h └── targetver.h └── SEP 14.2 WriteDelete Bug.sln /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/README.md -------------------------------------------------------------------------------- /SEP PoC.mkv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/SEP PoC.mkv -------------------------------------------------------------------------------- /src/CommonUtils/CommonUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/CommonUtils.cpp -------------------------------------------------------------------------------- /src/CommonUtils/CommonUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/CommonUtils.h -------------------------------------------------------------------------------- /src/CommonUtils/CommonUtils.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/CommonUtils.vcxproj -------------------------------------------------------------------------------- /src/CommonUtils/CommonUtils.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/CommonUtils.vcxproj.filters -------------------------------------------------------------------------------- /src/CommonUtils/CommonUtils.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/CommonUtils.vcxproj.user -------------------------------------------------------------------------------- /src/CommonUtils/DirectoryObject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/DirectoryObject.cpp -------------------------------------------------------------------------------- /src/CommonUtils/FileOpLock.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/FileOpLock.cpp -------------------------------------------------------------------------------- /src/CommonUtils/FileOpLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/FileOpLock.h -------------------------------------------------------------------------------- /src/CommonUtils/FileSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/FileSymlink.cpp -------------------------------------------------------------------------------- /src/CommonUtils/FileSymlink.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/FileSymlink.h -------------------------------------------------------------------------------- /src/CommonUtils/Hardlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/Hardlink.cpp -------------------------------------------------------------------------------- /src/CommonUtils/NativeSymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/NativeSymlink.cpp -------------------------------------------------------------------------------- /src/CommonUtils/RegistrySymlink.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/RegistrySymlink.cpp -------------------------------------------------------------------------------- /src/CommonUtils/ReparsePoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/ReparsePoint.cpp -------------------------------------------------------------------------------- /src/CommonUtils/ReparsePoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/ReparsePoint.h -------------------------------------------------------------------------------- /src/CommonUtils/ScopedHandle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/ScopedHandle.cpp -------------------------------------------------------------------------------- /src/CommonUtils/ScopedHandle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/ScopedHandle.h -------------------------------------------------------------------------------- /src/CommonUtils/ntimports.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/ntimports.h -------------------------------------------------------------------------------- /src/CommonUtils/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/stdafx.cpp -------------------------------------------------------------------------------- /src/CommonUtils/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/stdafx.h -------------------------------------------------------------------------------- /src/CommonUtils/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/targetver.h -------------------------------------------------------------------------------- /src/CommonUtils/typed_buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/CommonUtils/typed_buffer.h -------------------------------------------------------------------------------- /src/Exploit/Exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/Exploit.cpp -------------------------------------------------------------------------------- /src/Exploit/Exploit.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/Exploit.filters -------------------------------------------------------------------------------- /src/Exploit/Exploit.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/Exploit.user -------------------------------------------------------------------------------- /src/Exploit/Exploit.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/Exploit.vcxproj -------------------------------------------------------------------------------- /src/Exploit/Exploit.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/Exploit.vcxproj.user -------------------------------------------------------------------------------- /src/Exploit/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/stdafx.cpp -------------------------------------------------------------------------------- /src/Exploit/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/stdafx.h -------------------------------------------------------------------------------- /src/Exploit/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/Exploit/targetver.h -------------------------------------------------------------------------------- /src/SEP 14.2 WriteDelete Bug.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedyOpsResearchLabs/SEP-14.2-Arbitrary-Write/HEAD/src/SEP 14.2 WriteDelete Bug.sln --------------------------------------------------------------------------------