├── LICENSE ├── MS03-026 ├── 100.c ├── 100.exe ├── 66.c └── 66.out ├── MS05-039 - PnP Service ├── 1149.c └── MS05-039.exe ├── MS08-025 - win32k.sys ├── 5518.zip └── MS08-025.exe ├── MS08-067 ├── 40279.py ├── MS08-067.exe └── MS08-067_2K3.exe ├── MS08-068 ├── Disable_Port_445.reg ├── Enable_Port_445.reg ├── libeay32.dll ├── smbrelay3.exe ├── smrs.exe └── src │ ├── httprelay.cpp │ ├── httprelay.h │ ├── imaprelay.cpp │ ├── imaprelay.h │ ├── misc.cpp │ ├── misc.h │ ├── ntlm.cpp │ ├── ntlm.h │ ├── payload.cpp │ ├── payload.h │ ├── pop3relay.cpp │ ├── pop3relay.h │ ├── smb.cpp │ ├── smb.h │ ├── smbrelay.h │ ├── smbrelay3.cpp │ ├── smtprelay.cpp │ └── smtprelay.h ├── MS09-050 ├── 40280.py └── 41987.py ├── MS10-015 - KiTrap0D ├── ADVISORY ├── Makefile ├── README ├── screenshot.png ├── vdmallowed.c ├── vdmallowed.exe ├── vdmexploit.c └── vdmexploit.dll ├── MS10-059 - Chimichurri ├── 14610.zip └── MS10-059.exe ├── MS11-011 ├── 16262.c └── MS11-011.exe ├── MS11-046 ├── 40564.c └── MS11-046.exe ├── MS11-062 ├── 40627.c └── MS11-062.exe ├── MS11-080 - AFD.sys ├── MS11-080.exe └── MS11-080.py ├── MS14-002 ├── 30014.py ├── 37732.c └── MS14-002.exe ├── MS14-040 ├── 39446.py ├── 39525.py └── MS14-040.exe ├── MS14-058 ├── 37064.py ├── 39666.zip └── MS14-058.exe ├── MS14-068 ├── 35474.py └── MS14-068.exe ├── MS14-070 ├── 35936.exe ├── 35936.py ├── 37755.c └── 37755.exe ├── MS15-001 ├── 35661-poc.zip ├── AppCompatCache.exe └── TestDLL.dll ├── MS15-010 ├── 39035.exe └── 39035.zip ├── MS15-051 ├── 37049-src.zip ├── MS15-051_Taihou32.exe └── MS15-051_Taihou64.exe ├── MS15-076 ├── 37768 │ ├── Microsoft.VisualStudio.OLE.Interop.dll │ └── Trebuchet.exe └── 37768.zip ├── MS15-097 ├── 38198 │ ├── Poc_NtUserGetClipboardAccessToken_SecurityBypass.exe │ └── injected.dll └── 38198.zip ├── MS16-016 ├── 39788 │ ├── EoP.exe │ └── Shellcode.dll └── 39788.zip ├── MS16-135 ├── 40823 │ ├── SetWindowLongPtr_Exploit.exe │ └── SetWindowLongPtr_Exploit.pdb ├── 40823.zip ├── 41015.c └── 41015.exe ├── MS17-010 ├── 41987.py └── MS17-010.exe └── README.md /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/LICENSE -------------------------------------------------------------------------------- /MS03-026/100.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS03-026/100.c -------------------------------------------------------------------------------- /MS03-026/100.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS03-026/100.exe -------------------------------------------------------------------------------- /MS03-026/66.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS03-026/66.c -------------------------------------------------------------------------------- /MS03-026/66.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS03-026/66.out -------------------------------------------------------------------------------- /MS05-039 - PnP Service/1149.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS05-039 - PnP Service/1149.c -------------------------------------------------------------------------------- /MS05-039 - PnP Service/MS05-039.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS05-039 - PnP Service/MS05-039.exe -------------------------------------------------------------------------------- /MS08-025 - win32k.sys/5518.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-025 - win32k.sys/5518.zip -------------------------------------------------------------------------------- /MS08-025 - win32k.sys/MS08-025.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-025 - win32k.sys/MS08-025.exe -------------------------------------------------------------------------------- /MS08-067/40279.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-067/40279.py -------------------------------------------------------------------------------- /MS08-067/MS08-067.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-067/MS08-067.exe -------------------------------------------------------------------------------- /MS08-067/MS08-067_2K3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-067/MS08-067_2K3.exe -------------------------------------------------------------------------------- /MS08-068/Disable_Port_445.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/Disable_Port_445.reg -------------------------------------------------------------------------------- /MS08-068/Enable_Port_445.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/Enable_Port_445.reg -------------------------------------------------------------------------------- /MS08-068/libeay32.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/libeay32.dll -------------------------------------------------------------------------------- /MS08-068/smbrelay3.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/smbrelay3.exe -------------------------------------------------------------------------------- /MS08-068/smrs.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/smrs.exe -------------------------------------------------------------------------------- /MS08-068/src/httprelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/httprelay.cpp -------------------------------------------------------------------------------- /MS08-068/src/httprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/httprelay.h -------------------------------------------------------------------------------- /MS08-068/src/imaprelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/imaprelay.cpp -------------------------------------------------------------------------------- /MS08-068/src/imaprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/imaprelay.h -------------------------------------------------------------------------------- /MS08-068/src/misc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/misc.cpp -------------------------------------------------------------------------------- /MS08-068/src/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/misc.h -------------------------------------------------------------------------------- /MS08-068/src/ntlm.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/ntlm.cpp -------------------------------------------------------------------------------- /MS08-068/src/ntlm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/ntlm.h -------------------------------------------------------------------------------- /MS08-068/src/payload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/payload.cpp -------------------------------------------------------------------------------- /MS08-068/src/payload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/payload.h -------------------------------------------------------------------------------- /MS08-068/src/pop3relay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/pop3relay.cpp -------------------------------------------------------------------------------- /MS08-068/src/pop3relay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/pop3relay.h -------------------------------------------------------------------------------- /MS08-068/src/smb.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smb.cpp -------------------------------------------------------------------------------- /MS08-068/src/smb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smb.h -------------------------------------------------------------------------------- /MS08-068/src/smbrelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smbrelay.h -------------------------------------------------------------------------------- /MS08-068/src/smbrelay3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smbrelay3.cpp -------------------------------------------------------------------------------- /MS08-068/src/smtprelay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smtprelay.cpp -------------------------------------------------------------------------------- /MS08-068/src/smtprelay.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS08-068/src/smtprelay.h -------------------------------------------------------------------------------- /MS09-050/40280.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS09-050/40280.py -------------------------------------------------------------------------------- /MS09-050/41987.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS09-050/41987.py -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/ADVISORY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/ADVISORY -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/Makefile -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/README -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/screenshot.png -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/vdmallowed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/vdmallowed.c -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/vdmallowed.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/vdmallowed.exe -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/vdmexploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/vdmexploit.c -------------------------------------------------------------------------------- /MS10-015 - KiTrap0D/vdmexploit.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-015 - KiTrap0D/vdmexploit.dll -------------------------------------------------------------------------------- /MS10-059 - Chimichurri/14610.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-059 - Chimichurri/14610.zip -------------------------------------------------------------------------------- /MS10-059 - Chimichurri/MS10-059.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS10-059 - Chimichurri/MS10-059.exe -------------------------------------------------------------------------------- /MS11-011/16262.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-011/16262.c -------------------------------------------------------------------------------- /MS11-011/MS11-011.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-011/MS11-011.exe -------------------------------------------------------------------------------- /MS11-046/40564.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-046/40564.c -------------------------------------------------------------------------------- /MS11-046/MS11-046.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-046/MS11-046.exe -------------------------------------------------------------------------------- /MS11-062/40627.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-062/40627.c -------------------------------------------------------------------------------- /MS11-062/MS11-062.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-062/MS11-062.exe -------------------------------------------------------------------------------- /MS11-080 - AFD.sys/MS11-080.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-080 - AFD.sys/MS11-080.exe -------------------------------------------------------------------------------- /MS11-080 - AFD.sys/MS11-080.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS11-080 - AFD.sys/MS11-080.py -------------------------------------------------------------------------------- /MS14-002/30014.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-002/30014.py -------------------------------------------------------------------------------- /MS14-002/37732.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-002/37732.c -------------------------------------------------------------------------------- /MS14-002/MS14-002.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-002/MS14-002.exe -------------------------------------------------------------------------------- /MS14-040/39446.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-040/39446.py -------------------------------------------------------------------------------- /MS14-040/39525.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-040/39525.py -------------------------------------------------------------------------------- /MS14-040/MS14-040.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-040/MS14-040.exe -------------------------------------------------------------------------------- /MS14-058/37064.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-058/37064.py -------------------------------------------------------------------------------- /MS14-058/39666.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-058/39666.zip -------------------------------------------------------------------------------- /MS14-058/MS14-058.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-058/MS14-058.exe -------------------------------------------------------------------------------- /MS14-068/35474.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-068/35474.py -------------------------------------------------------------------------------- /MS14-068/MS14-068.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-068/MS14-068.exe -------------------------------------------------------------------------------- /MS14-070/35936.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-070/35936.exe -------------------------------------------------------------------------------- /MS14-070/35936.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-070/35936.py -------------------------------------------------------------------------------- /MS14-070/37755.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-070/37755.c -------------------------------------------------------------------------------- /MS14-070/37755.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS14-070/37755.exe -------------------------------------------------------------------------------- /MS15-001/35661-poc.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-001/35661-poc.zip -------------------------------------------------------------------------------- /MS15-001/AppCompatCache.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-001/AppCompatCache.exe -------------------------------------------------------------------------------- /MS15-001/TestDLL.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-001/TestDLL.dll -------------------------------------------------------------------------------- /MS15-010/39035.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-010/39035.exe -------------------------------------------------------------------------------- /MS15-010/39035.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-010/39035.zip -------------------------------------------------------------------------------- /MS15-051/37049-src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-051/37049-src.zip -------------------------------------------------------------------------------- /MS15-051/MS15-051_Taihou32.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-051/MS15-051_Taihou32.exe -------------------------------------------------------------------------------- /MS15-051/MS15-051_Taihou64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-051/MS15-051_Taihou64.exe -------------------------------------------------------------------------------- /MS15-076/37768.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-076/37768.zip -------------------------------------------------------------------------------- /MS15-076/37768/Microsoft.VisualStudio.OLE.Interop.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-076/37768/Microsoft.VisualStudio.OLE.Interop.dll -------------------------------------------------------------------------------- /MS15-076/37768/Trebuchet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-076/37768/Trebuchet.exe -------------------------------------------------------------------------------- /MS15-097/38198.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-097/38198.zip -------------------------------------------------------------------------------- /MS15-097/38198/Poc_NtUserGetClipboardAccessToken_SecurityBypass.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-097/38198/Poc_NtUserGetClipboardAccessToken_SecurityBypass.exe -------------------------------------------------------------------------------- /MS15-097/38198/injected.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS15-097/38198/injected.dll -------------------------------------------------------------------------------- /MS16-016/39788.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-016/39788.zip -------------------------------------------------------------------------------- /MS16-016/39788/EoP.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-016/39788/EoP.exe -------------------------------------------------------------------------------- /MS16-016/39788/Shellcode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-016/39788/Shellcode.dll -------------------------------------------------------------------------------- /MS16-135/40823.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-135/40823.zip -------------------------------------------------------------------------------- /MS16-135/40823/SetWindowLongPtr_Exploit.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-135/40823/SetWindowLongPtr_Exploit.exe -------------------------------------------------------------------------------- /MS16-135/40823/SetWindowLongPtr_Exploit.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-135/40823/SetWindowLongPtr_Exploit.pdb -------------------------------------------------------------------------------- /MS16-135/41015.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-135/41015.c -------------------------------------------------------------------------------- /MS16-135/41015.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS16-135/41015.exe -------------------------------------------------------------------------------- /MS17-010/41987.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS17-010/41987.py -------------------------------------------------------------------------------- /MS17-010/MS17-010.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/MS17-010/MS17-010.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abatchy17/WindowsExploits/HEAD/README.md --------------------------------------------------------------------------------