mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-19 13:20:57 +02:00
* Added xss-me, sql-inject-me, sql-injection
This commit is contained in:
parent
2124336f55
commit
482a2cc48c
6 changed files with 138 additions and 0 deletions
2
x11-plugins/sql-inject-me/Manifest
Normal file
2
x11-plugins/sql-inject-me/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST sql_inject_me-0.4.0-fx.xpi 122077 RMD160 78a329bf4e16919a7953c0b9a2030a79ca011e76 SHA1 5e5e29d535d19c648c8b15dde9b37cb78e6e528a SHA256 daa6a4af4a9f25d49a77e5ede09d4ffc26dc64a28fbeab22b05a289e66ce84ac
|
||||
EBUILD sql-inject-me-0.4.0.ebuild 1060 RMD160 1f4377b40c8431c1cc3ce3d5acd297291189cd77 SHA1 a11fa05fcfb09bc7323bfa663ee6cd735352b799 SHA256 5f12139ec88be0ef2e39be2792cb4e361cd71810ec888a37cfa0506d08877b1c
|
||||
44
x11-plugins/sql-inject-me/sql-inject-me-0.4.0.ebuild
Normal file
44
x11-plugins/sql-inject-me/sql-inject-me-0.4.0.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit mozextension-2 multilib eutils
|
||||
|
||||
MY_P="${PN//-/_}-${PV}-fx"
|
||||
DESCRIPTION="A Firefox extensions from the firecat framework."
|
||||
HOMEPAGE="http://www.security-database.com/toolswatch/FireCAT-Firefox-Catalog-of,302.html"
|
||||
SRC_URI="https://addons.mozilla.org/en-US/firefox/downloads/file/38927/${MY_P}.xpi"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| (
|
||||
>=www-client/mozilla-firefox-bin-3.0.0
|
||||
>=www-client/mozilla-firefox-3.0.0
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
xpi_unpack $A
|
||||
# epatch "${FILESDIR}/${MY_P}.patch"
|
||||
}
|
||||
|
||||
src_compile () {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install () {
|
||||
declare MOZILLA_FIVE_HOME
|
||||
if has_version '>=www-client/mozilla-firefox-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
if has_version '>=www-client/mozilla-firefox-bin-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/opt/firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
}
|
||||
2
x11-plugins/sql-injection/Manifest
Normal file
2
x11-plugins/sql-injection/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST sql_injection-1.2-fx.xpi 86737 RMD160 d6eae917a367da20dd5bb6cac830a45e1ba8498e SHA1 ca14a4d0d15f6a436ffb1a2e810221455f10a590 SHA256 bb05aae4a9650ba3dba64ba31fd219606d359610def87a61ec8b3200daba66ee
|
||||
EBUILD sql-injection-1.2.ebuild 1060 RMD160 6b3cd2d4d9aaff3b4c8a9b6b0d3caf89505bb8e3 SHA1 1ca6a695263103eb92dc1246a337e31a569cd1d4 SHA256 4024c554b758d7966d98c1f6a467bd6529daa0b2b7c8039b65d0d5b465f0353c
|
||||
44
x11-plugins/sql-injection/sql-injection-1.2.ebuild
Normal file
44
x11-plugins/sql-injection/sql-injection-1.2.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit mozextension-2 multilib eutils
|
||||
|
||||
MY_P="${PN//-/_}-${PV}-fx"
|
||||
DESCRIPTION="A Firefox extensions from the firecat framework."
|
||||
HOMEPAGE="http://www.security-database.com/toolswatch/FireCAT-Firefox-Catalog-of,302.html"
|
||||
SRC_URI="https://addons.mozilla.org/en-US/firefox/downloads/file/35382/${MY_P}.xpi"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| (
|
||||
>=www-client/mozilla-firefox-bin-3.0.0
|
||||
>=www-client/mozilla-firefox-3.0.0
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
xpi_unpack $A
|
||||
# epatch "${FILESDIR}/${MY_P}.patch"
|
||||
}
|
||||
|
||||
src_compile () {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install () {
|
||||
declare MOZILLA_FIVE_HOME
|
||||
if has_version '>=www-client/mozilla-firefox-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
if has_version '>=www-client/mozilla-firefox-bin-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/opt/firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
}
|
||||
2
x11-plugins/xss-me/Manifest
Normal file
2
x11-plugins/xss-me/Manifest
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
DIST xss_me-0.4.0-fx.xpi 98453 RMD160 a6fbe1d3a74956f87d9da097172200658d41925e SHA1 ecde4b8703a73bf1051395ff9a8e32e01289c55c SHA256 ac43ffe5d30416b329801f2cb2e6fd5d9bcf5c1a3c065da065f35ac166795518
|
||||
EBUILD xss-me-0.4.0.ebuild 1059 RMD160 f7344013886a5fee40d875869318c79f94bf8823 SHA1 309f3aadb8ff10608ed87487ce680d96a59247be SHA256 7e6c35ec5430c989fe5bca15393f9ecb479d9efc20f7a6ccb185ca77ce2f563e
|
||||
44
x11-plugins/xss-me/xss-me-0.4.0.ebuild
Normal file
44
x11-plugins/xss-me/xss-me-0.4.0.ebuild
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
# Copyright 1999-2004 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: $
|
||||
|
||||
inherit mozextension-2 multilib eutils
|
||||
|
||||
MY_P="${PN/-/_}-${PV}-fx"
|
||||
DESCRIPTION="A Firefox extensions from the firecat framework."
|
||||
HOMEPAGE="http://www.security-database.com/toolswatch/FireCAT-Firefox-Catalog-of,302.html"
|
||||
SRC_URI="https://addons.mozilla.org/en-US/firefox/downloads/file/38926/${MY_P}.xpi"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="amd64 x86"
|
||||
IUSE=""
|
||||
|
||||
RDEPEND="|| (
|
||||
>=www-client/mozilla-firefox-bin-3.0.0
|
||||
>=www-client/mozilla-firefox-3.0.0
|
||||
)"
|
||||
DEPEND="${RDEPEND}"
|
||||
|
||||
S="${WORKDIR}"
|
||||
|
||||
src_unpack() {
|
||||
xpi_unpack $A
|
||||
# epatch "${FILESDIR}/${MY_P}.patch"
|
||||
}
|
||||
|
||||
src_compile () {
|
||||
einfo "Nothing to compile"
|
||||
}
|
||||
|
||||
src_install () {
|
||||
declare MOZILLA_FIVE_HOME
|
||||
if has_version '>=www-client/mozilla-firefox-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/usr/$(get_libdir)/mozilla-firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
if has_version '>=www-client/mozilla-firefox-bin-1.5.0.7'; then
|
||||
MOZILLA_FIVE_HOME="/opt/firefox"
|
||||
xpi_install "${S}/${MY_P}"
|
||||
fi
|
||||
}
|
||||
Loading…
Reference in a new issue