Skip to content

Commit

Permalink
initial commit (#3171)
Browse files Browse the repository at this point in the history
  • Loading branch information
D4imyo authored Jul 16, 2021
1 parent 0527352 commit cf235c2
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions packages/see-surf/PKGBUILD
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# This file is part of BlackArch Linux ( https://www.blackarch.org/ ).
# See COPYING for license details.

pkgname=see-surf
pkgver=v2.0.r32.g55353dd
pkgrel=1
pkgdesc='A Python based scanner to find potential SSRF parameters in a web application.'
arch=('any')
groups=('blackarch' 'blackarch-scanner')
url='https://github.com/In3tinct/See-SURF'
license=('GPL3')
depends=('python' 'python-requests' 'python-beautifulsoup4')
makedepends=('git')
source=("git+https://github.com/In3tinct/$pkgname.git")
sha512sums=('SKIP')

pkgver() {
cd $pkgname

git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}

package() {
cd $pkgname

install -Dm 755 "$pkgname.py" "$pkgdir/usr/bin/$pkgname"

install -Dm 644 -t "$pkgdir/usr/share/doc/$pkgname" *.md
}

0 comments on commit cf235c2

Please sign in to comment.