VNCcrack is a fast offline password cracker for VNC passwords.
By sniffing a VNC challenge-response sequence off the network (typically when VNC is used without a decent cryptographic wrapper like SSH or SSL), you can recover the password fairly easily and quickly by letting VNCcrack pound on it. WWW: http://www.randombit.net/projects/vnccrack/ PR: ports/102279 Submitted by: Pankov Pavel <pankov_p at mail.ru>
This commit is contained in:
parent
fbe3266fb4
commit
cf787a73eb
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=171029
6 changed files with 50 additions and 0 deletions
|
@ -672,6 +672,7 @@
|
|||
SUBDIR += vida
|
||||
SUBDIR += vlock
|
||||
SUBDIR += vlog
|
||||
SUBDIR += vnccrack
|
||||
SUBDIR += vncrypt
|
||||
SUBDIR += vpnc
|
||||
SUBDIR += vpnd
|
||||
|
|
34
security/vnccrack/Makefile
Normal file
34
security/vnccrack/Makefile
Normal file
|
@ -0,0 +1,34 @@
|
|||
# New ports collection makefile for: vnccrack
|
||||
# Date created: 2006-08-19
|
||||
# Whom: Pankov Pavel <pankov_p@mail.ru>
|
||||
#
|
||||
# $FreeBSD$
|
||||
#
|
||||
|
||||
PORTNAME= vnccrack
|
||||
PORTVERSION= 1.0.0
|
||||
CATEGORIES= security
|
||||
MASTER_SITES= http://files.randombit.net/vnccrack/
|
||||
DISTNAME= VNCcrack-${PORTVERSION}
|
||||
EXTRACT_SUFX= .tgz
|
||||
|
||||
MAINTAINER= pankov_p@mail.ru
|
||||
COMMENT= A fast offline password cracker for VNC passwords
|
||||
|
||||
GNU_CONFIGURE= yes
|
||||
USE_GCC= 3.2+
|
||||
USE_OPENSSL= yes
|
||||
|
||||
SUB_FILES+= pkg-message
|
||||
|
||||
do-install:
|
||||
@${INSTALL_PROGRAM} ${WRKSRC}/vnccrack ${TARGETDIR}/bin/vnccrack
|
||||
|
||||
post-install:
|
||||
.if !defined(NOPORTDOCS)
|
||||
@${MKDIR} ${DOCSDIR}
|
||||
@${INSTALL_DATA} ${WRKSRC}/readme.txt ${DOCSDIR}/readme.txt
|
||||
.endif
|
||||
@${CAT} ${PKGMESSAGE}
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/vnccrack/distinfo
Normal file
3
security/vnccrack/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
MD5 (VNCcrack-1.0.0.tgz) = bef6973fff5236efb1f6dc98aa414a5a
|
||||
SHA256 (VNCcrack-1.0.0.tgz) = af0a1e85e9d10df8f32439a3c084f613eb295464becf9dd61d93de385277d66b
|
||||
SIZE (VNCcrack-1.0.0.tgz) = 35072
|
2
security/vnccrack/files/pkg-message.in
Normal file
2
security/vnccrack/files/pkg-message.in
Normal file
|
@ -0,0 +1,2 @@
|
|||
Additional info on program usage can be found in this file:
|
||||
%%DOCSDIR%%/readme.txt
|
7
security/vnccrack/pkg-descr
Normal file
7
security/vnccrack/pkg-descr
Normal file
|
@ -0,0 +1,7 @@
|
|||
VNCcrack is a fast offline password cracker for VNC passwords.
|
||||
By sniffing a VNC challenge-response sequence off the network
|
||||
(typically when VNC is used without a decent cryptographic
|
||||
wrapper like SSH or SSL), you can recover the password fairly
|
||||
easily and quickly by letting VNCcrack pound on it.
|
||||
|
||||
WWW: http://www.randombit.net/projects/vnccrack/
|
3
security/vnccrack/pkg-plist
Normal file
3
security/vnccrack/pkg-plist
Normal file
|
@ -0,0 +1,3 @@
|
|||
bin/vnccrack
|
||||
%%PORTDOCS%%%%DOCSDIR%%/readme.txt
|
||||
%%PORTDOCS%%@dirrm %%DOCSDIR%%
|
Loading…
Reference in a new issue