root/cgi-src/phf.c
/*DEFINITIONS
This source file includes following definitions.1 /* phf - cracker trap 2 ** 3 ** Old distributions of the NCSA and Apache web servers included a 4 ** version of the phf program that had a bug. The program could 5 ** easily be made to run arbitrary shell commands. There is no real 6 ** legitimate use for phf, so any attempts to run it must be considered 7 ** to be attacks. Accordingly, this version of phf logs the attack 8 ** and then returns a page indicating that phf doesn't exist. 9 ** 10 ** 11 ** Copyright (c) 1996 by Jef Poskanzer <jef@mail.acme.com>. 12 ** Copyright (c) 2023 by Amelia Zabardast Ziabari <ame@psianesia.org>. 13 ** All rights reserved. 14 ** 15 ** Redistribution and use in source and binary forms, with or without 16 ** modification, are permitted provided that the following conditions 17 ** are met: 18 ** 1. Redistributions of source code must retain the above copyright 19 ** notice, this list of conditions and the following disclaimer. 20 ** 2. Redistributions in binary form must reproduce the above copyright 21 ** notice, this list of conditions and the following disclaimer in the 22 ** documentation and/or other materials provided with the distribution. 23 ** 24 ** THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 25 ** ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 26 ** IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 27 ** ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 28 ** FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 29 ** DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 30 ** OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 31 ** HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 32 ** LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 33 ** OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 34 ** SUCH DAMAGE. 35 */ 36 37 #include <stdio.h> 38 #include <stdlib.h> 39 #include <string.h> 40 #include <syslog.h> 41 42 #include "config.h" 43 44 static char* argv0; 45 46 int 47 main( int argc, char* argv[] ) 48 { 49 char* cp; 50 51 (void) argc; /* XXX: gcc */ 52 53 argv0 = argv[0]; 54 cp = strrchr( argv0, '/' ); 55 if ( cp != (char*) 0 ) 56 ++cp; 57 else 58 cp = argv0; 59 openlog( cp, LOG_NDELAY|LOG_PID, LOG_FACILITY ); 60 syslog( LOG_CRIT, "phf CGI probe from %s", getenv( "REMOTE_ADDR" ) ); 61 (void) printf( "\ 62 Content-type: text/html\n\ 63 Status: 404/html\n\ 64 \n\ 65 <HTML><HEAD><TITLE>404 Not Found</TITLE></HEAD>\n\ 66 <BODY><H2>404 Not Found</H2>\n\ 67 The requested object does not exist on this server.\n\ 68 The link you followed is either outdated, inaccurate,\n\ 69 or the server has been instructed not to let you have it.\n\ 70 </BODY></HTML>\n" ); 71 exit( 0 ); 72 }
/*