From 62565e7bbc9fd15ab1148352a65d25817a868e2b Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Sun, 21 Jun 2015 18:16:03 +0200 Subject: [PATCH 01/11] Initial import --- .SRCINFO | 14 ++++++++++++++ PKGBUILD | 27 +++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 .SRCINFO create mode 100644 PKGBUILD diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..56f9a8f --- /dev/null +++ b/.SRCINFO @@ -0,0 +1,14 @@ +pkgbase = wfuzz + pkgdesc = Utility to bruteforce web applications to find their not linked resources + pkgver = 2.1beta + pkgrel = 1 + url = https://github.com/xmendez/wfuzz + arch = i686 + arch = x86_64 + license = GPL + depends = python2-pycurl + source = https://github.com/xmendez/wfuzz/releases/download/v2.1-beta/wfuzz-2.1.beta.tar.gz + md5sums = 8aa60e900483553223fd989922c05b91 + +pkgname = wfuzz + diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..9c11cb5 --- /dev/null +++ b/PKGBUILD @@ -0,0 +1,27 @@ +#Contributor: Olivier Le Moal +#Maintainer: Dawid Wrobel +#Maintainer: Sébastien Duquette +#Maintainer: onny + +pkgname=wfuzz +pkgver=2.1beta +pkgrel=1 +pkgdesc="Utility to bruteforce web applications to find their not linked resources" +url="https://github.com/xmendez/wfuzz" +arch=('i686' 'x86_64') +license=('GPL') +depends=('python2-pycurl') +makedepends=() +conflicts=() +replaces=() +backup=() +source=("https://github.com/xmendez/wfuzz/releases/download/v2.1-beta/${pkgname}-2.1.beta.tar.gz") +md5sums=('8aa60e900483553223fd989922c05b91') +package() { + mkdir -p ${pkgdir}/opt/wfuzz + mkdir -p ${pkgdir}/usr/bin + cp -r ${srcdir}/wfuzz-2.1-beta/* ${pkgdir}/opt/wfuzz/ + echo -e "#!/bin/bash\n\ncd /opt/wfuzz\npython2.7 /opt/wfuzz/wfuzz.py \$@" > ${pkgdir}/usr/bin/wfuzz + sed -i '0,/RE/s/python/python2/' ${pkgdir}/opt/wfuzz/wfuzz.py + chmod a+x ${pkgdir}/usr/bin/wfuzz +} From 2881e20e83d45b93ab7f6fb03949da494238a6f4 Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Thu, 31 Aug 2017 12:32:46 +0200 Subject: [PATCH 02/11] update to 2.1.5 --- PKGBUILD | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 9c11cb5..50e5bcb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ #Maintainer: onny pkgname=wfuzz -pkgver=2.1beta +pkgver=2.1.5 pkgrel=1 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" @@ -15,13 +15,13 @@ makedepends=() conflicts=() replaces=() backup=() -source=("https://github.com/xmendez/wfuzz/releases/download/v2.1-beta/${pkgname}-2.1.beta.tar.gz") -md5sums=('8aa60e900483553223fd989922c05b91') +source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") +md5sums=('c98c5ee8b92aade9ab513b55bd0dc057') package() { mkdir -p ${pkgdir}/opt/wfuzz mkdir -p ${pkgdir}/usr/bin - cp -r ${srcdir}/wfuzz-2.1-beta/* ${pkgdir}/opt/wfuzz/ - echo -e "#!/bin/bash\n\ncd /opt/wfuzz\npython2.7 /opt/wfuzz/wfuzz.py \$@" > ${pkgdir}/usr/bin/wfuzz + cp -r ${srcdir}/${pkgname}-${pkgver}/* ${pkgdir}/opt/wfuzz/ + echo -e "#!/bin/bash\n\ncd /opt/wfuzz\npython2 /opt/wfuzz/wfuzz.py \$@" > ${pkgdir}/usr/bin/wfuzz sed -i '0,/RE/s/python/python2/' ${pkgdir}/opt/wfuzz/wfuzz.py chmod a+x ${pkgdir}/usr/bin/wfuzz } From 10fe2e35130dda2abfaf44b5c57e351be8855263 Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Thu, 31 Aug 2017 12:35:19 +0200 Subject: [PATCH 03/11] add .SRCINFO --- .SRCINFO | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 56f9a8f..e07f61b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,14 @@ pkgbase = wfuzz pkgdesc = Utility to bruteforce web applications to find their not linked resources - pkgver = 2.1beta + pkgver = 2.1.5 pkgrel = 1 url = https://github.com/xmendez/wfuzz arch = i686 arch = x86_64 license = GPL depends = python2-pycurl - source = https://github.com/xmendez/wfuzz/releases/download/v2.1-beta/wfuzz-2.1.beta.tar.gz - md5sums = 8aa60e900483553223fd989922c05b91 + source = https://github.com/xmendez/wfuzz/archive/v2.1.5.tar.gz + md5sums = c98c5ee8b92aade9ab513b55bd0dc057 pkgname = wfuzz From 38f4bc088c21a398ccc76983dbbc3be8f44730f5 Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Tue, 30 Jan 2018 10:58:21 +0100 Subject: [PATCH 04/11] update to 2.2.9 --- PKGBUILD | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 50e5bcb..4a36523 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ #Maintainer: onny pkgname=wfuzz -pkgver=2.1.5 +pkgver=2.2.9 pkgrel=1 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" @@ -16,12 +16,12 @@ conflicts=() replaces=() backup=() source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") -md5sums=('c98c5ee8b92aade9ab513b55bd0dc057') +md5sums=('136bd26bdf301e169d873d4d0e5a226c') package() { - mkdir -p ${pkgdir}/opt/wfuzz + mkdir -p ${pkgdir}/opt/wfuzz mkdir -p ${pkgdir}/usr/bin - cp -r ${srcdir}/${pkgname}-${pkgver}/* ${pkgdir}/opt/wfuzz/ - echo -e "#!/bin/bash\n\ncd /opt/wfuzz\npython2 /opt/wfuzz/wfuzz.py \$@" > ${pkgdir}/usr/bin/wfuzz - sed -i '0,/RE/s/python/python2/' ${pkgdir}/opt/wfuzz/wfuzz.py - chmod a+x ${pkgdir}/usr/bin/wfuzz + cp -r ${srcdir}/${pkgname}-${pkgver}/* ${pkgdir}/opt/wfuzz/ + echo -e "#!/bin/bash\n\ncd /opt/wfuzz\n/opt/wfuzz/wfuzz \$@" > ${pkgdir}/usr/bin/wfuzz + sed -i '0,/RE/s/python/python2/' ${pkgdir}/opt/wfuzz/wfuzz + chmod a+x ${pkgdir}/usr/bin/wfuzz } From aad6c55cda6105e92d35320f94a7a94ad397ed00 Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Tue, 30 Jan 2018 11:07:28 +0100 Subject: [PATCH 05/11] use wfuzz setup.py --- PKGBUILD | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index 4a36523..e2b43cb 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,7 +5,7 @@ pkgname=wfuzz pkgver=2.2.9 -pkgrel=1 +pkgrel=2 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" arch=('i686' 'x86_64') @@ -17,11 +17,10 @@ replaces=() backup=() source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") md5sums=('136bd26bdf301e169d873d4d0e5a226c') +sha256sums=('8e68a188ff0e19ac2675f4e15160aa855d34b585b2dc1bbfc53ad639f899e513') + + package() { - mkdir -p ${pkgdir}/opt/wfuzz - mkdir -p ${pkgdir}/usr/bin - cp -r ${srcdir}/${pkgname}-${pkgver}/* ${pkgdir}/opt/wfuzz/ - echo -e "#!/bin/bash\n\ncd /opt/wfuzz\n/opt/wfuzz/wfuzz \$@" > ${pkgdir}/usr/bin/wfuzz - sed -i '0,/RE/s/python/python2/' ${pkgdir}/opt/wfuzz/wfuzz - chmod a+x ${pkgdir}/usr/bin/wfuzz + cd "${srcdir}/${pkgname}-${pkgver}" + python2 setup.py install --prefix=/usr --root="${pkgdir}" --optimize=1 } From d73f37397a3af891e41154cba4187104a8efbd5f Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Tue, 30 Jan 2018 11:22:08 +0100 Subject: [PATCH 06/11] update dependencies --- PKGBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index e2b43cb..fdbfa57 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,12 +5,12 @@ pkgname=wfuzz pkgver=2.2.9 -pkgrel=2 +pkgrel=3 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" arch=('i686' 'x86_64') license=('GPL') -depends=('python2-pycurl') +depends=('python2-pycurl' 'python2-pyparsing') makedepends=() conflicts=() replaces=() From c5d89f0de4ff627ab77f8052e28a8775066e0c8f Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Tue, 17 Jul 2018 23:14:39 +0200 Subject: [PATCH 07/11] update to 2.2.11 --- PKGBUILD | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/PKGBUILD b/PKGBUILD index fdbfa57..3fa29f2 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,8 +4,8 @@ #Maintainer: onny pkgname=wfuzz -pkgver=2.2.9 -pkgrel=3 +pkgver=2.2.11 +pkgrel=1 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" arch=('i686' 'x86_64') @@ -16,8 +16,8 @@ conflicts=() replaces=() backup=() source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") -md5sums=('136bd26bdf301e169d873d4d0e5a226c') -sha256sums=('8e68a188ff0e19ac2675f4e15160aa855d34b585b2dc1bbfc53ad639f899e513') +md5sums=('91281ea3cd32b0b9c8478d5cca424d05') +sha256sums=('d90ed28f5e301e1b8f66e041dedecc92c6e6c264da6fc2790ac69d11bce8e009') package() { From 17d70eb7c64aca1c7cf436eb8ec55d3d513d4d2e Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Tue, 17 Jul 2018 23:44:56 +0200 Subject: [PATCH 08/11] update .SRCINFO --- .SRCINFO | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index e07f61b..9278184 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,14 +1,16 @@ pkgbase = wfuzz pkgdesc = Utility to bruteforce web applications to find their not linked resources - pkgver = 2.1.5 + pkgver = 2.2.11 pkgrel = 1 url = https://github.com/xmendez/wfuzz arch = i686 arch = x86_64 license = GPL depends = python2-pycurl - source = https://github.com/xmendez/wfuzz/archive/v2.1.5.tar.gz - md5sums = c98c5ee8b92aade9ab513b55bd0dc057 + depends = python2-pyparsing + source = https://github.com/xmendez/wfuzz/archive/v2.2.11.tar.gz + md5sums = 91281ea3cd32b0b9c8478d5cca424d05 + sha256sums = d90ed28f5e301e1b8f66e041dedecc92c6e6c264da6fc2790ac69d11bce8e009 pkgname = wfuzz From 512d993e22499c590ac00a0b3212d0430abd1163 Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Wed, 5 Dec 2018 10:38:31 +0100 Subject: [PATCH 09/11] update wfuzz to 2.3.1 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9278184..9c4a59e 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wfuzz pkgdesc = Utility to bruteforce web applications to find their not linked resources - pkgver = 2.2.11 + pkgver = 2.3.1 pkgrel = 1 url = https://github.com/xmendez/wfuzz arch = i686 @@ -8,9 +8,9 @@ pkgbase = wfuzz license = GPL depends = python2-pycurl depends = python2-pyparsing - source = https://github.com/xmendez/wfuzz/archive/v2.2.11.tar.gz - md5sums = 91281ea3cd32b0b9c8478d5cca424d05 - sha256sums = d90ed28f5e301e1b8f66e041dedecc92c6e6c264da6fc2790ac69d11bce8e009 + source = https://github.com/xmendez/wfuzz/archive/v2.3.1.tar.gz + md5sums = 52c41b801f1976497567d13c2d403759 + sha256sums = 4c111d9189463599b69a810c14b9c7b4fccd83b2969616d4d0c83d48ac5bfd3d pkgname = wfuzz diff --git a/PKGBUILD b/PKGBUILD index 3fa29f2..d5afb8b 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ #Maintainer: onny pkgname=wfuzz -pkgver=2.2.11 +pkgver=2.3.1 pkgrel=1 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" @@ -16,8 +16,8 @@ conflicts=() replaces=() backup=() source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") -md5sums=('91281ea3cd32b0b9c8478d5cca424d05') -sha256sums=('d90ed28f5e301e1b8f66e041dedecc92c6e6c264da6fc2790ac69d11bce8e009') +md5sums=('52c41b801f1976497567d13c2d403759') +sha256sums=('4c111d9189463599b69a810c14b9c7b4fccd83b2969616d4d0c83d48ac5bfd3d') package() { From 945536dc251d1d4f49a4a331253c90853a7aa17f Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Wed, 23 Jan 2019 18:20:28 +0100 Subject: [PATCH 10/11] update to 2.3.4 --- .SRCINFO | 8 ++++---- PKGBUILD | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index 9c4a59e..f833d7b 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,6 +1,6 @@ pkgbase = wfuzz pkgdesc = Utility to bruteforce web applications to find their not linked resources - pkgver = 2.3.1 + pkgver = 2.3.4 pkgrel = 1 url = https://github.com/xmendez/wfuzz arch = i686 @@ -8,9 +8,9 @@ pkgbase = wfuzz license = GPL depends = python2-pycurl depends = python2-pyparsing - source = https://github.com/xmendez/wfuzz/archive/v2.3.1.tar.gz - md5sums = 52c41b801f1976497567d13c2d403759 - sha256sums = 4c111d9189463599b69a810c14b9c7b4fccd83b2969616d4d0c83d48ac5bfd3d + source = https://github.com/xmendez/wfuzz/archive/v2.3.4.tar.gz + md5sums = 74817cc7aa14efda785c1727622e4539 + sha256sums = 87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51 pkgname = wfuzz diff --git a/PKGBUILD b/PKGBUILD index d5afb8b..65f148e 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -4,7 +4,7 @@ #Maintainer: onny pkgname=wfuzz -pkgver=2.3.1 +pkgver=2.3.4 pkgrel=1 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" @@ -16,8 +16,8 @@ conflicts=() replaces=() backup=() source=("https://github.com/xmendez/wfuzz/archive/v$pkgver.tar.gz") -md5sums=('52c41b801f1976497567d13c2d403759') -sha256sums=('4c111d9189463599b69a810c14b9c7b4fccd83b2969616d4d0c83d48ac5bfd3d') +md5sums=('74817cc7aa14efda785c1727622e4539') +sha256sums=('87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51') package() { From 80399b3a19b9e9f6c9fcc072055f63143a4216cb Mon Sep 17 00:00:00 2001 From: Olivier Le Moal Date: Sun, 19 May 2019 13:23:19 +0200 Subject: [PATCH 11/11] add missing dependencies --- .SRCINFO | 4 +++- PKGBUILD | 4 ++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/.SRCINFO b/.SRCINFO index f833d7b..7e980ef 100644 --- a/.SRCINFO +++ b/.SRCINFO @@ -1,13 +1,15 @@ pkgbase = wfuzz pkgdesc = Utility to bruteforce web applications to find their not linked resources pkgver = 2.3.4 - pkgrel = 1 + pkgrel = 2 url = https://github.com/xmendez/wfuzz arch = i686 arch = x86_64 license = GPL depends = python2-pycurl depends = python2-pyparsing + depends = python2-configparser + depends = python2-future source = https://github.com/xmendez/wfuzz/archive/v2.3.4.tar.gz md5sums = 74817cc7aa14efda785c1727622e4539 sha256sums = 87ff36d866cb173389f90cf026136758d3af73079a6199961de12ed86568be51 diff --git a/PKGBUILD b/PKGBUILD index 65f148e..6463d60 100644 --- a/PKGBUILD +++ b/PKGBUILD @@ -5,12 +5,12 @@ pkgname=wfuzz pkgver=2.3.4 -pkgrel=1 +pkgrel=2 pkgdesc="Utility to bruteforce web applications to find their not linked resources" url="https://github.com/xmendez/wfuzz" arch=('i686' 'x86_64') license=('GPL') -depends=('python2-pycurl' 'python2-pyparsing') +depends=('python2-pycurl' 'python2-pyparsing' 'python2-configparser' 'python2-future') makedepends=() conflicts=() replaces=()