Skip to content

Wizcli improvements #12446

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

Closed
Closed
Show file tree
Hide file tree
Changes from 7 commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
aeda530
severity mapping
OsamaMahmood May 14, 2025
0f6830e
extract reference link if present in scan output
OsamaMahmood May 14, 2025
d019619
improved parsing and implimented generation of unique id for deduplic…
OsamaMahmood May 14, 2025
f89d858
improved scan result parsers for dir, iac, img scan results
OsamaMahmood May 14, 2025
30ec0e2
improvements
OsamaMahmood May 14, 2025
f8dcca7
enabling dedup in settings.dist.py
OsamaMahmood May 14, 2025
2673b5a
Merge branch 'bugfix' into wizcli-improvements
OsamaMahmood May 14, 2025
58c5687
Merge branch 'DefectDojo:master' into wizcli-improvements
OsamaMahmood Jun 1, 2025
f7e40d3
updated unit test files
OsamaMahmood Jun 2, 2025
b135abf
updated unit test to reflect latest cahnges in the parser
OsamaMahmood Jun 2, 2025
974715f
switched dedp algo to HASH_CODE for wizcli
OsamaMahmood Jun 2, 2025
b5ea466
fixed ruff
OsamaMahmood Jun 2, 2025
dfb95f6
fixed unitests
OsamaMahmood Jun 2, 2025
8576a5f
fixed ruff
OsamaMahmood Jun 2, 2025
59fa30d
Fixed unit test and ruff issues
OsamaMahmood Jun 2, 2025
395fff4
fix to assertions
OsamaMahmood Jun 2, 2025
d78b537
fixed remaining assertions
OsamaMahmood Jun 2, 2025
6a21f00
fixes
OsamaMahmood Jun 2, 2025
a804dcc
updates
OsamaMahmood Jun 2, 2025
ae1cd2a
fixed img test
OsamaMahmood Jun 2, 2025
3d42de8
Update versions in application files
Jun 9, 2025
37d8af6
Merge pull request #12571 from DefectDojo/release/2.47.1
rossops Jun 9, 2025
c41158d
Merge branch 'DefectDojo:master' into wizcli-improvements
OsamaMahmood Jun 12, 2025
7ed4298
added HASHCODE_FIELDS_PER_SCANNER entries for these parser
OsamaMahmood Jun 12, 2025
f9c7365
removed unique id generation and use
OsamaMahmood Jun 12, 2025
16812ad
fixed ruff errors
OsamaMahmood Jun 12, 2025
8dd415e
updated hashcode logic for wizcli scans
OsamaMahmood Jun 13, 2025
1253ef1
type in wizcli iac parser name
OsamaMahmood Jun 13, 2025
8fcb8de
added relase notes
OsamaMahmood Jun 13, 2025
40ad1dd
rephrased to make it clrear to understand
OsamaMahmood Jun 14, 2025
715d098
added fallback value if fixedVersion not found
OsamaMahmood Jun 17, 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
3 changes: 3 additions & 0 deletions dojo/settings/settings.dist.py
Original file line number Diff line number Diff line change
Expand Up @@ -1587,6 +1587,9 @@ def saml2_attrib_map_format(din):
"Kubescape JSON Importer": DEDUPE_ALGO_HASH_CODE,
"Kiuwan SCA Scan": DEDUPE_ALGO_HASH_CODE,
"Rapplex Scan": DEDUPE_ALGO_HASH_CODE,
"Wizcli Img Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL,
"Wizcli Dir Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL,
"Wizcli IAC Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL,
"AppCheck Web Application Scanner": DEDUPE_ALGO_HASH_CODE,
"AWS Inspector2 Scan": DEDUPE_ALGO_UNIQUE_ID_FROM_TOOL_OR_HASH_CODE,
"Legitify Scan": DEDUPE_ALGO_HASH_CODE,
Expand Down
Loading
Loading