Skip to content

Commit 09a6f7a

Browse files
committed
PayloadsAllTheThings: Import PayloadsAllTheThings-3.0 as wip/PayloadsAllTheThings
PayloadsAllTheThings is a list of useful payloads and bypasses for Web Application Security. The project covers nowadays not only bare lists of payloads but detailed explanations, walkthroughs and references for most types of web vulnerabilities and more.
1 parent fbb9eb0 commit 09a6f7a

File tree

5 files changed

+415
-0
lines changed

5 files changed

+415
-0
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ SUBDIR+= OpenGLUT
3131
SUBDIR+= OpenJK-git
3232
SUBDIR+= OpenLara
3333
SUBDIR+= OpenTESArena
34+
SUBDIR+= PayloadsAllTheThings
3435
SUBDIR+= PHPUnit
3536
SUBDIR+= PPower4
3637
SUBDIR+= PatternPaint

PayloadsAllTheThings/DESCR

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
PayloadsAllTheThings is a list of useful payloads and bypasses for Web
2+
Application Security.
3+
4+
The project covers nowadays not only bare lists of payloads but
5+
detailed explanations, walkthroughs and references for most types of
6+
web vulnerabilities and more.

PayloadsAllTheThings/Makefile

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# $NetBSD$
2+
3+
DISTNAME= 3.0
4+
PKGNAME= ${GITHUB_PROJECT}-${DISTNAME}
5+
CATEGORIES= security
6+
MASTER_SITES= ${MASTER_SITE_GITHUB:=swisskyrepo/}
7+
GITHUB_PROJECT= PayloadsAllTheThings
8+
GITHUB_TAG= refs/tags/3.0
9+
DIST_SUBDIR= ${GITHUB_PROJECT}
10+
11+
MAINTAINER= nebbionegiuseppe@gmail.com
12+
HOMEPAGE= https://github.com/swisskyrepo/PayloadsAllTheThings/
13+
COMMENT= Collection of payloads and bypasses for Web Application Security
14+
LICENSE= mit
15+
16+
USE_TOOLS+= pax
17+
18+
WRKSRC= ${WRKDIR}/PayloadsAllTheThings-3.0
19+
20+
INSTALLATION_DIRS= share/PayloadsAllTheThings
21+
22+
23+
NO_CONFIGURE= yes
24+
NO_BUILD= yes
25+
26+
do-install:
27+
cd ${WRKSRC} && ${PAX} -rw * \
28+
${DESTDIR}${PREFIX}/share/PayloadsAllTheThings/
29+
30+
.include "../../mk/bsd.pkg.mk"

0 commit comments

Comments
 (0)