Package Details: dirsearch 0.4.3-5

Git Clone URL: https://aur.archlinux.org/dirsearch.git (read-only, click to copy)
Package Base: dirsearch
Description: Web path scanner/fuzzer, written in Python
Upstream URL: https://github.com/maurosoria/dirsearch
Keywords: ITsec python security web wordlist
Licenses: GPL-2.0-only
Submitter: Kr1ss
Maintainer: Levitating
Last Packager: Levitating
Votes: 4
Popularity: 0.41
First Submitted: 2019-06-23 18:37 (UTC)
Last Updated: 2024-01-29 04:08 (UTC)

Latest Comments

1 2 Next › Last »

Misaka13514 commented on 2024-01-28 05:51 (UTC) (edited on 2024-01-31 07:59 (UTC) by Misaka13514)

Please follow Arch Linux RFC16: use SPDX license identifier in PKGBUILD. https://gitlab.archlinux.org/archlinux/rfcs/-/blob/master/rfcs/0016-spdx-license-identifiers.rst

Thanks for maintaining! :)

Levitating commented on 2023-11-30 18:03 (UTC)

@NalinD it's not in the requirements.txt, what error did you get?

NalinD commented on 2023-09-07 10:29 (UTC)

I had to install also python-pyspnego to have it work, should it be inserted in the dependencies?

Levitating commented on 2023-06-21 07:04 (UTC)

I added the dependencies listed by @FantasqueX

FantasqueX commented on 2023-06-21 05:15 (UTC) (edited on 2023-06-21 05:15 (UTC) by FantasqueX)

There are some dependencies listed in requirements.txt missed. I made a patch to fix this.

diff --git a/PKGBUILD b/PKGBUILD
index 0fd8598..b7e52c1 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,7 +15,9 @@ license=('GPL2')

 makedepends=('python-setuptools')
 depends=('python' 'python-certifi' 'python-chardet' 'python-urllib3' 'python-cryptography'
-         'python-pysocks' 'python-cffi' 'python-ntlm-auth' 'python-requests-ntlm' 'python-charset-normalizer')
+         'python-pysocks' 'python-cffi' 'python-ntlm-auth' 'python-requests-ntlm' 'python-charset-normalizer'
+         'python-jinja' 'python-defusedxml' 'python-markupsafe' 'python-pyopenssl' 'python-idna'
+         'python-requests' 'python-colorama' 'python-pyparsing' 'python-beautifulsoup4')

 changelog=CHANGELOG.md
 backup=("etc/$pkgname/default.conf")

Misaka13514 commented on 2023-04-27 02:52 (UTC) (edited on 2023-04-27 02:53 (UTC) by Misaka13514)

Should python-colorama and python-defusedxml be added to dependencies?

Antiz commented on 2023-02-04 12:29 (UTC)

Since @Levitating adopted this package recently and plans to get it up-to-date soon, I rejected the pending orphan request.

Levitating commented on 2023-01-19 16:25 (UTC)

I adopted this and hope to get it up-to-date soon.

Thanks for your hard work on it @Kr1ss

Kr1ss commented on 2021-11-05 18:19 (UTC) (edited on 2021-11-05 18:20 (UTC) by Kr1ss)

I've pushed an update, the default for both logs and report destinations is now just ., so they'll be stored inside the folder from where dirsearch is invoked.

@LevitatingRein : Make sure you delete the already written data from /usr/lib/python3.9/site-packages/dirsearch/{logs,reports}, so there won't be any holdovers in case you'll uninstall the package at some point. Or move them to another location. Also, don't forget to restore the group permissions you modified. ;)

Cheers !

Kr1ss commented on 2021-11-04 20:42 (UTC) (edited on 2021-11-04 20:45 (UTC) by Kr1ss)

Thanks @LevitatingRein !

For the time being, could you set the following in your /etc/dirsearch/default.conf :

[reports]
report-output-folder = /home/<USERNAME>/.dirsearch/reports
logs-location        = /home/<USERNAME>/.dirsearch/logs

Of course, make sure you use your actual username instead of the placeholders. :)

(E/ or just use different folders as you see fit)

I'll likely add a patch to set these to a location inside /tmp/ or /run/ by default, on a fresh install.