lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
From: merlyn at stonehenge.com (Randal L. Schwartz)
Subject: Re: Gaim festival plugin exploit

>>>>> "HCTITS" == HCTITS Security Division <security@...ancentrictech.com> writes:

HCTITS> DUH... would help if I attached my attachment.

Is this is repeat?  I'm going to repeat myself then.

YOUR FIX DOES NOT HELP.  Please use my posted fix.

>> system("echo \"$string\" | /usr/bin/festival --tts");

Replace this with

        open FEST, "|/usr/bin/festival --tts";
        print FEST $string, "\n";
        close FEST;

No shells involved.  Only DOS exploits and maybe the usual
C-language overflows in festival itself.

-- 
Randal L. Schwartz - Stonehenge Consulting Services, Inc. - +1 503 777 0095
<merlyn@...nehenge.com> <URL:http://www.stonehenge.com/merlyn/>
Perl/Unix/security consulting, Technical writing, Comedy, etc. etc.
See PerlTraining.Stonehenge.com for onsite and open-enrollment Perl training!


Powered by blists - more mailing lists