Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump projects/scanning/webservices/dirsearch from b44209f to 60a5046 #2149

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion projects/scanning/webservices/dirsearch
Submodule dirsearch updated 75 files
+1 −1 .github/pull_request_template.md
+9 −16 .github/workflows/ci.yml
+4 −4 .github/workflows/codeql-analysis.yml
+1 −1 .github/workflows/docker-image.yml
+2 −2 .github/workflows/semgrep-analysis.yml
+1 −0 .gitignore
+8 −3 CHANGELOG.md
+9 −1 CONTRIBUTORS.md
+1 −1 Dockerfile
+29 −12 README.md
+51 −37 config.ini
+2 −1 db/400_blacklist.txt
+9 −21 db/403_blacklist.txt
+2 −0 db/500_blacklist.txt
+36 −1 db/dicc.txt
+14 −6 dirsearch.py
+6 −3 lib/connection/dns.py
+269 −88 lib/connection/requester.py
+76 −30 lib/connection/response.py
+147 −196 lib/controller/controller.py
+13 −5 lib/core/data.py
+15 −7 lib/core/decorators.py
+36 −23 lib/core/dictionary.py
+8 −0 lib/core/exceptions.py
+275 −129 lib/core/fuzzer.py
+5 −3 lib/core/installation.py
+1 −1 lib/core/logger.py
+117 −48 lib/core/options.py
+167 −68 lib/core/scanner.py
+9 −6 lib/core/settings.py
+22 −17 lib/core/structures.py
+45 −14 lib/parse/cmdline.py
+37 −5 lib/parse/config.py
+7 −5 lib/parse/headers.py
+24 −0 lib/parse/nmap.py
+3 −1 lib/parse/rawrequest.py
+2 −2 lib/parse/url.py
+0 −0 lib/report/__init__.py
+51 −0 lib/report/csv_report.py
+133 −0 lib/report/factory.py
+65 −0 lib/report/html_report.py
+54 −0 lib/report/json_report.py
+93 −0 lib/report/manager.py
+18 −15 lib/report/markdown_report.py
+15 −8 lib/report/mysql_report.py
+22 −18 lib/report/plain_text_report.py
+11 −5 lib/report/postgresql_report.py
+14 −4 lib/report/simple_report.py
+21 −11 lib/report/sqlite_report.py
+26 −8 lib/report/templates/html_report_template.html
+53 −0 lib/report/xml_report.py
+0 −99 lib/reports/base.py
+0 −39 lib/reports/csv_report.py
+0 −59 lib/reports/html_report.py
+0 −43 lib/reports/json_report.py
+0 −43 lib/reports/xml_report.py
+19 −15 lib/utils/common.py
+28 −14 lib/utils/diff.py
+10 −4 lib/utils/file.py
+2 −1 lib/utils/mimetype.py
+0 −70 lib/utils/pickle.py
+4 −10 lib/view/colors.py
+16 −17 lib/view/terminal.py
+5 −5 requirements.txt
+2 −2 setup.py
+0 −1 testing.py
+8 −0 tests/parse/test_nmap.py
+0 −0 tests/reports/__init__.py
+0 −73 tests/reports/test_reports.py
+72 −0 tests/static/nmap.xml
+4 −0 tests/static/raw.txt
+1 −0 tests/static/targets.txt
+2 −0 tests/static/wordlist.txt
+3 −3 tests/utils/test_common.py
+3 −2 tests/utils/test_diff.py
Loading