diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-09 18:21:28 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2005-10-09 18:21:28 +0000 |
commit | 6b80960850f534f05939a34d93f7e56f9a8528d5 (patch) | |
tree | 607825c61ac96950d9ba9b597aa0cf17debc155f /security/gwee | |
parent | Update to 0.10. (diff) |
Add gwee, a tool to exploit command execution vulnerabilities in web scripts.
PR: 80639
Submitted by: chinsan <chinsan@mail2000.com.tw>
Approved by: novel (mentor)
Notes
Notes:
svn path=/head/; revision=144693
Diffstat (limited to 'security/gwee')
-rw-r--r-- | security/gwee/Makefile | 34 | ||||
-rw-r--r-- | security/gwee/distinfo | 2 | ||||
-rw-r--r-- | security/gwee/pkg-descr | 5 |
3 files changed, 41 insertions, 0 deletions
diff --git a/security/gwee/Makefile b/security/gwee/Makefile new file mode 100644 index 000000000000..83e8ded16acf --- /dev/null +++ b/security/gwee/Makefile @@ -0,0 +1,34 @@ +# New ports collection makefile for: gwee +# Date created: 2005-05-04 +# Whom: chinsan <chinsan@mail2000.com.tw> +# +# $FreeBSD$ +# + +PORTNAME= gwee +PORTVERSION= 1.36 +CATEGORIES= security www +MASTER_SITES= http://tigerteam.se/dl/gwee/ + +MAINTAINER= chinsan.tw@gmail.com +COMMENT= Tool to exploit command execution vulnerabilities in web scripts + +USE_OPENSSL= yes +USE_PERL5= yes +USE_PYTHON= yes + +LDFLAGS+= -lssl -lcrypto +CFLAGS+= -DWITH_SSL + +MAN1= gwee.1 +PLIST_FILES= bin/gwee + +do-build: + ${CC} ${CFLAGS} ${LDFLAGS} ${WRKSRC}/${PORTNAME}.c \ + -o ${WRKSRC}/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1 + +.include <bsd.port.mk> diff --git a/security/gwee/distinfo b/security/gwee/distinfo new file mode 100644 index 000000000000..ce375221d929 --- /dev/null +++ b/security/gwee/distinfo @@ -0,0 +1,2 @@ +MD5 (gwee-1.36.tar.gz) = 4e0c09fdc6a261e80bdba34aba1f9a29 +SIZE (gwee-1.36.tar.gz) = 313562 diff --git a/security/gwee/pkg-descr b/security/gwee/pkg-descr new file mode 100644 index 000000000000..b92e179293fa --- /dev/null +++ b/security/gwee/pkg-descr @@ -0,0 +1,5 @@ +gwee (Generic Web Exploitation Engine) is a small program written in C designed +to exploit input validation vulnerabilities in web scripts, such as Perl CGIs, +PHP, etc. + +WWW: http://tigerteam.se/dl/gwee/ |