diff options
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/metasploit/ChangeLog | 9 | ||||
-rw-r--r-- | net-analyzer/metasploit/Manifest | 3 | ||||
-rw-r--r-- | net-analyzer/metasploit/metadata.xml | 16 | ||||
-rw-r--r-- | net-analyzer/metasploit/metasploit-2.3.ebuild | 45 |
4 files changed, 73 insertions, 0 deletions
diff --git a/net-analyzer/metasploit/ChangeLog b/net-analyzer/metasploit/ChangeLog new file mode 100644 index 000000000000..bc16e5ead5fb --- /dev/null +++ b/net-analyzer/metasploit/ChangeLog @@ -0,0 +1,9 @@ +# ChangeLog for net-analyzer/metasploit +# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/metasploit/ChangeLog,v 1.1 2005/02/13 13:59:49 dragonheart Exp $ + +*metasploit-2.3 (13 Feb 2005) + + 13 Feb 2005; Daniel Black <dragonheart@gentoo.org> +metasploit-2.3.ebuild: + Initial ebuild as per bug #81826 thanks to Marco Morales <soulse@gmail.com> + diff --git a/net-analyzer/metasploit/Manifest b/net-analyzer/metasploit/Manifest new file mode 100644 index 000000000000..b12c41722ef5 --- /dev/null +++ b/net-analyzer/metasploit/Manifest @@ -0,0 +1,3 @@ +MD5 f7749730de048e43886bdce08644286b metasploit-2.3.ebuild 1100 +MD5 d92153bd1fe2451ba296d70226937178 metadata.xml 907 +MD5 38b31ffed97d630a113365424ecd9655 files/digest-metasploit-2.3 66 diff --git a/net-analyzer/metasploit/metadata.xml b/net-analyzer/metasploit/metadata.xml new file mode 100644 index 000000000000..47a79cc2767d --- /dev/null +++ b/net-analyzer/metasploit/metadata.xml @@ -0,0 +1,16 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>netmon</herd> + <maintainer> + <email>netmon@gentoo.org</email> + <name>Netmon Herd</name> + </maintainer> + <longdescription> +This project is a powerful tool for penetration testing, exploit development, and vulnerability research. +The Framework is written in the Perl scripting language and includes various components written in C, assembler, and Python. +This project can be roughly compared to commercial offerings such as Immunity's CANVAS and Core Security Technology's Impact. +The major difference between the Framework and these commercial products is the focus; while the commercial products need to +always provide the latest exploits and an intuitive GUI, the Framework was designed to facilitate research and experimentation with new technologies. + </longdescription> +</pkgmetadata> diff --git a/net-analyzer/metasploit/metasploit-2.3.ebuild b/net-analyzer/metasploit/metasploit-2.3.ebuild new file mode 100644 index 000000000000..005bbfdd82c4 --- /dev/null +++ b/net-analyzer/metasploit/metasploit-2.3.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/metasploit/metasploit-2.3.ebuild,v 1.1 2005/02/13 13:59:49 dragonheart Exp $ + +DESCRIPTION="The Metasploit Framework is an advanced open-source platform for developing, testing, and using vulnerability exploit code." +HOMEPAGE="http://www.metasploit.org/" + +# Need to change the name +MY_P=${P/metasploit/framework} + +SRC_URI="http://metasploit.com/tools/${MY_P}.tar.gz" + +S=${WORKDIR}/${MY_P} + +LICENSE="GPL-2 Artistic" + +SLOT="0" +KEYWORDS="~x86 ~ppc" +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/Net-SSLeay + dev-perl/Term-ReadLine-Perl" + +src_compile() { + einfo "Nothing to build, jumping to install..." +} + +src_install() { + dodir /usr/lib/ + dodir /usr/bin/ + + # should be as simple as copying everything into the target... + cp -a ${S} ${D}usr/lib/metasploit || die + + # and creating symlinks in the /usr/bin dir + cd ${D}/usr/bin + ln -s ../lib/metasploit/msf* ./ || die + chown -R root:root ${D} +} + +pkg_postinst() { + ewarn "You may wish to perform a metasploit update to get" + ewarn "the latest modules (e.g. run 'msfupdate -u')" +} |