mirror of
https://github.com/pentoo/pentoo-overlay
synced 2026-04-21 22:30:59 +02:00
seclists: 2019.4 bump
This commit is contained in:
parent
dabf7b8b17
commit
8f8bfc5b82
2 changed files with 27 additions and 0 deletions
|
|
@ -1,3 +1,4 @@
|
|||
DIST seclists-2019.1.tar.gz 269988162 BLAKE2B 10d648cb366352233c58a13a3974347ec63ce25a17e1f041ec7f33c83536921847cdd7215b1ddf5f1eb48db0160a82c6f781378337ca23bed77a144e7cf4c770 SHA512 1bdf0a2766e14baa6a229e97c4ce8e4e4d397d9f682755deae7a13a037845bc671ef18fc89b904e7697460aa810f84ee6679630401efc02fdf9441a1a441a95a
|
||||
DIST seclists-2019.2.tar.gz 335607960 BLAKE2B 55bfcd065bcf47338f9e175d52d420ceb66a8b7bdccfd7f069ad905e86c5d03d585d46e4a9f888a2fe39018c740becd9bbbebb841be230f9ab162d8d4a98ccec SHA512 8552b4dfe2e09778d26456eb1d3718483c509c5f3acd4b9520acbf162aa1bd03c91714321befd488ad553a93cd747f6a385fb2899a129fc6f27cc84d1fdbbc13
|
||||
DIST seclists-2019.3.tar.gz 346689377 BLAKE2B ac1416a122ef2c734f20e9a66039e27a232859bebd8d2cb8768fe5521f76f6d0b178d057051da13340082eb01898a5b8aa45dde9734e9ae1f97fa9c6dcdd3851 SHA512 589b4085aa9c100585ae90d56927de32f753cdc30e9305cf990c3b85965c0fcdb52dddd6c1f8c07aec2feddea5d5c16048de91bf7f9a2b676968eb0335ca3e73
|
||||
DIST seclists-2019.4.tar.gz 349890687 BLAKE2B 06b05ef5b16c7d2580a694d6aabae4aa1483e3d94d717d6e17ae6b356042b428ef2672dca3175e416f4401fba90b127acd8985ee92a72237b9c9975e95953872 SHA512 4de4e562439949a2958521c62a58f124a7ca8dc468d92bc1b8eff88c86ed37aa9f11c3ca98014d96043619bd897b41a3ca7eb7fbc0bca9b49b02ac9a7f063dfb
|
||||
|
|
|
|||
26
app-dicts/seclists/seclists-2019.4.ebuild
Normal file
26
app-dicts/seclists/seclists-2019.4.ebuild
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
# Copyright 1999-2018 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=6
|
||||
|
||||
DESCRIPTION="A collection of multiple types of lists used during security assessments"
|
||||
HOMEPAGE="https://github.com/danielmiessler/SecLists"
|
||||
SRC_URI="https://github.com/danielmiessler/SecLists/archive/${PV}.tar.gz -> ${P}.tar.gz"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~arm ~x86"
|
||||
IUSE=""
|
||||
|
||||
S="${WORKDIR}/SecLists-${PV}"
|
||||
|
||||
src_prepare(){
|
||||
#https://github.com/danielmiessler/SecLists/issues/226
|
||||
rm ./Payloads/File-Names/max-length/*
|
||||
eapply_user
|
||||
}
|
||||
|
||||
src_install(){
|
||||
insinto /usr/share/dict/seclists
|
||||
doins -r *
|
||||
}
|
||||
Loading…
Reference in a new issue