[3259] in bugtraq
Re: BUG in /bin/bash
daemon@ATHENA.MIT.EDU (Digital Dreamer)
Fri Aug 23 11:59:31 1996
Date: Thu, 22 Aug 1996 19:19:59 -0600
Reply-To: Bugtraq List <BUGTRAQ@NETSPACE.ORG>
From: Digital Dreamer <dreamer@garrison.inetcan.net>
To: Multiple recipients of list BUGTRAQ <BUGTRAQ@NETSPACE.ORG>
In-Reply-To: <CMM-RU.1.5.840742518.paradox@pegasus.rutgers.edu>
On Thu, 22 Aug 1996, Red Barchetta wrote:
> Their test string "bash -c 'ls\377who'" gave this output on my Solaris 2.5
> system:
>
> bash: ls377who: command not found
>
> Can anyone verify that this is really a problem?
>
> Ernie Pistor
>
The following program demonstrated it on this Linux machine.
-> snip
#include <stdio.h>
void main(void) {
system("ls\377w");
}
-> snip