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

Update Wappalyzer #3800

Merged
merged 41 commits into from
Jan 10, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
29d0e67
Initial version
ammar92 Nov 1, 2024
d52859d
Updates
ammar92 Nov 6, 2024
7b2e6d6
Fix
ammar92 Nov 1, 2024
654c0af
Merge remote-tracking branch 'origin/main' into fix/update-wappalyzer
ammar92 Nov 12, 2024
684beb7
Fix
ammar92 Nov 19, 2024
90749e1
Moved httpx
ammar92 Nov 19, 2024
9acf225
Some fixes
ammar92 Nov 19, 2024
b2d5909
Merge branch 'main' into fix/update-wappalyzer
ammar92 Nov 19, 2024
39b34af
More fixes and a better updater
ammar92 Nov 19, 2024
52740c7
Linting
ammar92 Nov 19, 2024
2d11e6b
Updates
ammar92 Nov 20, 2024
01256b7
Data files
ammar92 Nov 20, 2024
e8974af
Fixed tests
ammar92 Nov 20, 2024
2037a21
Pre-commit configuration and linting
ammar92 Nov 20, 2024
180694a
Merge branch 'main' into fix/update-wappalyzer
stephanie0x00 Nov 21, 2024
998645f
Fixed normalizer
ammar92 Nov 21, 2024
338c3a9
Merge branch 'main' into fix/update-wappalyzer
ammar92 Nov 21, 2024
45a011b
Merge remote-tracking branch 'origin/fix/update-wappalyzer' into fix/…
ammar92 Nov 21, 2024
fd9d1e1
Implemented the `analyze_script_src_in_html` analyzer
ammar92 Dec 4, 2024
bfadb0e
Merged
ammar92 Dec 5, 2024
c0a87e7
Fixed tests and return type
ammar92 Dec 5, 2024
84ba807
Merge branch 'main' into fix/update-wappalyzer
underdarknl Dec 6, 2024
489499e
Merge branch 'main' into fix/update-wappalyzer
stephanie0x00 Dec 9, 2024
935c77e
Fixes
ammar92 Dec 13, 2024
348fdb8
Merge branch 'main' into fix/update-wappalyzer
ammar92 Dec 19, 2024
b88c61b
Added `cpe` package
ammar92 Dec 19, 2024
5d5fdc6
Fixed versions and CPEs
ammar92 Dec 19, 2024
b86f848
Fixed versions and CPEs
ammar92 Dec 19, 2024
6cb5f64
Merge remote-tracking branch 'origin/fix/update-wappalyzer' into fix/…
ammar92 Dec 19, 2024
82a6f69
Merge branch 'main' into fix/update-wappalyzer
ammar92 Jan 2, 2025
3d99783
Fixed requirements
ammar92 Jan 2, 2025
28790b8
Merge branch 'main' into fix/update-wappalyzer
underdarknl Jan 2, 2025
ba4117a
Merge branch 'main' into fix/update-wappalyzer
ammar92 Jan 7, 2025
baeb83c
Testing build
ammar92 Jan 7, 2025
7fac4d0
Testing build
ammar92 Jan 7, 2025
d5eac0d
Merge remote-tracking branch 'origin/fix/update-wappalyzer' into fix/…
ammar92 Jan 7, 2025
f85e8e3
Fixes
ammar92 Jan 7, 2025
21d44b7
Fixes
ammar92 Jan 7, 2025
4a15c79
Merge remote-tracking branch 'origin/fix/update-wappalyzer' into fix/…
ammar92 Jan 7, 2025
2b308d8
Fixes
ammar92 Jan 7, 2025
9df86fa
Merge branch 'main' into fix/update-wappalyzer
underdarknl Jan 10, 2025
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
5 changes: 5 additions & 0 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ repos:
- id: fix-byte-order-marker
- id: pretty-format-json
args: ["--autofix", "--no-ensure-ascii", "--no-sort-keys"]
exclude: |
(?x)(
^boefjes/boefjes/plugins/kat_wappalyzer/technologies.json |
)

- repo: https://github.com/abravalheri/validate-pyproject
rev: v0.23
Expand Down Expand Up @@ -122,6 +126,7 @@ repos:
requirements-.*.txt$ |
retirejs.json$ |
^boefjes/boefjes/plugins/kat_fierce/lists |
^boefjes/boefjes/plugins/kat_wappalyzer/data/.*.json |
^boefjes/tests/examples/inputs/cve-result-without-cvss.json |
^boefjes/tests/examples |
^keiko/glossaries |
Expand Down
6 changes: 2 additions & 4 deletions boefjes/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,9 @@ RUN --mount=type=cache,target=/root/.cache \
pip install --upgrade pip \
&& if [ "$ENVIRONMENT" = "dev" ]; \
then \
grep -v git+https:// requirements-dev.txt | pip install -r /dev/stdin && \
grep git+https:// requirements-dev.txt | pip install -r /dev/stdin ; \
pip install -r requirements-dev.txt; \
else \
grep -v git+https:// requirements.txt | pip install -r /dev/stdin && \
grep git+https:// requirements.txt | pip install -r /dev/stdin ; \
pip install -r requirements.txt; \
fi

FROM dev
Expand Down
Loading
Loading