Add port security/shttpscanner:

Simple HTTP Scanner is a creation made for web site pen testing. You can
check for directories and files on the remote web server and get some
server information like the webserver running.

WWW: http://sourceforge.net/projects/shttpscanner/
Author: Paisterist <paisterist@users.sourceforge.net>
This commit is contained in:
Andrew Pantyukhin 2006-09-24 20:18:15 +00:00
parent df68809bf7
commit 35da930207
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=173741
4 changed files with 44 additions and 0 deletions

View File

@ -611,6 +611,7 @@
SUBDIR += sfs
SUBDIR += sha
SUBDIR += shishi
SUBDIR += shttpscanner
SUBDIR += sig2dot
SUBDIR += signing-party
SUBDIR += silktools

View File

@ -0,0 +1,34 @@
# New ports collection makefile for: shttpscanner
# Date created: 25 September 2006
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= shttpscanner
PORTVERSION= 0.4
CATEGORIES= security www
MASTER_SITES= SF
DISTNAME= sHTTPScanner_v${DISTVERSION}
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Simple HTTP scanner
USE_ZIP= yes
USE_DOS2UNIX= yes
PLIST_FILES= bin/${PORTNAME} %%DATADIR%%/requests.txt %%DATADIR%%/subdomains.txt
PLIST_DIRS= %%DATADIR%%
post-patch:
@${REINPLACE_CMD} -E '/^#define/s!([a-z]*\.txt)!${DATADIR}/\1!' ${WRKSRC}/${DISTNAME:L}.c
do-build:
@cd ${WRKSRC} && ${CC} ${CFLAGS} ${PTHREAD_CFLAGS} -o ${PORTNAME} ${DISTNAME:L}.c ${PTHREAD_LIBS}
do-install:
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
@${INSTALL} -d ${DATADIR}/
@${INSTALL} ${WRKSRC}/requests.txt ${WRKSRC}/subdomains.txt ${DATADIR}/
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (sHTTPScanner_v0.4.zip) = e4eb3b2cd600e6cc1216f027e18fc515
SHA256 (sHTTPScanner_v0.4.zip) = e3a8ea23a534c8fc4c4348634922a601605b90c9e223a0d6c2fd836811ce565b
SIZE (sHTTPScanner_v0.4.zip) = 19156

View File

@ -0,0 +1,6 @@
Simple HTTP Scanner is a creation made for web site pen testing. You can
check for directories and files on the remote web server and get some
server information like the webserver running.
WWW: http://sourceforge.net/projects/shttpscanner/
Author: Paisterist <paisterist@users.sourceforge.net>