You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Passive Scan is a feature in Noir that allows for the collection of various issues and information during the analysis of source code by using specified rules. It uses a YAML-defined file and collects information based on defined regular expressions during the source code analysis, displaying the results. During this process, any data that can be mapped to an endpoint is mapped and shown.
Add a new function by combining #316#317#319 issues.
graph TD
A[Load Rule File] --> B[Validate Rules]
B --> C[Check Issues using Rules in Detector]
C -->|Issue Detected| D[Store in Passive Scan Results]
C -->|No Issue| E[Proceed]
D --> F[Continue with Other Processes]
E --> F
F --> G[Generate Output]
G --> H[Include Passive Scan Results in Output]
Loading
The text was updated successfully, but these errors were encountered:
Passive Scan is a feature in Noir that allows for the collection of various issues and information during the analysis of source code by using specified rules. It uses a YAML-defined file and collects information based on defined regular expressions during the source code analysis, displaying the results. During this process, any data that can be mapped to an endpoint is mapped and shown.
Flags
-p
--use-passive-scan
--passive-scan-rules
Scan remote rule directory:
$NOIR_HOME/passive_scans
e.g~/.config/noir/passive_scans
Scan rule Format (YAML)
Flow
The text was updated successfully, but these errors were encountered: