fuzzer-server: remove, long dead

This commit is contained in:
Rick Farina (Zero_Chaos) 2020-05-01 17:00:53 -04:00
parent d69ac7c52d
commit b1dde4f7b8
No known key found for this signature in database
GPG key ID: A29433C0AA431DDC
3 changed files with 0 additions and 80 deletions

View file

@ -1 +0,0 @@
DIST fuzzer-server-0.1.tar.gz 4420 SHA256 3db0f1273189b90f98e6b4bd7b2148798c2296153a8af5f8ba85339ddff5b364

View file

@ -1,48 +0,0 @@
--- fuzzer-server.c.old 2002-01-25 16:53:38.000000000 +0100
+++ fuzzer-server.c 2010-03-10 00:09:57.813940601 +0100
@@ -24,7 +24,8 @@
#include <netdb.h>
#endif
#include <stdio.h>
-
+#include <string.h>
+#include <stdlib.h>
/*
@@ -139,10 +140,19 @@
printf("~!~!~!~!~!~!~!~!~!~!~!~!~\n");
/* Param check */
+ if(argc < 2 ){
+ usage();
+ }
if(argv[1] != NULL){
if (strcmp(argv[1],"wml")==0){
html=0;
}
+ else if (strcmp(argv[1],"--help")==0){
+ usage();
+ }
+ else if (strcmp(argv[1],"-h")==0){
+ usage();
+ }
}
if (html==1){
printf("info: html output\n");
@@ -423,7 +433,7 @@
printf("\n");
c2=0;
}
- printf("%0.2x",bufdump[c] & 0xff);
+ printf("%.2x",bufdump[c] & 0xff);
printf(" ");
c++;
c2++;
@@ -478,4 +488,4 @@
printf(" [l] - length\n\n");
printf("http://10.50.1.1/bd\n");
exit(1);
-}
\ No newline at end of file
+}

View file

@ -1,31 +0,0 @@
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /root/portage/app-fuzz/fuzzer-server/fuzzer-server-0.1.ebuild,v 1.1.1.1 2006/03/08 21:22:06 grimmlin Exp $
EAPI="2"
inherit eutils
DESCRIPTION="A html/wml fuzzer for proxy or client"
HOMEPAGE="http://www.atstake.com/"
SRC_URI="http://dev.pentoo.ch/~grimmlin/distfiles/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE=""
DEPEND=""
src_prepare() {
epatch "${FILESDIR}"/fuzzer-server-less-insane-behaviour.patch
}
src_compile() {
gcc $CFLAGS -o fuzzer-server fuzzer-server.c
}
src_install() {
dobin fuzzer-server
dodoc README.txt
}