diff --git a/python-dsl/compiled_rules.json b/python-dsl/compiled_rules.json deleted file mode 100644 index 20fb2017..00000000 --- a/python-dsl/compiled_rules.json +++ /dev/null @@ -1,328 +0,0 @@ -{ - "dockerfile": [ - { - "id": "DOCKER-SEC-001", - "name": "Container Running as Root - Missing USER", - "severity": "HIGH", - "category": "security", - "cwe": "CWE-250", - "message": "Dockerfile does not specify USER instruction. Container will run as root by default, which increases the attack surface if the container is compromised.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "missing_instruction", - "instruction": "USER" - } - }, - { - "id": "DOCKER-SEC-005", - "name": "Secret in Build Argument", - "severity": "CRITICAL", - "category": "security", - "cwe": "CWE-538", - "message": "Build argument name suggests it contains a secret. ARG values are visible in image history via 'docker history'.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "instruction", - "instruction": "ARG", - "arg_name_regex": "(?i)^.*(password|passwd|secret|token|key|apikey|api_key|auth|credential|cred|private|access_token|client_secret).*$" - } - }, - { - "id": "DOCKER-SEC-006", - "name": "Docker Socket Mounted as Volume", - "severity": "CRITICAL", - "category": "security", - "cwe": "CWE-250", - "message": "Dockerfile mounts Docker socket. This gives the container full control over the host Docker daemon, equivalent to root access.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "any_of", - "conditions": [ - { - "type": "instruction", - "instruction": "VOLUME", - "contains": "/var/run/docker.sock" - }, - { - "type": "instruction", - "instruction": "VOLUME", - "contains": "/run/docker.sock" - }, - { - "type": "instruction", - "instruction": "VOLUME", - "contains": "docker.sock" - } - ] - } - }, - { - "id": "DOCKER-BP-001", - "name": "Base Image Uses :latest Tag", - "severity": "MEDIUM", - "category": "best-practice", - "cwe": "", - "message": "Base image uses ':latest' tag or no tag (defaults to latest). This makes builds non-reproducible.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "instruction", - "instruction": "FROM", - "image_tag": "latest" - } - }, - { - "id": "DOCKER-BP-003", - "name": "Deprecated MAINTAINER Instruction", - "severity": "INFO", - "category": "best-practice", - "cwe": "", - "message": "MAINTAINER instruction is deprecated. Use LABEL instead.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "instruction", - "instruction": "MAINTAINER" - } - }, - { - "id": "DOCKER-BP-005", - "name": "apt-get Without --no-install-recommends", - "severity": "LOW", - "category": "best-practice", - "cwe": "", - "message": "apt-get install without --no-install-recommends. This installs unnecessary packages, increasing image size.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "all_of", - "conditions": [ - { - "type": "instruction", - "instruction": "RUN", - "contains": "apt-get install" - }, - { - "type": "instruction", - "instruction": "RUN", - "not_contains": "--no-install-recommends" - } - ] - } - }, - { - "id": "DOCKER-BP-007", - "name": "apk add Without --no-cache", - "severity": "LOW", - "category": "best-practice", - "cwe": "", - "message": "apk add without --no-cache. Package cache remains in image.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "all_of", - "conditions": [ - { - "type": "instruction", - "instruction": "RUN", - "contains": "apk add" - }, - { - "type": "instruction", - "instruction": "RUN", - "not_contains": "--no-cache" - } - ] - } - }, - { - "id": "DOCKER-BP-008", - "name": "pip install Without --no-cache-dir", - "severity": "LOW", - "category": "best-practice", - "cwe": "", - "message": "pip install without --no-cache-dir. Pip cache remains in image.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "all_of", - "conditions": [ - { - "type": "instruction", - "instruction": "RUN", - "contains": "pip install" - }, - { - "type": "instruction", - "instruction": "RUN", - "not_contains": "--no-cache-dir" - } - ] - } - }, - { - "id": "DOCKER-BP-022", - "name": "Missing HEALTHCHECK Instruction", - "severity": "LOW", - "category": "best-practice", - "cwe": "", - "message": "No HEALTHCHECK instruction. Container health cannot be monitored by orchestrators.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "missing_instruction", - "instruction": "HEALTHCHECK" - } - }, - { - "id": "DOCKER-AUD-003", - "name": "Privileged Port Exposed", - "severity": "MEDIUM", - "category": "audit", - "cwe": "", - "message": "Exposing port below 1024 requires root privileges to bind.", - "file_pattern": "Dockerfile*", - "rule_type": "dockerfile", - "matcher": { - "type": "instruction", - "instruction": "EXPOSE", - "port_less_than": 1024 - } - } - ], - "compose": [ - { - "id": "COMPOSE-SEC-001", - "name": "Service Running in Privileged Mode", - "severity": "CRITICAL", - "category": "security", - "cwe": "CWE-250", - "message": "Service is running in privileged mode. This grants container equivalent of root capabilities on the host machine. Can lead to container escapes and privilege escalation.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "privileged", - "equals": true - } - }, - { - "id": "COMPOSE-SEC-002", - "name": "Docker Socket Exposed to Container", - "severity": "CRITICAL", - "category": "security", - "cwe": "CWE-250", - "message": "Service mounts Docker socket. The owner of this socket is root. Giving container access to it is equivalent to giving unrestricted root access to host.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "volumes", - "contains_any": [ - "/var/run/docker.sock", - "/run/docker.sock", - "docker.sock" - ] - } - }, - { - "id": "COMPOSE-SEC-003", - "name": "Seccomp Confinement Disabled", - "severity": "HIGH", - "category": "security", - "cwe": "CWE-284", - "message": "Service disables seccomp profile. Container can use all system calls, increasing attack surface.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "security_opt", - "contains": "seccomp:unconfined" - } - }, - { - "id": "COMPOSE-SEC-006", - "name": "Container Filesystem is Writable", - "severity": "LOW", - "category": "security", - "cwe": "CWE-732", - "message": "Service has writable root filesystem. Consider making it read-only for better security.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_missing", - "key": "read_only" - } - }, - { - "id": "COMPOSE-SEC-007", - "name": "Using Host Network Mode", - "severity": "HIGH", - "category": "security", - "cwe": "CWE-250", - "message": "Service uses host network mode. Container shares host network stack, bypassing network isolation.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "network_mode", - "equals": "host" - } - }, - { - "id": "COMPOSE-SEC-008", - "name": "Dangerous Capability Added", - "severity": "HIGH", - "category": "security", - "cwe": "CWE-250", - "message": "Service adds dangerous capability. These capabilities can be used for container escape or privilege escalation.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "cap_add", - "contains_any": [ - "SYS_ADMIN", - "NET_ADMIN", - "SYS_PTRACE", - "SYS_MODULE", - "DAC_READ_SEARCH", - "ALL" - ] - } - }, - { - "id": "COMPOSE-SEC-009", - "name": "Using Host PID Mode", - "severity": "HIGH", - "category": "security", - "cwe": "CWE-250", - "message": "Service uses host PID namespace. Container can see and potentially signal host processes.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "pid", - "equals": "host" - } - }, - { - "id": "COMPOSE-SEC-010", - "name": "Using Host IPC Mode", - "severity": "MEDIUM", - "category": "security", - "cwe": "CWE-250", - "message": "Service uses host IPC namespace. Container shares inter-process communication with host.", - "file_pattern": "**/docker-compose*.yml", - "rule_type": "compose", - "matcher": { - "type": "service_has", - "key": "ipc", - "equals": "host" - } - } - ] -} \ No newline at end of file diff --git a/rules/docker-compose/no_new_privileges.py b/rules/docker-compose/no_new_privileges.py new file mode 100644 index 00000000..2cc06a6b --- /dev/null +++ b/rules/docker-compose/no_new_privileges.py @@ -0,0 +1,158 @@ +""" +COMPOSE-SEC-009: Missing no-new-privileges Security Option + +Security Impact: MEDIUM +CWE: CWE-732 (Incorrect Permission Assignment for Critical Resource) + +DESCRIPTION: +This rule detects docker-compose services that do not set the `no-new-privileges:true` +security option. This option prevents processes in the container from gaining additional +privileges through setuid or setgid binaries, which can be used for privilege escalation attacks. + +SECURITY IMPLICATIONS: +Without `no-new-privileges`, attackers can: + +1. **Setuid Binary Exploitation**: Exploit setuid/setgid binaries to escalate from a + low-privilege user to root within the container. + +2. **Capability Escalation**: Use setuid binaries to acquire additional Linux capabilities + that can be used for container escape. + +3. **Binary Injection**: Replace legitimate setuid binaries with malicious versions that + grant root access to attackers. + +Real-world attack scenario: +```bash +# Attacker gains shell as www-data user +# Container has sudo with setuid bit +ls -la /usr/bin/sudo +-rwsr-xr-x 1 root root 157192 Jan 20 2021 /usr/bin/sudo + +# Without no-new-privileges, attacker can escalate +/usr/bin/sudo /bin/bash +# Now root in container +``` + +Common setuid binaries that can be exploited: +- /usr/bin/sudo +- /usr/bin/su +- /usr/bin/passwd +- /bin/mount +- /usr/bin/newgrp +- Custom setuid binaries + +VULNERABLE EXAMPLE: +```yaml +version: '3' +services: + web: + image: nginx + # Missing no-new-privileges - VULNERABLE + # Attacker can exploit setuid binaries + user: www-data +``` + +SECURE EXAMPLE: +```yaml +version: '3' +services: + web: + image: nginx + user: www-data + security_opt: + - no-new-privileges:true # SECURE + # Process cannot gain additional privileges +``` + +HOW IT WORKS: +The `no-new-privileges` flag is a Linux kernel feature (PR_SET_NO_NEW_PRIVS) that: +1. Prevents execve() from granting privileges via setuid/setgid bits +2. Blocks gaining capabilities through file capabilities +3. Inherited by child processes +4. Cannot be unset once enabled + +Example of blocked escalation: +```bash +# With no-new-privileges enabled +$ id +uid=1000(appuser) gid=1000(appuser) + +$ /usr/bin/sudo id +sudo: effective uid is not 0, is /usr/bin/sudo on a file system with the 'nosuid' option? + +# Setuid bit ignored - privilege escalation blocked +``` + +WHEN TO USE: +- ✅ All production services +- ✅ Services running as non-root user +- ✅ Services that don't need privilege escalation +- ❌ Services that legitimately need setuid (very rare) + +EXEMPTIONS (rare cases): +Some specialized containers may need setuid functionality: +- Containers that need to switch users (like sshd) +- Init system containers (systemd, s6) +- Development containers with sudo for convenience + +For these cases, document the security exception and implement additional monitoring. + +REMEDIATION: +```yaml +version: '3' +services: + app: + image: myapp + user: "1000:1000" + security_opt: + - no-new-privileges:true + # Additional hardening options + read_only: true + cap_drop: + - ALL + cap_add: + - NET_BIND_SERVICE # Only if needed +``` + +LAYERED SECURITY: +Combine with other security measures: +1. Drop all capabilities (`cap_drop: [ALL]`) +2. Run as non-root user +3. Use read-only filesystem +4. Remove setuid binaries from image +5. Use AppArmor/SELinux profiles + +REFERENCES: +- CWE-732: Incorrect Permission Assignment for Critical Resource +- https://www.kernel.org/doc/Documentation/prctl/no_new_privs.txt +- https://raesene.github.io/blog/2019/06/01/docker-capabilities-and-no-new-privs/ +- https://cheatsheetseries.owasp.org/cheatsheets/Docker_Security_Cheat_Sheet.html#rule-4-add-no-new-privileges-flag +- OWASP A05:2021 - Security Misconfiguration +""" + +from rules.container_decorators import compose_rule +from rules.container_matchers import service_missing + + +@compose_rule( + id="COMPOSE-SEC-011", + name="Missing no-new-privileges Security Option", + severity="MEDIUM", + cwe="CWE-732", + category="security", + message="Service does not have 'no-new-privileges:true' in security_opt. This allows " + "processes to gain additional privileges via setuid/setgid binaries, which can be " + "exploited for privilege escalation attacks." +) +def no_new_privileges(): + """ + Detects services missing the no-new-privileges security option. + + This check looks for services that either: + 1. Have no security_opt defined + 2. Have security_opt but don't include no-new-privileges:true + """ + return service_missing( + key="security_opt", + value_contains="no-new-privileges:true" + ) diff --git a/rules/docker-compose/selinux_disabled.py b/rules/docker-compose/selinux_disabled.py new file mode 100644 index 00000000..b52d7f88 --- /dev/null +++ b/rules/docker-compose/selinux_disabled.py @@ -0,0 +1,206 @@ +""" +COMPOSE-SEC-010: SELinux Separation Disabled + +Security Impact: MEDIUM +CWE: CWE-732 (Incorrect Permission Assignment for Critical Resource) + +DESCRIPTION: +This rule detects docker-compose services that explicitly disable SELinux separation +by setting `security_opt: - label:disable`. SELinux provides mandatory access control +(MAC) that acts as an additional security layer beyond traditional discretionary access +control, significantly limiting the impact of container compromises. + +SECURITY IMPLICATIONS: +Disabling SELinux separation removes a critical defense-in-depth layer: + +1. **Container Escape Prevention**: SELinux confines containers even if they run as root, + preventing access to host resources. + +2. **Lateral Movement Blocking**: Prevents compromised containers from accessing other + containers' files and networks. + +3. **Host Protection**: Restricts container processes from interacting with the host + system, even with root privileges. + +4. **Zero-Day Mitigation**: Provides protection against unknown vulnerabilities by + enforcing mandatory access controls. + +Real-world impact without SELinux: +```bash +# Container running as root with label:disable +# Attacker exploits vulnerability to get shell + +# Without SELinux, can access host filesystem +ls /var/lib/docker/volumes # Can see other containers' data +cat /etc/shadow # Can read host files + +# With SELinux, all of above would be denied: +# Permission denied (SELinux MAC blocks access) +``` + +VULNERABLE EXAMPLE: +```yaml +version: '3' +services: + web: + image: nginx + security_opt: + - label:disable # CRITICAL: Disables SELinux protection + # Container can now bypass SELinux MAC controls +``` + +SECURE EXAMPLE - Default (Recommended): +```yaml +version: '3' +services: + web: + image: nginx + # No security_opt - uses default SELinux labels (SECURE) + # Container is confined by SELinux policy +``` + +SECURE EXAMPLE - Custom Labels: +```yaml +version: '3' +services: + web: + image: nginx + security_opt: + - label:type:container_t # Use standard container type + - label:level:s0:c100,c200 # Custom MCS labels for isolation + # SELinux enabled with custom labels for fine-grained control +``` + +HOW SELINUX PROTECTS CONTAINERS: +1. **Process Confinement**: Container processes run in `container_t` type, which is + restricted from accessing most host resources. + +2. **Multi-Category Security (MCS)**: Each container gets unique category labels + (e.g., `s0:c1,c2`) preventing containers from accessing each other's files. + +3. **Volume Access Control**: Volumes must be labeled correctly for container access, + preventing unauthorized data access. + +4. **Capability Restrictions**: Even with capabilities, SELinux can block dangerous + operations based on type enforcement. + +Example SELinux denial (protection working): +```bash +# Container tries to access host file +cat /etc/shadow +cat: /etc/shadow: Permission denied + +# SELinux audit log shows: +# type=AVC msg=audit(1234567890.123:456): avc: denied { read } +# for pid=1234 comm="cat" name="shadow" dev="sda1" ino=67890 +# scontext=system_u:system_r:container_t:s0:c1,c2 +# tcontext=system_u:object_r:shadow_t:s0 +# tclass=file +``` + +WHEN LABEL:DISABLE MIGHT BE USED (Usually Wrong): +❌ "SELinux causes permission issues" - Fix labels instead of disabling +❌ "Need to access host filesystem" - Use proper volume mounts with correct labels +❌ "Performance concerns" - SELinux overhead is negligible in modern systems +❌ "Don't understand SELinux" - Learn it, don't disable it +✅ Non-SELinux systems (Ubuntu, Debian) - label:disable has no effect + +PROPER SELinux TROUBLESHOOTING: +Instead of disabling, fix the root cause: + +**Issue**: Container can't access volume +```bash +# WRONG: Disable SELinux +security_opt: + - label:disable + +# RIGHT: Label the volume correctly +volumes: + - ./data:/data:z # :z relabels for exclusive container access + # or + - ./data:/data:Z # :Z relabels for shared access +``` + +**Issue**: Need specific file access +```bash +# Use semanage to create policy +sudo semanage fcontext -a -t container_file_t "/host/path(/.*)?" +sudo restorecon -Rv /host/path +``` + +**Issue**: Custom operations needed +```bash +# Create custom SELinux policy module instead of disabling +# Much more secure than blanket disable +``` + +DETECTION AND MONITORING: +```bash +# Check if SELinux is enabled for container +docker inspect | grep -i selinux + +# View SELinux denials +sudo ausearch -m avc -ts recent + +# Check container's SELinux context +ps -eZ | grep containerd +``` + +REMEDIATION: +1. Remove `label:disable` from security_opt +2. If permission issues occur, relabel volumes with :z or :Z +3. For custom needs, create proper SELinux policies +4. Use `audit2allow` to generate policies from denials +5. Test in permissive mode before enforcing + +COMBINING WITH OTHER SECURITY: +```yaml +version: '3' +services: + hardened-app: + image: myapp + user: "1000:1000" + security_opt: + - no-new-privileges:true + # SELinux enabled by default (no label:disable) + read_only: true + cap_drop: + - ALL + cap_add: + - NET_BIND_SERVICE +``` + +REFERENCES: +- CWE-732: Incorrect Permission Assignment for Critical Resource +- https://www.redhat.com/en/topics/linux/what-is-selinux +- https://docs.docker.com/storage/bind-mounts/#configure-the-selinux-label +- SELinux Project: https://selinuxproject.org/ +- OWASP A05:2021 - Security Misconfiguration +""" + +from rules.container_decorators import compose_rule +from rules.container_matchers import service_has + + +@compose_rule( + id="COMPOSE-SEC-012", + name="SELinux Separation Disabled", + severity="MEDIUM", + cwe="CWE-732", + category="security", + message="Service has 'label:disable' in security_opt, which disables SELinux mandatory " + "access control. This removes a critical security layer and increases the impact " + "of container compromises. Remove label:disable or use custom SELinux labels instead." +) +def selinux_disabled(): + """ + Detects services that explicitly disable SELinux separation. + + Matches services with security_opt containing: + - label:disable + - label=disable + """ + return service_has( + key="security_opt", + contains="label:disable" + ) diff --git a/rules/docker/avoid_apk_upgrade.py b/rules/docker/avoid_apk_upgrade.py new file mode 100644 index 00000000..8946c7d2 --- /dev/null +++ b/rules/docker/avoid_apk_upgrade.py @@ -0,0 +1,15 @@ +"""DOCKER-BP-007: Avoid apk upgrade in Dockerfile""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-028", + name="Avoid apk upgrade", + severity="MEDIUM", + category="best-practice", + message="Avoid 'apk upgrade' in Dockerfiles. Use specific base image versions instead for reproducible builds." +) +def avoid_apk_upgrade(): + return instruction(type="RUN", contains="apk upgrade") diff --git a/rules/docker/avoid_apt_get_upgrade.py b/rules/docker/avoid_apt_get_upgrade.py new file mode 100644 index 00000000..804c651f --- /dev/null +++ b/rules/docker/avoid_apt_get_upgrade.py @@ -0,0 +1,61 @@ +""" +DOCKER-BP-006: Avoid apt-get upgrade in Dockerfile + +Security Impact: MEDIUM +Best Practice Violation + +DESCRIPTION: +Detects use of `apt-get upgrade` or `apt-get dist-upgrade` in Dockerfiles. +Running system upgrades in Docker builds creates unpredictable, non-reproducible images +and can introduce breaking changes or security vulnerabilities. + +WHY THIS IS PROBLEMATIC: +1. **Non-Reproducible Builds**: Different build times produce different images +2. **Breaks Caching**: Forces rebuild of all subsequent layers +3. **Unpredictable Versions**: Can install untested package versions +4. **Security Risk**: May introduce vulnerabilities or break dependencies + +SECURE ALTERNATIVE: +Use specific base image tags with known package versions, then install only needed packages. + +VULNERABLE EXAMPLE: +```dockerfile +FROM ubuntu:latest +RUN apt-get update && apt-get upgrade -y # ❌ Bad practice +``` + +SECURE EXAMPLE: +```dockerfile +FROM ubuntu:22.04 # Specific version +RUN apt-get update && apt-get install -y nginx=1.18.0-0ubuntu1 +``` + +REMEDIATION: +1. Remove apt-get upgrade commands +2. Use specific base image versions +3. Install specific package versions when needed +4. Rebuild images periodically with updated base images + +REFERENCES: +- Docker Best Practices +- hadolint DL3005 +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-BP-006", + name="Avoid apt-get upgrade", + severity="MEDIUM", + cwe="", + category="best-practice", + message="Avoid apt-get upgrade in Dockerfiles. Use specific base image versions instead." +) +def avoid_apt_get_upgrade(): + return any_of( + instruction(type="RUN", contains="apt-get upgrade"), + instruction(type="RUN", contains="apt-get dist-upgrade") + ) diff --git a/rules/docker/avoid_dnf_update.py b/rules/docker/avoid_dnf_update.py new file mode 100644 index 00000000..c94b8e1f --- /dev/null +++ b/rules/docker/avoid_dnf_update.py @@ -0,0 +1,15 @@ +"""DOCKER-BP-009: Avoid dnf update in Dockerfile""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-009", + name="Avoid dnf update", + severity="MEDIUM", + category="best-practice", + message="Avoid 'dnf update' in Dockerfiles. Use specific base image versions for reproducible builds." +) +def avoid_dnf_update(): + return instruction(type="RUN", contains="dnf update") diff --git a/rules/docker/avoid_platform_with_from.py b/rules/docker/avoid_platform_with_from.py new file mode 100644 index 00000000..e38cd6ee --- /dev/null +++ b/rules/docker/avoid_platform_with_from.py @@ -0,0 +1,15 @@ +"""DOCKER-BP-027: Avoid --platform Flag with FROM""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-027", + name="Avoid --platform Flag with FROM", + severity="LOW", + category="best-practice", + message="FROM with --platform flag reduces portability. Let Docker handle platform selection." +) +def avoid_platform_with_from(): + return instruction(type="FROM", contains="--platform") diff --git a/rules/docker/avoid_yum_update.py b/rules/docker/avoid_yum_update.py new file mode 100644 index 00000000..46e84b19 --- /dev/null +++ b/rules/docker/avoid_yum_update.py @@ -0,0 +1,15 @@ +"""DOCKER-BP-008: Avoid yum update in Dockerfile""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-029", + name="Avoid yum update", + severity="MEDIUM", + category="best-practice", + message="Avoid 'yum update' in Dockerfiles. Use specific base image versions for reproducible builds." +) +def avoid_yum_update(): + return instruction(type="RUN", contains="yum update") diff --git a/rules/docker/avoid_zypper_update.py b/rules/docker/avoid_zypper_update.py new file mode 100644 index 00000000..a789cf82 --- /dev/null +++ b/rules/docker/avoid_zypper_update.py @@ -0,0 +1,15 @@ +"""DOCKER-BP-019: Avoid zypper update in Dockerfile""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-019", + name="Avoid zypper update", + severity="MEDIUM", + category="best-practice", + message="Avoid 'zypper update' in Dockerfiles. Use specific base image versions for reproducible builds." +) +def avoid_zypper_update(): + return instruction(type="RUN", contains="zypper update") diff --git a/rules/docker/dockerfile_source_not_pinned.py b/rules/docker/dockerfile_source_not_pinned.py new file mode 100644 index 00000000..bd47a616 --- /dev/null +++ b/rules/docker/dockerfile_source_not_pinned.py @@ -0,0 +1,35 @@ +""" +DOCKER-AUD-001: Dockerfile Source Not Pinned + +Audit: Image digest pinning + +DESCRIPTION: +Detects FROM instructions without digest pinning (@sha256:...). +Digest pinning ensures exact image reproducibility. + +EXAMPLE: +```dockerfile +# Not pinned - tag can change +FROM nginx:1.24.0 + +# Pinned with digest - immutable +FROM nginx:1.24.0@sha256:abcd1234... +``` + +REMEDIATION: +Pin images with digests for critical production builds. +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-AUD-001", + name="Dockerfile Source Not Pinned", + severity="LOW", + category="audit", + message="FROM instruction without digest pinning. Consider using @sha256:... for immutable builds." +) +def dockerfile_source_not_pinned(): + return instruction(type="FROM", missing_digest=True) diff --git a/rules/docker/invalid_port.py b/rules/docker/invalid_port.py new file mode 100644 index 00000000..98fb0a8c --- /dev/null +++ b/rules/docker/invalid_port.py @@ -0,0 +1,39 @@ +""" +DOCKER-COR-002: Invalid Port Number + +Correctness: Port number validation + +DESCRIPTION: +Detects EXPOSE instructions with invalid port numbers. +Valid ports are 1-65535. + +VULNERABLE EXAMPLE: +```dockerfile +EXPOSE 0 +EXPOSE 70000 +``` + +SECURE EXAMPLE: +```dockerfile +EXPOSE 8080 +EXPOSE 443 +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-COR-002", + name="Invalid Port Number", + severity="HIGH", + category="correctness", + message="EXPOSE instruction has invalid port number. Valid ports are 1-65535." +) +def invalid_port(): + return any_of( + instruction(type="EXPOSE", port_less_than=1), + instruction(type="EXPOSE", port_greater_than=65535) + ) diff --git a/rules/docker/missing_apt_assume_yes.py b/rules/docker/missing_apt_assume_yes.py new file mode 100644 index 00000000..ab8bf8aa --- /dev/null +++ b/rules/docker/missing_apt_assume_yes.py @@ -0,0 +1,20 @@ +"""DOCKER-BP-021: Missing -y flag for apt-get""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-021", + name="Missing -y flag for apt-get", + severity="LOW", + category="best-practice", + message="apt-get install without -y flag. Add -y or --yes for non-interactive builds." +) +def missing_apt_assume_yes(): + return all_of( + instruction(type="RUN", contains="apt-get install"), + instruction(type="RUN", not_contains="-y"), + instruction(type="RUN", not_contains="--yes") + ) diff --git a/rules/docker/missing_dnf_assume_yes.py b/rules/docker/missing_dnf_assume_yes.py new file mode 100644 index 00000000..91ce7eac --- /dev/null +++ b/rules/docker/missing_dnf_assume_yes.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-026: Missing -y flag for dnf""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-026", + name="Missing -y flag for dnf", + severity="LOW", + category="best-practice", + message="dnf install without -y flag. Add -y for non-interactive builds." +) +def missing_dnf_assume_yes(): + return all_of( + instruction(type="RUN", contains="dnf install"), + instruction(type="RUN", not_contains="-y") + ) diff --git a/rules/docker/missing_dnf_clean_all.py b/rules/docker/missing_dnf_clean_all.py new file mode 100644 index 00000000..298d7388 --- /dev/null +++ b/rules/docker/missing_dnf_clean_all.py @@ -0,0 +1,35 @@ +""" +DOCKER-BP-013: Missing dnf clean all + +Best Practice: Clean package manager cache + +DESCRIPTION: +Detects dnf install commands without subsequent 'dnf clean all'. +Package manager caches unnecessarily increase image size. + +REMEDIATION: +Always run 'dnf clean all' after 'dnf install' in the same RUN instruction. + +EXAMPLE: +```dockerfile +RUN dnf install -y nginx && dnf clean all +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-013", + name="Missing dnf clean all", + severity="LOW", + category="best-practice", + message="RUN uses 'dnf install' without 'dnf clean all'. This increases image size." +) +def missing_dnf_clean_all(): + return all_of( + instruction(type="RUN", contains="dnf install"), + instruction(type="RUN", not_contains="dnf clean all") + ) diff --git a/rules/docker/missing_image_version.py b/rules/docker/missing_image_version.py new file mode 100644 index 00000000..e76df751 --- /dev/null +++ b/rules/docker/missing_image_version.py @@ -0,0 +1,43 @@ +""" +DOCKER-BP-015: Missing Image Version + +Best Practice: Always specify image versions + +DESCRIPTION: +Detects FROM instructions using 'latest' tag or no tag at all. +Using latest or untagged images creates non-reproducible builds and +potential security/stability issues. + +VULNERABLE EXAMPLE: +```dockerfile +FROM ubuntu # No tag = latest +FROM nginx:latest # Explicit latest +``` + +SECURE EXAMPLE: +```dockerfile +FROM ubuntu:22.04 +FROM nginx:1.24.0-alpine +``` + +REMEDIATION: +Always specify explicit version tags for base images. +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-BP-015", + name="Missing Image Version", + severity="HIGH", + category="best-practice", + message="FROM instruction uses 'latest' tag or no tag. Specify explicit versions for reproducible builds." +) +def missing_image_version(): + return any_of( + instruction(type="FROM", image_tag="latest"), + instruction(type="FROM", missing_digest=True) + ) diff --git a/rules/docker/missing_yum_assume_yes.py b/rules/docker/missing_yum_assume_yes.py new file mode 100644 index 00000000..5a47592a --- /dev/null +++ b/rules/docker/missing_yum_assume_yes.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-025: Missing -y flag for yum""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-025", + name="Missing -y flag for yum", + severity="LOW", + category="best-practice", + message="yum install without -y flag. Add -y for non-interactive builds." +) +def missing_yum_assume_yes(): + return all_of( + instruction(type="RUN", contains="yum install"), + instruction(type="RUN", not_contains="-y") + ) diff --git a/rules/docker/missing_yum_clean_all.py b/rules/docker/missing_yum_clean_all.py new file mode 100644 index 00000000..f0955875 --- /dev/null +++ b/rules/docker/missing_yum_clean_all.py @@ -0,0 +1,39 @@ +""" +DOCKER-BP-012: Missing yum clean all + +Best Practice: Clean package manager cache + +DESCRIPTION: +Detects yum install commands without subsequent 'yum clean all'. +Package manager caches unnecessarily increase image size. + +EXAMPLE: +```dockerfile +# Bad - leaves cache +RUN yum install -y nginx + +# Good - cleans cache +RUN yum install -y nginx && yum clean all +``` + +REMEDIATION: +Always run 'yum clean all' after 'yum install' in the same RUN instruction. +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-012", + name="Missing yum clean all", + severity="LOW", + category="best-practice", + message="RUN instruction uses 'yum install' without 'yum clean all'. This leaves package cache and increases image size." +) +def missing_yum_clean_all(): + return all_of( + instruction(type="RUN", contains="yum install"), + instruction(type="RUN", not_contains="yum clean all") + ) diff --git a/rules/docker/missing_zypper_clean.py b/rules/docker/missing_zypper_clean.py new file mode 100644 index 00000000..7a1943de --- /dev/null +++ b/rules/docker/missing_zypper_clean.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-020: Missing zypper clean""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-020", + name="Missing zypper clean", + severity="LOW", + category="best-practice", + message="RUN uses 'zypper install' without 'zypper clean'. This increases image size." +) +def missing_zypper_clean(): + return all_of( + instruction(type="RUN", contains="zypper install"), + instruction(type="RUN", not_contains="zypper clean") + ) diff --git a/rules/docker/multiple_cmd_instructions.py b/rules/docker/multiple_cmd_instructions.py new file mode 100644 index 00000000..dc877abf --- /dev/null +++ b/rules/docker/multiple_cmd_instructions.py @@ -0,0 +1,28 @@ +""" +DOCKER-COR-003: Multiple CMD Instructions + +Correctness: Only last CMD takes effect + +DESCRIPTION: +Detects multiple CMD instructions. Only the last one is used. + +EXAMPLE: +```dockerfile +CMD ["echo", "first"] # Ignored +CMD ["echo", "second"] # Used +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-COR-003", + name="Multiple CMD Instructions", + severity="MEDIUM", + category="correctness", + message="Multiple CMD instructions detected. Only the last one takes effect." +) +def multiple_cmd_instructions(): + return instruction(type="CMD") diff --git a/rules/docker/multiple_entrypoint_instructions.py b/rules/docker/multiple_entrypoint_instructions.py new file mode 100644 index 00000000..f8886dfd --- /dev/null +++ b/rules/docker/multiple_entrypoint_instructions.py @@ -0,0 +1,40 @@ +""" +DOCKER-COR-001: Multiple ENTRYPOINT Instructions + +Correctness Issue: Only last ENTRYPOINT takes effect + +DESCRIPTION: +Detects Dockerfiles with multiple ENTRYPOINT instructions. Docker only honors +the last ENTRYPOINT, making earlier ones misleading and potentially causing +unexpected runtime behavior. + +EXAMPLE: +```dockerfile +FROM ubuntu +ENTRYPOINT ["/bin/sh"] # Ignored +ENTRYPOINT ["/app/start.sh"] # This one is used +``` + +REMEDIATION: +Keep only one ENTRYPOINT instruction per Dockerfile (or per build stage). + +REFERENCES: +- Docker Documentation: ENTRYPOINT instruction +- hadolint DL4003 +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-COR-001", + name="Multiple ENTRYPOINT Instructions", + severity="MEDIUM", + category="correctness", + message="Dockerfile has multiple ENTRYPOINT instructions. Only the last one takes effect, making earlier ones misleading." +) +def multiple_entrypoint_instructions(): + # Note: This is a simplified check - ideally would count occurrences + # For now, this flags any ENTRYPOINT which helps identify the issue + return instruction(type="ENTRYPOINT") diff --git a/rules/docker/no_sudo_in_dockerfile.py b/rules/docker/no_sudo_in_dockerfile.py new file mode 100644 index 00000000..7ae81732 --- /dev/null +++ b/rules/docker/no_sudo_in_dockerfile.py @@ -0,0 +1,143 @@ +""" +DOCKER-SEC-007: Sudo Usage in Dockerfile + +Security Impact: MEDIUM +CWE: CWE-250 (Execution with Unnecessary Privileges) + +DESCRIPTION: +This rule detects the use of 'sudo' in RUN instructions within a Dockerfile. +Using sudo in Docker containers is an anti-pattern that indicates confusion about +Docker's privilege model and can introduce security vulnerabilities. + +SECURITY IMPLICATIONS: +Using sudo in Dockerfiles is problematic because: + +1. **Unnecessary Complexity**: Docker containers already run commands as root by default + during build time, making sudo redundant and confusing. + +2. **False Sense of Security**: Developers may assume sudo provides security isolation, + when in reality it adds no protection in a container context. + +3. **Privilege Escalation Path**: If sudo is installed and configured in the final image, + it provides an easy privilege escalation mechanism if an attacker gains access. + +4. **Attack Surface**: sudo binary itself has had security vulnerabilities (CVE-2021-3156 + "Baron Samedit") that can be exploited if present in the container. + +WHY SUDO DOESN'T MAKE SENSE IN DOCKER: +```dockerfile +# WRONG: Redundant sudo during build (already root) +RUN sudo apt-get update + +# CORRECT: Just run the command (build runs as root) +RUN apt-get update + +# WRONG: Using sudo to run as different user +RUN sudo -u appuser /app/script.sh + +# CORRECT: Use USER instruction instead +USER appuser +RUN /app/script.sh +``` + +VULNERABLE EXAMPLE: +```dockerfile +FROM ubuntu:latest + +# Installing sudo (unnecessary and dangerous) +RUN apt-get update && apt-get install -y sudo + +# Using sudo in RUN (redundant - already root) +RUN sudo apt-get install -y nginx + +# Creating sudoers file (privilege escalation risk) +RUN echo "appuser ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers + +USER appuser +# Now attacker with access can easily become root +CMD ["sudo", "/bin/bash"] +``` + +SECURE ALTERNATIVES: +```dockerfile +FROM ubuntu:latest + +# Install packages without sudo (we're already root) +RUN apt-get update && apt-get install -y nginx \\ + && apt-get clean + +# Create non-root user +RUN useradd -r -s /bin/false appuser + +# Switch to non-root for runtime +USER appuser + +# Run application as non-root +CMD ["nginx", "-g", "daemon off;"] +``` + +WHEN YOU THINK YOU NEED SUDO: + +**Scenario 1: "I need to install packages"** +- You're already root during build - no sudo needed +- Just use `RUN apt-get install package` + +**Scenario 2: "I need to run as different user"** +- Use `USER username` instruction instead +- Much cleaner and more explicit + +**Scenario 3: "Runtime needs elevated permissions"** +- This is a design smell - containers should run as non-root +- Reconsider architecture or use capabilities instead + +**Scenario 4: "CI/CD needs to run Docker commands"** +- Don't mount Docker socket - use Kaniko, BuildKit remote, or DooD proxy +- Never rely on sudo for container orchestration + +REMEDIATION: +1. Remove all `sudo` commands from RUN instructions +2. Remove sudo package from installed dependencies +3. Use USER instruction for privilege changes +4. Run containers as non-root users +5. Use Linux capabilities if elevated permissions are truly needed + +REFERENCES: +- CWE-250: Execution with Unnecessary Privileges +- https://docs.docker.com/develop/develop-images/dockerfile_best-practices/#user +- Docker Security Best Practices +- CVE-2021-3156 (sudo vulnerability) +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-SEC-007", + name="Sudo Usage in Dockerfile", + severity="MEDIUM", + cwe="CWE-250", + category="security", + message="Dockerfile uses 'sudo' in RUN instructions. This is unnecessary during " + "build (already root) and increases security risk if sudo remains in the " + "final image. Use USER instruction for privilege changes instead." +) +def no_sudo_in_dockerfile(): + """ + Detects usage of sudo in RUN instructions. + + Matches patterns like: + - RUN sudo apt-get install + - RUN sudo -u user command + - RUN sudo command + + """ + return any_of( + instruction(type="RUN", contains="sudo "), + instruction(type="RUN", regex=r"sudo\s+"), + instruction(type="RUN", contains="sudo\n"), + instruction(type="RUN", contains="sudo;"), + instruction(type="RUN", contains="sudo&&"), + instruction(type="RUN", contains="sudo||") + ) diff --git a/rules/docker/nonsensical_command.py b/rules/docker/nonsensical_command.py new file mode 100644 index 00000000..c92ac55c --- /dev/null +++ b/rules/docker/nonsensical_command.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-022: Nonsensical Command (cd in same RUN)""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-BP-030", + name="Nonsensical Command", + severity="LOW", + category="best-practice", + message="RUN command uses 'cd' which doesn't persist. Use WORKDIR instead." +) +def nonsensical_command(): + return any_of( + instruction(type="RUN", regex=r";\s*cd\s+"), + instruction(type="RUN", regex=r"&&\s*cd\s+") + ) diff --git a/rules/docker/prefer_apt_get.py b/rules/docker/prefer_apt_get.py new file mode 100644 index 00000000..d43b3a71 --- /dev/null +++ b/rules/docker/prefer_apt_get.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-023: Prefer apt-get over apt""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-023", + name="Prefer apt-get over apt", + severity="LOW", + category="best-practice", + message="Use apt-get instead of apt for better script stability in Dockerfiles." +) +def prefer_apt_get(): + return all_of( + instruction(type="RUN", regex=r"\bapt\s+install"), + instruction(type="RUN", not_contains="apt-get") + ) diff --git a/rules/docker/prefer_copy_over_add.py b/rules/docker/prefer_copy_over_add.py new file mode 100644 index 00000000..ee8d9e44 --- /dev/null +++ b/rules/docker/prefer_copy_over_add.py @@ -0,0 +1,53 @@ +""" +DOCKER-BP-011: Prefer COPY Over ADD + +Best Practice: Use COPY for simple file operations + +DESCRIPTION: +Detects use of ADD instruction when COPY would suffice. ADD has implicit behavior +(auto-extraction of tar archives, URL downloading) that can be surprising and +create security risks. + +WHY COPY IS BETTER: +- More transparent and predictable +- Doesn't auto-extract archives unexpectedly +- Doesn't perform network operations +- Better build cache utilization + +VULNERABLE EXAMPLE: +```dockerfile +ADD app.tar.gz /app/ # ❌ Auto-extracts (might be unintended) +ADD https://example.com/file /tmp/ # ❌ Downloads from network +``` + +SECURE EXAMPLE: +```dockerfile +COPY app.tar.gz /app/ # ✅ Just copies the file +RUN tar xzf /app/app.tar.gz # ✅ Explicit extraction +``` + +WHEN TO USE ADD: +- Only when you specifically need auto-extraction +- Document why ADD is needed + +REMEDIATION: +Replace ADD with COPY unless you specifically need ADD's special features. + +REFERENCES: +- Docker Best Practices +- hadolint DL3020 +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-011", + name="Prefer COPY Over ADD", + severity="LOW", + category="best-practice", + message="Use COPY instead of ADD for simple file operations. ADD has implicit behavior that can be surprising." +) +def prefer_copy_over_add(): + return instruction(type="ADD") diff --git a/rules/docker/prefer_json_notation.py b/rules/docker/prefer_json_notation.py new file mode 100644 index 00000000..5f124150 --- /dev/null +++ b/rules/docker/prefer_json_notation.py @@ -0,0 +1,38 @@ +""" +DOCKER-BP-016: Prefer JSON Notation for CMD/ENTRYPOINT + +Best Practice: Use exec form over shell form + +DESCRIPTION: +Shell form wraps commands in /bin/sh -c, which: +- Doesn't pass signals correctly +- Creates an extra shell process +- Makes PID 1 the shell instead of your app + +EXAMPLE: +```dockerfile +# Shell form - not recommended +CMD nginx -g "daemon off;" + +# Exec form (JSON) - recommended +CMD ["nginx", "-g", "daemon off;"] +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import any_of + + +@dockerfile_rule( + id="DOCKER-BP-016", + name="Prefer JSON Notation for CMD/ENTRYPOINT", + severity="LOW", + category="best-practice", + message="Use JSON notation (exec form) for CMD/ENTRYPOINT for proper signal handling." +) +def prefer_json_notation(): + return any_of( + instruction(type="CMD", command_form="shell"), + instruction(type="ENTRYPOINT", command_form="shell") + ) diff --git a/rules/docker/remove_package_lists.py b/rules/docker/remove_package_lists.py new file mode 100644 index 00000000..20812fc5 --- /dev/null +++ b/rules/docker/remove_package_lists.py @@ -0,0 +1,36 @@ +""" +DOCKER-BP-014: Remove apt Package Lists + +Best Practice: Clean apt package lists after installation + +DESCRIPTION: +Detects apt-get install without removing /var/lib/apt/lists/*. +Package lists are not needed at runtime and waste space. + +SECURE EXAMPLE: +```dockerfile +RUN apt-get update && apt-get install -y nginx \\ + && rm -rf /var/lib/apt/lists/* +``` + +REMEDIATION: +Add 'rm -rf /var/lib/apt/lists/*' after apt-get install. +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-014", + name="Remove apt Package Lists", + severity="LOW", + category="best-practice", + message="apt-get install without removing /var/lib/apt/lists/*. This wastes image space." +) +def remove_package_lists(): + return all_of( + instruction(type="RUN", contains="apt-get install"), + instruction(type="RUN", not_contains="/var/lib/apt/lists/") + ) diff --git a/rules/docker/set_pipefail.py b/rules/docker/set_pipefail.py new file mode 100644 index 00000000..c4e53560 --- /dev/null +++ b/rules/docker/set_pipefail.py @@ -0,0 +1,42 @@ +""" +DOCKER-BP-010: Missing pipefail in Shell Commands + +Best Practice: Shell Error Handling + +DESCRIPTION: +Detects RUN instructions using shell pipes without `set -o pipefail`. +Without pipefail, a command pipeline only returns the exit code of the last command, +masking failures in earlier commands. + +VULNERABLE EXAMPLE: +```dockerfile +RUN wget -O - https://example.com | tar xz # ❌ wget failure ignored +``` + +SECURE EXAMPLE: +```dockerfile +RUN set -o pipefail && wget -O - https://example.com | tar xz # ✅ Catches wget failures +``` + +REFERENCES: +- hadolint DL4006 +- Bash Manual: set builtin +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-010", + name="Missing pipefail in Shell Commands", + severity="MEDIUM", + category="best-practice", + message="RUN instruction uses pipes without 'set -o pipefail'. This masks failures in piped commands." +) +def set_pipefail(): + return all_of( + instruction(type="RUN", contains="|"), + instruction(type="RUN", not_contains="set -o pipefail") + ) diff --git a/rules/docker/use_absolute_workdir.py b/rules/docker/use_absolute_workdir.py new file mode 100644 index 00000000..cf5b3bee --- /dev/null +++ b/rules/docker/use_absolute_workdir.py @@ -0,0 +1,31 @@ +""" +DOCKER-BP-018: Use Absolute Path in WORKDIR + +Best Practice: WORKDIR should use absolute paths + +DESCRIPTION: +Relative paths in WORKDIR can be confusing and error-prone. + +EXAMPLE: +```dockerfile +# Bad - relative path +WORKDIR app + +# Good - absolute path +WORKDIR /app +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction + + +@dockerfile_rule( + id="DOCKER-BP-018", + name="Use Absolute Path in WORKDIR", + severity="LOW", + category="best-practice", + message="WORKDIR should use absolute paths starting with /." +) +def use_absolute_workdir(): + return instruction(type="WORKDIR", workdir_not_absolute=True) diff --git a/rules/docker/use_either_wget_or_curl.py b/rules/docker/use_either_wget_or_curl.py new file mode 100644 index 00000000..3f01a5c2 --- /dev/null +++ b/rules/docker/use_either_wget_or_curl.py @@ -0,0 +1,19 @@ +"""DOCKER-BP-024: Install Only One of wget or curl""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction +from rules.container_combinators import all_of + + +@dockerfile_rule( + id="DOCKER-BP-024", + name="Install Only One of wget or curl", + severity="LOW", + category="best-practice", + message="Installing both wget and curl wastes space. Choose one tool for downloads." +) +def use_either_wget_or_curl(): + return all_of( + instruction(type="RUN", contains="wget"), + instruction(type="RUN", contains="curl") + ) diff --git a/rules/docker/use_workdir.py b/rules/docker/use_workdir.py new file mode 100644 index 00000000..80c96020 --- /dev/null +++ b/rules/docker/use_workdir.py @@ -0,0 +1,40 @@ +""" +DOCKER-BP-017: Use WORKDIR Instead of cd + +Best Practice: Use WORKDIR for changing directories + +DESCRIPTION: +Using 'cd' in RUN commands is error-prone and doesn't persist. +WORKDIR is explicit and affects all subsequent instructions. + +EXAMPLE: +```dockerfile +# Bad - cd doesn't persist +RUN cd /app && npm install + +# Good - WORKDIR persists +WORKDIR /app +RUN npm install +``` +""" + +from rules.container_decorators import dockerfile_rule +from rules.container_matchers import instruction, missing +from rules.container_combinators import all_of, any_of + + +@dockerfile_rule( + id="DOCKER-BP-017", + name="Use WORKDIR Instead of cd", + severity="LOW", + category="best-practice", + message="Use WORKDIR instruction instead of 'cd' in RUN commands." +) +def use_workdir(): + return all_of( + any_of( + instruction(type="RUN", contains=" cd "), + instruction(type="RUN", regex=r"\bcd\s+") + ), + missing(instruction="WORKDIR") + ) diff --git a/sast-engine/Dockerfile b/sast-engine/Dockerfile new file mode 100644 index 00000000..5a975eb5 --- /dev/null +++ b/sast-engine/Dockerfile @@ -0,0 +1,23 @@ +FROM ubuntu:latest + +# Missing USER instruction - should trigger DOCKER-SEC-001 +# Using :latest tag - should trigger DOCKER-BP-001 + +RUN apt-get update && apt-get upgrade -y && \ + apt-get install -y nginx sudo + +# Using sudo - should trigger DOCKER-SEC-007 +RUN sudo chown -R www-data:www-data /var/www + +# No pipefail - should trigger DOCKER-BP-010 +RUN wget https://example.com/file.tar.gz | tar xz + +# Missing yum clean all +RUN yum install -y httpd + +# Last USER is root - should trigger DOCKER-SEC-009 +USER root + +EXPOSE 80 + +CMD ["nginx", "-g", "daemon off;"] diff --git a/sast-engine/coverage.out b/sast-engine/coverage.out deleted file mode 100644 index d3cc5b27..00000000 --- a/sast-engine/coverage.out +++ /dev/null @@ -1,4111 +0,0 @@ -mode: set -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:8.83,11.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:11.46,13.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:13.31,15.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:18.2,18.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:21.81,25.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:27.87,31.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:33.83,36.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:36.46,38.54 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:38.54,39.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:39.30,41.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:41.10,41.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:41.40,43.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:46.2,46.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:49.81,51.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:51.46,56.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:57.2,57.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:60.81,63.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:63.46,65.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:65.56,67.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/python/parse_statement.go:70.2,70.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:366.45,368.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:379.64,382.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:382.28,384.45 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:384.45,386.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:386.55,388.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:392.2,392.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:397.46,399.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:399.13,401.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:402.2,402.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:407.42,409.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:409.13,411.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/frameworks.go:412.2,412.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:82.37,84.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:87.40,89.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:92.35,94.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:97.41,99.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:102.42,103.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:104.98,105.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:106.10,107.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:112.48,114.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:118.50,121.44 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:121.44,123.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:125.2,125.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:125.42,127.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:129.2,129.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:144.36,149.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:152.67,153.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:153.19,155.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:156.2,156.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:160.67,161.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:161.19,163.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:164.2,164.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:169.64,170.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:170.41,172.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:173.2,173.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:178.64,179.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:179.41,181.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:182.2,182.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:186.58,188.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:191.55,193.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:196.51,199.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:199.34,201.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:203.2,203.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:203.34,205.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:207.2,208.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:208.30,210.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:212.2,212.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:252.62,256.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:256.34,258.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:258.21,260.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:263.3,263.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:263.37,265.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:268.2,268.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:290.54,295.34 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:295.34,297.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:298.2,298.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:298.34,300.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:301.2,304.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:304.34,306.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:306.43,308.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:312.2,312.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:312.34,314.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:314.43,316.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:320.2,320.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:320.34,321.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:321.36,323.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:327.2,327.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:327.34,328.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:328.36,330.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/statement.go:333.2,333.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:112.42,116.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:119.69,121.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:124.60,127.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:130.87,132.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:132.19,134.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:135.2,135.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:139.78,141.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:141.19,143.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:144.2,144.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:148.87,150.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:150.19,152.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:153.2,153.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:157.90,159.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:159.19,161.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:162.2,162.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/stdlib_types.go:166.44,168.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:45.39,47.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:50.46,52.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:55.48,57.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:60.45,62.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:98.56,105.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:108.77,109.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:109.39,111.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:112.2,112.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:117.67,119.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:122.56,124.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:124.34,125.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:125.23,127.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:129.2,129.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:133.60,134.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:134.22,136.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:137.2,137.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:141.46,143.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:146.68,148.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:148.42,149.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:149.35,151.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:153.2,153.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:157.70,159.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:159.42,160.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:160.37,162.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:164.2,164.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:168.67,170.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:170.42,171.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:171.34,173.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:175.2,175.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:179.60,180.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:180.21,182.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:185.2,185.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:185.37,186.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:186.21,188.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:191.2,191.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:195.63,196.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:196.37,197.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:197.21,199.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:201.2,201.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:205.65,208.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:211.51,214.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:217.43,219.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:222.50,224.44 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:224.44,225.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:225.35,226.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:226.24,228.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:232.2,232.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/taint_summary.go:236.49,238.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:88.32,96.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:104.53,106.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:106.41,108.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:111.2,111.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:111.48,113.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:122.68,124.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:134.57,135.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:135.48,137.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:138.2,138.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:149.57,150.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:150.41,152.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:153.2,153.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:187.42,194.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:202.66,209.57 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:209.57,211.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:221.75,224.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:239.47,244.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:251.51,253.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:262.59,265.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:268.49,269.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:269.26,270.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:270.16,272.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:274.2,274.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:278.55,280.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:284.49,286.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:286.44,287.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:287.27,289.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/core/types.go:291.2,291.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:22.34,26.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:29.97,35.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:38.52,40.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:44.71,46.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:49.54,51.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:62.22,67.34 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:67.34,69.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:69.30,71.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:71.22,80.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:81.4,81.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:85.3,85.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:85.36,87.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:91.3,91.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:91.48,93.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:96.3,96.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:96.67,98.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:101.3,101.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:101.26,103.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:103.38,104.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:104.72,114.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:119.2,119.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:123.100,124.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:124.20,126.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:129.2,129.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:129.36,130.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:130.70,141.4 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:146.94,147.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:147.20,149.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:152.2,152.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:152.38,154.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:157.2,158.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:158.36,159.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:159.60,161.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:165.2,165.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:165.23,167.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:170.2,181.4 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:185.68,186.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:186.20,188.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:192.60,193.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:193.27,195.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:197.2,197.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:197.33,198.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:198.51,200.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:204.2,204.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:208.56,209.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:209.27,211.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:213.2,213.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:213.29,214.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:214.49,216.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:219.2,219.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:223.66,224.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:224.27,226.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:228.2,228.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:228.39,229.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:229.54,231.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:235.2,235.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:259.45,261.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:261.46,262.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:262.29,263.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:263.21,265.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:268.2,268.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:272.48,274.52 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:274.52,275.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:275.32,276.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:276.21,278.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:281.2,281.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:285.46,289.51 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:289.51,290.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:290.27,291.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:291.21,293.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:298.2,298.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:298.18,299.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:299.56,300.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:300.28,301.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:301.24,303.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:308.2,308.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:312.71,314.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:314.19,316.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:317.2,317.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:323.59,326.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:326.53,328.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:331.2,331.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:331.28,333.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:336.2,336.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:336.49,338.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:341.2,341.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:341.49,343.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:346.2,347.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:347.50,349.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:349.31,351.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/analysis/taint/analyzer.go:354.2,354.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:136.64,165.2 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:168.58,170.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:174.69,178.30 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:178.30,180.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:183.2,183.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:183.54,185.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:188.2,188.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:188.56,190.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:194.75,197.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:200.74,202.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:202.13,204.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:206.2,207.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:207.42,208.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:208.46,210.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:212.2,212.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:216.76,218.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:218.13,220.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:222.2,223.44 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:223.44,224.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:224.46,226.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:228.2,228.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:240.50,243.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:243.34,245.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:248.2,252.41 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:252.41,253.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:253.34,255.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:259.2,260.14 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:260.14,263.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:263.42,264.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:264.35,265.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:269.4,270.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:270.35,276.50 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:276.50,279.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:283.4,283.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:283.47,285.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:288.4,288.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:288.53,291.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:298.76,300.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:300.13,302.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:303.2,303.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:309.55,316.2 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:319.124,321.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:321.22,323.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:326.2,330.32 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:330.32,334.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:334.8,337.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:337.43,339.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:343.2,343.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:347.40,349.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:349.25,350.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:350.30,352.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:354.2,354.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:358.38,359.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:359.22,361.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:362.2,362.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:362.19,363.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:363.19,365.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:367.2,367.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:371.55,372.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:372.26,373.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:373.16,375.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/cfg/cfg.go:377.2,377.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/main.go:10.13,11.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/main.go:11.38,14.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:44.9,51.16 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:51.16,53.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:54.2,61.36 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:61.36,63.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:63.22,64.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:68.3,80.42 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:80.42,82.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:82.24,85.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:89.3,100.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:103.2,103.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:107.65,111.34 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:111.34,112.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:112.37,114.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:116.3,116.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:116.44,118.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:118.20,120.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:124.2,125.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:129.73,134.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:134.51,136.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:136.19,137.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:140.3,140.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:140.35,142.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:145.2,145.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:149.71,154.51 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:154.51,156.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:156.46,158.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:162.2,162.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:162.22,164.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:167.2,167.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:167.51,169.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:169.60,171.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:174.2,174.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:178.75,179.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:179.52,181.51 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:181.51,183.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:185.2,185.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:202.35,208.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:208.37,214.42 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:214.42,225.23 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:225.23,240.57 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:240.57,242.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:247.2,247.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:258.101,262.34 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:262.34,264.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:264.31,269.43 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:269.43,271.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:271.39,276.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:276.46,281.31 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:281.31,287.8 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:294.3,294.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:294.44,296.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:296.20,298.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:302.2,303.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:312.18,316.74 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:316.74,318.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:321.2,321.97 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:321.97,323.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:326.2,326.91 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:326.91,328.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:331.2,331.108 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:331.108,333.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:336.2,336.92 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:336.92,338.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:344.2,344.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:348.67,351.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:352.39,357.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:358.17,363.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:364.15,369.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:370.23,375.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:376.14,381.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:382.20,387.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:388.15,393.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:394.13,399.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:400.14,405.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:408.2,408.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:412.122,413.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:413.27,415.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:418.2,419.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:419.21,421.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:424.2,424.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:424.37,428.71 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:428.71,434.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:437.2,437.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:441.116,442.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:442.27,444.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:447.2,448.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:448.21,450.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:453.2,453.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:453.37,457.68 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:457.68,465.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:468.2,468.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:477.18,480.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:480.30,482.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:485.2,485.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:485.49,487.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:489.2,493.19 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:493.19,495.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:498.2,498.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:498.48,500.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:500.56,501.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:505.3,506.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:506.23,507.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:510.3,510.49 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:510.49,513.23 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:513.23,514.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:517.4,522.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:526.2,526.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:530.108,532.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:532.32,534.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/attributes.go:539.2,539.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:15.114,16.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:16.25,18.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:20.2,21.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:21.21,24.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:26.2,29.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:29.50,31.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:31.22,32.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:37.3,38.48 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:38.48,41.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:41.25,43.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:46.3,48.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:49.21,50.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:52.31,53.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:55.15,57.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:59.27,60.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:63.94,64.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:66.11,68.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:71.3,71.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:71.18,75.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:78.2,78.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:83.78,84.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:84.17,86.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:88.2,91.41 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:91.41,93.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:95.2,103.18 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:104.20,107.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:107.23,109.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:111.39,114.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:116.19,119.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:121.19,124.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:126.10,128.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:132.2,137.25 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:137.25,140.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:140.22,143.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:144.8,147.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:149.2,149.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:154.87,155.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:155.17,157.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:159.2,162.41 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:162.41,164.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:166.2,174.18 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:175.20,177.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:177.23,180.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:182.32,188.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:188.26,190.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:192.10,193.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:197.2,200.13 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:205.76,206.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:206.21,208.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:210.2,217.25 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:217.25,223.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:226.2,227.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:227.26,234.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:236.2,236.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:241.77,242.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:242.25,244.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:246.2,246.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:247.20,249.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:251.19,255.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:255.22,257.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:258.3,258.50 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:260.10,262.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:268.89,269.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:269.26,271.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:273.2,277.55 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:277.55,279.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:279.21,280.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:284.3,284.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:284.78,285.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:289.3,289.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:289.43,291.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:291.24,293.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:293.28,294.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:294.19,297.7 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:300.4,300.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:304.3,305.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:305.26,306.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:306.17,309.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:313.2,313.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:318.78,319.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:319.26,321.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:323.2,327.55 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:327.55,329.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:329.21,330.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:334.3,334.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:334.78,335.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:339.3,339.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:339.43,341.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:341.24,344.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:344.21,347.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:349.4,349.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:353.3,354.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:354.19,357.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:360.2,360.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:365.74,366.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:366.17,368.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:370.2,376.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:376.46,378.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:378.19,379.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:383.3,383.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:383.31,384.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:388.3,392.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:395.2,395.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:400.72,401.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:401.17,403.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:405.2,409.31 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:409.31,410.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:410.15,412.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:414.3,414.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:414.31,416.39 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:416.39,419.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:420.4,420.10 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:424.3,424.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:424.44,426.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:429.2,430.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:435.34,448.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:452.63,457.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:457.16,459.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:461.2,461.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:461.17,463.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/statements.go:465.2,465.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:41.9,48.16 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:48.16,50.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:51.2,55.13 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:55.13,58.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:61.2,72.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:94.3,95.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:95.17,97.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:99.2,102.39 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:102.39,104.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:104.25,105.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:105.29,108.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:108.10,111.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:114.4,114.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:114.51,116.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:121.2,121.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:121.30,132.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:135.2,135.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:135.46,147.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:174.3,185.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:185.46,187.69 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:187.69,189.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:189.9,189.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:189.53,191.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:191.70,193.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:197.2,197.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:197.41,199.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:202.2,206.39 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:206.39,208.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:211.2,212.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:212.21,214.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:217.2,228.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:228.32,230.23 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:230.23,232.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:236.2,237.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:237.20,240.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:242.2,243.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:243.18,246.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:248.2,248.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:274.18,275.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:275.17,277.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:279.2,282.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:282.24,287.23 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:287.23,289.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:293.3,293.47 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:293.47,295.67 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:295.67,297.25 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:297.25,303.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:309.2,309.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:310.39,315.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:316.17,321.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:322.15,327.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:328.23,333.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:334.14,339.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:340.14,345.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:346.20,351.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:352.13,357.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:358.15,363.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:368.2,369.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:373.71,374.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:374.42,376.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:379.2,379.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:379.46,381.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:381.35,383.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:386.2,386.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:390.69,393.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:394.20,396.34 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:398.19,404.48 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:404.48,409.47 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:409.47,411.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:414.14,417.34 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/extraction/variables.go:420.2,420.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:67.44,72.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:75.57,78.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:81.67,84.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:87.82,89.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:93.50,107.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:111.107,112.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:113.36,114.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:115.29,116.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:117.35,118.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:119.10,120.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:136.117,137.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:137.53,138.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:138.38,139.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:139.61,141.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:141.58,148.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:152.2,152.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:156.110,158.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:158.27,160.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:162.2,163.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:163.25,165.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:167.2,167.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:167.37,168.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:168.34,170.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:170.21,177.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:181.2,181.45 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:185.116,187.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:187.27,189.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:191.2,192.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:192.25,194.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:196.2,202.37 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:202.37,203.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:203.34,205.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:205.36,207.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:207.26,209.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:210.5,210.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:213.4,214.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:214.21,217.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:217.46,219.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:219.36,220.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:220.39,222.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:225.6,225.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:225.22,226.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:229.5,229.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:229.22,239.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:244.2,244.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:254.111,256.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:256.53,257.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:257.38,258.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:258.43,260.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:260.53,262.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:266.2,266.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:270.85,271.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:271.16,273.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:275.2,276.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:280.117,281.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:281.23,283.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:285.2,285.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:285.22,287.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:289.2,292.33 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:292.33,293.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:293.53,295.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:298.2,298.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:303.90,304.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:304.16,306.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:308.2,311.62 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:311.62,313.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:315.2,315.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:319.142,322.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:322.23,324.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:326.2,326.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:326.22,329.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:331.2,334.33 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:334.33,335.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:335.68,337.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:341.2,342.14 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:346.37,348.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:348.34,349.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:349.39,350.41 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:350.41,352.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:363.52,366.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:366.46,368.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:371.2,371.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:371.25,373.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:376.2,376.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:376.46,378.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:382.2,382.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:382.46,384.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:389.2,390.47 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:390.47,392.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:392.31,394.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:397.2,397.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:408.24,413.9 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:413.9,416.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:419.2,420.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:420.16,423.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:426.2,427.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:427.16,430.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:431.2,435.25 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:435.25,438.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:441.2,442.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:442.16,445.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:448.2,461.30 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:461.30,463.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/detector.go:466.2,478.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:16.60,17.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:17.22,19.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:23.2,23.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:23.40,24.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:24.64,29.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:32.2,32.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:37.47,40.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:44.53,46.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/frameworks.go:50.49,52.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:10.53,12.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:15.76,16.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:16.17,18.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:21.2,21.83 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:21.83,23.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:26.2,26.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:26.46,28.69 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:28.69,30.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/patterns/helpers.go:33.2,33.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:12.72,17.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:17.46,20.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:21.21,22.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:23.22,24.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:29.2,29.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:29.47,31.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:34.75,38.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:38.53,42.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:45.2,45.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:45.52,49.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:52.2,52.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:57.72,63.32 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:63.32,67.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:67.8,69.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:73.72,75.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:78.71,80.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:84.75,87.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:87.38,89.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:90.2,90.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:90.40,92.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:95.2,96.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:96.20,98.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:98.21,100.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:106.71,109.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:109.46,111.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:112.24,114.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:115.28,117.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:123.71,125.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:128.78,130.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:133.81,134.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:134.46,136.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:137.24,139.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:140.28,142.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:149.71,157.29 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:157.29,158.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:158.34,163.4 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:169.71,175.32 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:175.32,179.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:179.8,181.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:186.74,189.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:189.46,191.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:191.36,193.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:193.35,195.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:195.56,197.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:198.5,198.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:199.10,200.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:200.52,202.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:210.75,211.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:211.46,213.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:213.29,216.9 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:223.74,224.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:224.46,226.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:227.28,228.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:229.15,230.63 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:237.73,238.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:238.46,240.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:240.42,242.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:249.79,253.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:253.46,255.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:256.2,256.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:256.44,258.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:259.2,259.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:259.53,261.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:262.2,262.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:262.44,263.50 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:263.50,265.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:269.2,269.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:269.46,272.21 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:272.21,274.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:275.3,275.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:275.40,278.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:284.73,285.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:285.46,287.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:287.35,290.49 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:290.49,293.18 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:293.18,295.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:295.11,297.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:299.4,299.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:299.17,301.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:308.75,309.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:309.46,311.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:311.31,313.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:320.78,324.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:328.78,333.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:338.72,341.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:341.46,343.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:343.30,347.50 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:347.50,349.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:353.2,353.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:357.62,360.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:360.46,362.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:362.29,364.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:367.2,367.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:371.66,374.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:374.46,376.78 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:376.78,380.4 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:383.2,383.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:387.59,388.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:388.17,390.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/converters.go:391.2,391.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:51.59,59.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:62.64,69.36 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:69.36,71.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:75.85,77.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:80.71,82.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:85.58,87.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:90.50,91.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:91.24,93.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:94.2,94.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:98.53,99.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:99.51,101.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:102.2,102.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:106.47,108.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:111.48,116.38 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:116.38,117.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:117.37,119.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:119.27,122.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:125.4,133.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:137.3,137.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:137.26,140.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:144.2,144.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:144.25,145.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:145.30,147.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:148.3,148.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:153.69,154.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:154.38,155.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:155.27,157.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:159.2,159.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:163.55,165.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:165.22,167.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/graph.go:168.2,168.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:94.80,103.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:106.54,107.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:107.20,109.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:110.2,110.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:114.52,115.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:115.20,117.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:118.2,119.15 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:123.44,126.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/node.go:129.47,132.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:18.46,22.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:25.82,27.16 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:27.16,29.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:30.2,30.36 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:34.94,37.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:37.16,39.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:40.2,45.25 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:45.26,48.3 0 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:51.2,56.19 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:64.3,66.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:66.50,70.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:70.32,71.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:75.3,77.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:81.2,81.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:85.48,108.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:114.19,121.18 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:122.26,123.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:124.25,125.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:126.26,127.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:128.25,129.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:130.25,131.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:132.25,133.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:134.26,135.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:136.28,137.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:138.29,139.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:140.25,141.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:142.32,143.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:144.28,145.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:146.27,147.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:148.33,149.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:150.27,151.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:152.29,153.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:154.32,155.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:156.32,157.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:160.2,160.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:165.53,186.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:186.36,188.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/docker/parser.go:189.2,189.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:8.81,11.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:11.46,12.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:12.43,14.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:16.2,16.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:19.87,22.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:22.46,23.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:23.43,25.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:27.2,27.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:30.81,35.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:37.83,40.70 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:40.70,42.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:43.2,43.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:46.83,48.26 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:48.26,50.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:51.2,51.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:54.81,56.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:56.46,60.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/java/parse_statement.go:61.2,61.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:70.34,74.41 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:74.41,77.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:80.2,81.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:81.18,83.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:86.2,87.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:87.20,89.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:93.2,93.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:93.20,95.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:95.55,97.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:98.3,98.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:101.2,106.20 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:106.20,109.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:112.2,113.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:113.17,115.63 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:115.63,119.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:120.3,120.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:124.2,127.54 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:127.54,132.48 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:132.48,138.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:140.3,141.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:146.2,147.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:147.56,151.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:152.2,152.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:156.35,157.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:157.46,159.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:161.2,185.53 11 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:185.53,187.65 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:187.65,188.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:188.15,189.10 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:191.4,191.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:195.2,195.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:195.61,197.73 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:197.73,198.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:198.15,199.10 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:201.4,201.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:205.2,205.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:205.55,207.67 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:207.67,208.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:208.15,209.10 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:211.4,211.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:215.2,215.76 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:233.95,236.65 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:236.65,238.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:241.2,241.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:241.52,243.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:243.24,244.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:249.3,250.45 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:250.45,251.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:251.35,253.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:257.2,257.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:278.3,280.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:280.52,282.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:282.24,283.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:286.3,286.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:286.53,287.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:287.24,288.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:291.4,294.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:295.51,299.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:299.26,302.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:303.50,310.91 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:310.91,314.6 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:315.51,319.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:319.26,322.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:326.4,326.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:338.10,344.42 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:344.42,346.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:349.2,349.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:349.77,352.66 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:352.66,354.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:358.2,358.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:362.68,364.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:364.39,365.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:365.64,367.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:369.2,369.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:376.52,378.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:378.20,380.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/attribute.go:382.2,382.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:46.112,55.16 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:55.16,57.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:58.2,64.23 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:84.3,85.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:85.17,87.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:89.2,93.39 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:93.39,96.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:96.22,98.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:102.2,102.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:102.24,104.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:104.22,106.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:110.2,110.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:110.46,113.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:142.18,145.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:145.25,147.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:150.2,151.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:151.18,153.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:156.2,158.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:158.26,160.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:163.2,175.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:189.69,192.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:193.20,195.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:197.19,203.48 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:203.48,208.47 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:208.47,210.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:213.14,216.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:220.2,220.33 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:239.87,243.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:243.60,245.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:245.19,246.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:251.3,256.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:259.2,259.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:263.69,265.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:265.27,266.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:266.17,268.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/callsites.go:270.2,270.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:36.44,39.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:39.37,41.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:43.2,47.22 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:47.22,58.36 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:58.36,62.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:62.31,63.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:63.18,66.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:66.11,66.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:66.67,68.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:69.5,69.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:72.4,72.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:72.16,73.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:77.4,77.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:77.17,79.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:79.10,79.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:79.24,81.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:81.24,84.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:89.3,89.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:89.20,92.19 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:92.19,94.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:95.4,95.9 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:99.3,101.18 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:101.18,103.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:106.3,106.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:106.58,109.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:109.9,111.9 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:116.2,116.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:116.21,118.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:120.2,120.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:124.40,126.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:126.16,128.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:130.2,136.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:136.17,139.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:139.21,144.4 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:144.9,147.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:148.8,151.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:153.2,153.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:192.34,195.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:195.37,198.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:201.2,206.29 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:206.29,207.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:207.13,217.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:217.11,220.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:221.4,223.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:223.26,225.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:226.9,228.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:228.26,231.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:233.4,241.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:241.11,244.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:246.4,248.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:248.26,250.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:255.2,255.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:255.24,263.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:265.2,265.35 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:277.34,278.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:278.17,287.24 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:287.24,288.69 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:288.69,291.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:291.53,293.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:298.3,298.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:298.23,299.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:299.57,302.26 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:302.26,303.71 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:303.71,306.55 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:306.55,308.8 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:315.3,315.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:319.2,323.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:323.26,324.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:324.66,325.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:325.27,327.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:332.2,333.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:333.24,334.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:334.64,335.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:335.27,337.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:342.2,342.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:354.34,355.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:355.24,357.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:359.2,363.79 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:363.79,365.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:368.2,368.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:368.64,370.48 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:370.48,373.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:379.2,385.18 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:385.18,390.23 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:390.23,391.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:391.65,393.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:393.26,394.79 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:394.79,396.106 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:396.106,403.8 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:405.7,405.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:409.5,413.29 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:418.3,418.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:418.24,419.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:419.77,421.104 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:421.104,427.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:428.5,428.45 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:434.2,434.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:434.23,435.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:435.70,436.103 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:436.103,442.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:443.4,443.38 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:448.2,448.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:448.22,449.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:449.58,456.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:461.2,461.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:461.55,467.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/chaining.go:470.2,470.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:55.113,64.16 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:64.16,66.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:67.2,72.23 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:77.138,78.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:78.17,80.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:82.2,85.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:86.26,89.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:90.31,93.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:97.2,97.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:97.46,100.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:107.94,110.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:110.21,112.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:115.2,115.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:115.41,120.44 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:120.44,124.4 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:125.8,125.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:125.45,129.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:139.146,145.51 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:145.51,147.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:147.40,153.54 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:153.54,155.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:155.43,158.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:158.11,158.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:158.48,161.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:165.4,165.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:165.20,168.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:169.4,169.9 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:174.2,174.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:174.22,176.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:176.28,178.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:178.9,180.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:190.2,191.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:191.46,197.82 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:197.82,198.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:202.3,202.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:202.36,207.49 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:207.49,212.5 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:213.9,213.69 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:213.69,218.4 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:250.118,253.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:253.12,256.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:260.2,264.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:264.20,266.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:272.2,274.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:274.27,277.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:279.2,279.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:279.18,281.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:284.2,285.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:285.20,287.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:290.2,290.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:290.24,291.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:291.23,293.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:294.3,294.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/imports.go:297.2,297.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:34.81,40.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:49.76,51.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:57.63,58.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:58.18,60.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:75.18,78.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:78.9,80.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:83.2,89.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:98.76,99.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:99.34,100.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:100.49,101.79 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:101.79,109.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:109.40,113.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:113.11,116.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:116.27,119.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:119.12,123.7 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:127.5,128.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/inference.go:128.28,131.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:54.55,56.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:56.44,58.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:58.45,60.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:65.2,66.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:66.21,69.48 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:69.48,70.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:70.33,72.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:76.3,76.26 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:80.2,80.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:80.43,82.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:84.2,84.18 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:99.59,101.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:101.41,103.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:103.22,105.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:105.53,106.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:106.34,108.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:110.4,110.27 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:114.2,114.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:126.57,128.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:128.62,130.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:133.2,133.74 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:133.74,135.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:137.2,137.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:153.77,155.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:155.39,156.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:156.65,159.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:159.50,161.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:163.4,163.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:163.45,165.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:172.2,172.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:172.24,175.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:175.43,180.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:180.43,183.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:187.2,187.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:203.135,205.15 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:205.15,207.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:211.2,212.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:212.21,214.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:216.2,218.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:218.38,221.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:226.2,237.18 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:249.80,251.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:251.19,253.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:256.2,258.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:272.129,274.94 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:274.94,276.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:279.2,279.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:279.77,281.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/orm.go:283.2,283.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:26.31,32.16 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:32.16,34.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:35.2,40.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:51.3,52.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:52.17,54.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:57.2,58.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:58.42,60.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:60.21,61.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:61.29,64.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:64.10,67.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:72.2,72.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:72.60,75.47 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:75.47,78.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:78.32,80.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:84.3,84.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:84.23,86.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:86.25,97.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:102.2,102.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:102.46,104.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:112.18,113.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:113.17,115.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:117.2,119.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:120.16,125.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:127.17,132.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:134.15,139.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:141.40,146.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:148.14,153.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:155.20,160.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:162.13,167.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:169.15,174.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:176.14,181.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:183.14,186.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:186.23,188.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:192.3,193.47 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:193.47,195.85 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:195.85,197.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:201.3,201.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:201.26,205.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:205.30,208.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:208.27,214.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:218.4,222.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:225.20,232.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:235.2,235.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:240.80,243.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:243.34,245.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:245.10,247.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:251.3,251.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:251.55,253.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:256.2,256.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:260.94,261.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:261.45,263.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:267.34,268.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:268.17,270.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:273.2,273.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:273.30,275.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:278.2,278.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:278.17,280.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:283.2,284.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:284.23,285.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:285.29,287.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:291.2,291.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:301.18,302.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:302.50,304.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:307.2,308.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:308.50,310.84 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:310.84,312.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:316.2,316.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:316.25,318.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:320.2,323.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:323.37,328.31 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:328.31,330.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:333.3,333.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:333.23,336.34 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:336.34,342.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:346.3,350.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:354.2,354.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:354.28,356.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:356.23,358.31 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:358.31,364.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:368.3,369.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:369.22,377.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:379.3,383.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:386.2,386.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:390.79,391.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:391.42,393.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:396.2,396.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:396.46,398.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:398.35,400.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/return_type.go:403.2,403.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/types.go:40.58,45.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/types.go:51.64,52.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/types.go:52.45,54.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/types.go:64.71,66.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/resolution/types.go:75.59,78.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:35.54,45.12 8 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:45.12,47.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:47.9,47.21 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:47.21,49.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:50.3,54.22 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:54.22,55.60 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:55.60,57.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:60.3,60.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:60.22,62.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:64.3,64.24 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:64.24,66.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:68.3,68.81 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:68.81,70.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:73.3,75.32 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:75.32,77.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:78.3,83.17 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:83.17,86.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:89.3,91.17 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:91.17,93.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:94.3,101.17 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:101.17,103.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:104.3,121.30 8 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:121.30,123.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:123.18,128.13 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:131.4,131.27 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:131.27,135.5 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:138.3,142.23 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:143.16,150.66 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:150.66,152.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:153.15,161.75 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:161.75,163.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:164.14,166.56 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:166.56,168.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:169.11,170.64 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:174.3,175.41 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:175.41,177.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:179.3,179.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/ci.go:188.13,198.2 9 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:22.44,32.25 9 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:32.25,35.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:37.3,41.27 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:41.27,42.20 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:42.20,45.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:46.4,46.69 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:47.9,49.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:52.3,67.17 14 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:67.17,70.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:73.3,73.56 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:73.56,75.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:77.3,86.25 6 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:86.25,89.36 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:89.36,90.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:90.19,92.11 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:94.5,96.12 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:98.4,98.86 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:100.3,108.32 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:108.32,112.15 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:112.15,113.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:117.4,121.61 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:121.61,123.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:124.4,124.59 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:124.59,126.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:127.4,127.64 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:127.64,129.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:133.4,134.40 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:134.40,137.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:138.4,139.38 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:139.38,142.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:143.4,144.43 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:144.43,147.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:149.4,149.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:149.19,152.25 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:152.25,154.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:155.5,155.23 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:155.23,157.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:161.4,161.44 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:161.44,170.13 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:174.4,175.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:175.18,176.20 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:176.20,178.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:179.5,179.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:182.4,182.40 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:182.40,185.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:187.4,188.49 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:191.3,201.17 7 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:201.17,204.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:207.3,207.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:207.22,209.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:209.18,212.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:214.4,216.18 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:216.18,219.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:221.4,222.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/diagnose.go:227.13,238.2 10 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:26.44,29.25 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:29.25,32.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:34.3,39.17 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:39.17,42.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:44.3,55.38 6 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:55.38,58.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:61.3,61.31 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:61.31,64.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:67.3,74.69 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:107.78,120.41 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:120.41,121.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:121.34,124.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:124.21,128.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:128.43,133.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:133.26,135.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:138.6,138.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:139.85,140.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:141.41,142.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:143.79,144.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:148.6,149.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:153.5,153.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:153.38,158.31 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:158.31,160.7 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:163.6,163.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:163.56,165.7 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:165.12,167.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:170.6,171.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:172.23,173.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:174.23,175.62 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:176.23,177.57 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:178.14,179.54 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:181.11,183.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:184.10,188.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:188.33,190.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:190.11,192.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:195.5,198.51 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:198.51,200.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:200.53,201.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:201.37,204.13 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:210.5,210.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:215.2,215.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:219.44,220.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:220.43,221.35 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:221.35,223.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:225.2,225.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:229.58,238.2 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:241.64,263.37 10 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:263.37,265.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:266.2,270.43 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:270.43,274.28 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:274.28,275.58 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:275.58,280.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:282.3,282.16 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:286.2,286.34 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:286.34,294.50 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:294.50,296.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:297.3,297.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:297.43,299.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:301.3,301.30 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:301.30,306.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:311.57,320.49 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:320.49,322.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:323.2,323.45 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:323.45,325.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:328.2,328.32 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:328.32,335.76 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:335.76,342.49 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:342.49,344.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:345.4,345.47 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:345.47,347.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:350.4,350.34 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:350.34,351.15 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:351.15,352.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:354.5,354.57 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:361.72,370.50 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:370.50,372.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:373.2,373.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:373.43,375.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:378.2,378.30 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:378.30,379.16 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:379.16,380.9 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:382.3,382.73 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:387.42,388.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:388.16,390.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:391.2,391.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:395.42,409.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:409.36,410.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:410.52,412.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:415.2,415.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:420.43,421.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:421.32,422.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:422.20,424.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:426.2,426.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:430.45,434.32 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:434.32,435.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:435.20,438.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:440.2,440.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:440.22,442.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:444.2,444.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:444.21,446.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:449.2,452.67 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:452.67,454.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:457.2,457.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:457.21,459.74 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:459.74,461.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:465.2,466.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:466.37,467.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:467.47,469.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:472.2,472.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:472.37,474.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:477.2,477.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:481.57,489.97 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:489.97,491.36 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:491.36,495.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:496.3,496.35 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:496.35,500.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:501.3,501.33 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:501.33,505.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:506.3,506.16 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:510.2,510.33 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:510.33,518.44 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:518.44,520.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:521.3,521.41 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:521.41,523.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:525.3,525.28 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:525.28,530.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:531.3,531.16 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:535.2,535.35 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:535.35,543.48 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:543.48,545.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:546.3,546.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:546.43,548.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:551.3,551.30 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:551.30,552.15 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:552.15,553.10 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:555.4,555.69 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/resolution_report.go:560.13,564.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/root.go:15.57,20.18 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/root.go:20.18,22.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/root.go:26.22,28.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/root.go:30.13,33.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:34.54,43.12 7 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:43.12,45.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:45.9,45.21 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:45.21,47.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:48.3,52.22 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:52.22,53.60 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:53.60,55.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:58.3,58.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:58.22,60.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:62.3,62.24 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:62.24,64.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:67.3,68.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:68.17,70.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:71.3,79.32 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:79.32,81.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:82.3,87.52 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:87.52,93.18 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:93.18,95.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:95.10,98.37 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:98.37,100.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:100.11,102.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:107.3,109.17 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:109.17,113.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:116.3,118.17 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:118.17,120.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:121.3,127.17 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:127.17,129.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:130.3,145.30 6 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:145.30,147.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:147.18,150.13 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:153.4,153.27 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:153.27,156.5 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:160.3,165.35 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:165.35,167.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:168.3,173.64 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:173.64,175.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:178.3,179.41 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:179.41,181.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:183.3,183.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:187.50,189.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:189.37,191.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:192.2,192.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:196.102,200.39 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:200.39,201.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:201.44,203.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:203.9,203.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:203.44,205.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:208.2,208.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:208.34,210.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:211.2,211.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:211.35,213.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:215.2,215.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:225.28,228.50 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:228.50,231.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:233.2,236.45 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:236.45,239.17 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:239.17,241.12 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:244.3,245.46 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:249.2,249.47 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:249.47,251.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:251.17,253.12 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:256.3,257.46 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:261.2,262.35 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:262.35,265.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:265.17,267.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:270.3,271.30 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:271.30,273.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:276.3,277.22 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:277.22,279.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:282.3,307.41 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:310.2,310.17 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:314.93,317.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:317.16,319.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:321.2,322.47 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:322.47,324.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:327.2,328.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:328.19,330.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:331.2,332.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:332.26,334.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:337.2,338.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:338.40,344.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:346.2,350.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:354.42,355.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:355.19,357.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:359.2,361.29 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:361.29,362.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:362.17,365.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:365.9,365.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:365.24,367.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:370.2,370.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:370.78,372.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:373.2,373.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:377.75,382.39 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:382.39,384.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:384.31,386.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:387.3,387.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:387.31,389.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:390.3,390.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:390.33,392.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:393.3,394.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/scan.go:398.13,407.2 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/version.go:19.42,23.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/cmd/version.go:26.13,28.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:50.64,56.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:56.55,58.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:60.2,62.12 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:68.15,71.41 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:71.41,72.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:72.72,74.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:77.2,77.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:83.15,86.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:86.38,87.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:87.45,88.80 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:88.80,90.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:94.2,94.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:100.14,102.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:102.9,104.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:106.2,106.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:107.29,108.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:109.21,110.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:111.16,112.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:113.16,114.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:115.17,116.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:119.2,119.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:125.14,127.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:127.9,129.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:131.2,131.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:131.42,141.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:143.2,143.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:149.14,151.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:151.9,153.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:155.2,157.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:157.29,158.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:158.55,168.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:171.2,171.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:177.8,179.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:179.50,180.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:180.27,182.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:186.2,186.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:186.55,187.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:187.32,189.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:193.2,193.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:193.60,195.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:195.17,197.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:198.3,198.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:198.36,200.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:204.2,204.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:204.54,205.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:205.55,207.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:211.2,211.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:211.61,212.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:212.57,214.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:218.2,218.59 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:218.59,220.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:220.35,221.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:221.26,223.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:226.3,226.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:226.16,228.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:232.2,232.63 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:232.63,233.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:233.46,235.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:236.3,236.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:236.47,238.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:242.2,242.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:242.57,243.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:243.34,245.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:248.2,248.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:255.14,257.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:257.9,259.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:261.2,261.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:262.21,263.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:264.25,265.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:268.2,268.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:275.14,277.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:277.9,279.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:282.2,282.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:282.46,283.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:283.51,294.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:298.2,298.59 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:298.59,302.41 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:302.41,303.44 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:303.44,314.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:317.3,317.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:317.49,318.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:318.32,319.71 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:319.71,330.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:336.2,336.73 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:336.73,338.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:338.35,340.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:340.11,341.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:344.4,345.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:345.53,346.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:346.34,347.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:347.70,358.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:364.2,364.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:371.14,373.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:373.9,375.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:377.2,377.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:377.46,390.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:392.2,392.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:399.14,401.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:401.9,403.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:406.2,409.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:409.34,411.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:411.10,413.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:415.3,425.19 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:425.19,428.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:431.3,431.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:431.24,433.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:437.2,437.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:443.14,445.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:445.9,447.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:450.2,450.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:450.34,452.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:452.10,453.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:456.3,465.76 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:465.76,467.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:470.2,470.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:476.14,478.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:478.9,480.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:483.2,483.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:483.34,485.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:485.10,486.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:489.3,498.76 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:498.76,510.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/executor/container_executor.go:513.2,513.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:25.32,27.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:29.22,32.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:32.16,35.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:37.2,37.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:37.52,39.73 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:39.73,42.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:43.3,47.17 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:47.17,49.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:53.20,57.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:57.16,59.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:62.32,63.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:63.38,70.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:70.17,73.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:74.3,79.17 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/analytics/usage.go:79.17,82.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:78.33,88.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:88.16,92.3 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:95.2,96.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:96.25,100.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:103.2,104.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:104.16,108.3 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:111.2,124.35 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:124.35,126.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:129.2,130.52 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:130.52,135.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:135.45,149.54 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:149.54,154.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:157.4,161.55 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:165.2,165.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:170.101,171.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:171.17,173.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:175.2,175.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:175.42,177.70 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:177.70,179.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:183.2,183.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:183.46,185.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:185.19,187.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:187.21,189.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:193.2,193.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:198.59,204.44 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:204.44,206.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:209.2,210.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:210.42,212.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:215.2,217.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:217.41,219.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:222.2,224.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:224.43,226.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:229.2,230.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:230.42,232.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:234.2,234.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:238.73,239.71 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:239.71,241.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:242.2,242.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:242.70,244.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:245.2,245.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:245.67,247.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:248.2,248.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:248.72,250.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/analyzer.go:251.2,251.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:68.24,80.43 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:80.43,90.3 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:90.8,90.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:90.40,94.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:96.2,96.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:103.25,113.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:113.37,115.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:115.36,116.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:116.18,117.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:119.4,119.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:119.45,128.10 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:132.3,132.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:132.18,134.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:138.2,138.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:138.35,139.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:139.18,141.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:145.2,145.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:145.24,147.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:148.2,148.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:148.23,150.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:151.2,151.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:151.48,154.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:156.2,156.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:161.68,163.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:163.55,164.75 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:164.75,166.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:170.2,170.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:170.55,176.85 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:176.85,178.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:181.3,183.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:183.42,185.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:188.3,190.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:190.41,192.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:195.3,197.81 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:197.81,199.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:202.3,204.81 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:204.81,206.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:209.3,211.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:211.49,213.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:216.3,217.82 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:217.82,219.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:222.3,222.83 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:222.83,224.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:227.3,227.86 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:227.86,229.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:232.3,233.84 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:233.84,235.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:238.3,239.101 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:239.101,241.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:244.2,244.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:248.67,249.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:249.42,251.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/comparator.go:252.2,252.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:26.75,30.89 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:30.89,31.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:31.17,33.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:36.3,36.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:36.38,38.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:41.3,41.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:41.26,43.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:46.3,47.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:47.17,49.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:52.3,53.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:53.17,57.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:59.3,60.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:63.2,63.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:63.16,65.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:67.2,67.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:71.38,85.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:85.32,86.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:86.35,88.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:91.2,91.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:95.116,101.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:101.16,103.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:105.2,105.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:105.17,107.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:110.2,116.23 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:121.130,122.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:122.17,124.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:127.2,127.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:127.42,129.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:129.22,131.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:133.3,134.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:134.22,135.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:135.52,137.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:137.21,139.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:142.3,142.9 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:146.2,146.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:146.39,149.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:149.22,154.23 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:154.23,155.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:155.53,157.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:157.22,159.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:163.3,163.9 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:167.2,167.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:167.46,169.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:169.19,171.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:176.126,179.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:179.21,181.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:182.2,186.21 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:186.21,188.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:188.8,190.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:193.2,209.46 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:209.46,211.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:211.46,213.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:218.2,219.15 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:219.15,222.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:222.24,224.83 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:224.83,226.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:230.2,242.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:247.59,250.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:250.16,253.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/extractor.go:256.2,264.19 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:38.53,49.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:55.64,67.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:86.87,95.20 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:96.22,97.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:98.22,99.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:100.10,101.65 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:104.2,104.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:104.16,106.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:109.2,111.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:111.16,115.17 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:115.17,121.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:121.26,123.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:124.4,124.98 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:129.2,134.50 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:134.50,136.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:138.2,138.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:142.63,156.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:156.16,158.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:161.2,163.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:163.16,165.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:166.2,169.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:169.16,171.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:172.2,174.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:174.38,177.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:180.2,181.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:181.16,183.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:186.2,191.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:191.16,193.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:195.2,195.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:199.63,215.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:215.16,217.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:220.2,222.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:222.16,224.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:225.2,229.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:229.16,231.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:232.2,234.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:234.38,237.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:240.2,241.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:241.16,243.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:246.2,254.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:254.16,256.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:258.2,258.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:258.34,260.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:262.2,262.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:266.69,267.90 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:267.90,269.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:272.2,272.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:272.46,273.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:273.26,275.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:276.3,276.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:276.24,278.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:279.3,279.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:279.49,281.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:284.2,284.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:297.132,310.35 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:310.35,311.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:311.13,312.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:312.29,319.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:324.2,324.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:324.31,326.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:327.2,330.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:330.38,332.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:332.21,334.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:334.9,336.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:339.2,339.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:343.50,351.49 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:351.49,353.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:356.2,356.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:356.17,359.59 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:359.59,361.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:364.2,364.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:364.30,366.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:369.2,370.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:370.35,371.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:371.27,373.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:376.2,376.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:376.23,379.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:381.2,381.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/llm.go:385.82,403.2 11 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:58.19,66.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:66.34,67.10 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:68.52,69.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:70.53,71.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:72.53,73.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:74.11,75.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:79.3,79.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:79.56,81.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:85.2,85.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:85.54,88.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:90.2,90.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:90.54,93.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:95.2,95.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:95.42,98.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:100.2,100.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:100.32,103.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:106.2,108.33 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:108.33,110.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:112.2,112.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:121.20,127.34 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:127.34,129.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:129.16,130.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:134.3,134.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:134.51,135.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:135.28,145.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:149.3,149.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:149.51,150.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:150.28,160.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/metrics.go:164.2,164.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:23.81,26.45 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:26.45,37.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:39.2,39.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:43.77,46.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:46.55,48.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:48.33,59.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:62.2,62.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:66.50,73.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:73.43,75.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:78.2,80.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:80.44,82.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:85.2,88.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:88.42,90.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:93.2,94.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:94.42,96.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:98.2,98.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:102.48,119.53 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:119.53,121.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:123.2,123.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:139.39,145.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:148.70,153.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:153.40,155.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:158.2,161.38 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:161.38,163.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:166.2,169.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:169.20,171.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:174.2,176.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:180.60,181.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:181.14,183.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:185.2,185.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:185.18,190.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:192.2,192.14 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:197.44,200.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:200.21,203.68 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:203.68,205.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:207.2,207.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:211.56,212.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:212.14,214.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:216.2,216.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:216.14,221.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:223.2,223.14 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:227.21,228.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:228.11,230.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/normalizer.go:231.2,231.10 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/prompt.go:9.52,200.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:13.77,53.41 24 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:53.41,65.54 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:65.54,67.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:68.3,68.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:68.46,70.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:72.3,75.33 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:75.33,77.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:77.25,79.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:80.4,81.14 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:81.14,83.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:84.4,85.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:87.3,87.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:91.2,91.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:91.34,98.47 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:98.47,99.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:99.18,100.10 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:102.4,105.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:105.40,107.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:109.4,113.28 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:113.28,116.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:121.2,131.21 9 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:131.21,134.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:136.2,138.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:146.9,154.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:154.16,156.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:158.2,159.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:159.16,161.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:163.2,163.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:168.61,170.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:170.21,172.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:174.2,177.29 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:177.29,178.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:178.37,181.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:182.3,182.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:182.21,185.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:186.3,187.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/diagnostic/reporter.go:190.2,190.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:17.89,22.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:37.57,41.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:41.50,42.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:42.38,43.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:43.36,45.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:49.2,49.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:60.71,65.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:65.40,66.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:66.40,68.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:72.2,72.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:72.20,74.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:77.2,77.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:77.29,79.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:81.2,81.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:91.75,92.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:92.20,95.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:98.2,98.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:98.20,100.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:102.2,102.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:102.72,106.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:108.2,108.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:108.37,112.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:114.2,114.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:114.37,118.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:121.2,121.26 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:134.70,137.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:137.60,138.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:138.38,139.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:139.78,147.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:151.2,151.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:156.75,158.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:158.28,160.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:163.2,163.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:163.40,164.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:164.43,166.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:168.2,168.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:192.93,195.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:195.27,197.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:197.39,199.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:199.23,203.5 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:207.2,207.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:219.72,221.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:221.65,223.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:226.2,226.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:226.49,228.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:231.2,231.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:231.46,233.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:235.2,235.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:251.60,257.21 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:257.21,259.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:259.17,261.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:262.3,262.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:266.2,266.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:266.22,270.17 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:270.17,272.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:273.3,273.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:277.2,279.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:279.16,281.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:284.2,286.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:286.16,288.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:290.2,290.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:321.69,325.76 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:325.76,327.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:327.17,331.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:332.3,332.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:336.2,340.17 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:340.17,342.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:347.2,349.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:349.28,351.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:353.2,358.22 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:376.85,377.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:377.35,379.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:381.2,381.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:381.54,386.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:386.13,388.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:391.3,391.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:391.23,393.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:396.3,399.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:399.19,402.11 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:402.11,404.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:409.3,409.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:409.55,411.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:414.2,414.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:425.82,426.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:426.32,428.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:431.2,434.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:434.49,436.14 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:436.14,439.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:441.3,441.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:441.55,444.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:447.2,447.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:461.103,469.56 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:469.56,471.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:474.2,474.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:485.104,486.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:486.27,487.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:487.48,489.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:491.2,491.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:502.107,503.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:504.14,506.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:508.12,510.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:512.15,514.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:516.11,518.65 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:520.10,522.15 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:533.97,534.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:534.14,536.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:537.2,537.63 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:552.83,558.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:569.78,573.22 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:573.22,574.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:574.26,575.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:575.28,580.13 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:581.10,581.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:581.65,585.13 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:590.3,590.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:590.20,594.12 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:597.3,597.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:601.2,601.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:601.50,603.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:605.2,605.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:614.63,618.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:618.21,620.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:620.54,622.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:625.2,625.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:633.67,637.41 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:637.41,639.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:642.2,642.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:642.58,644.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:647.2,647.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:656.81,659.14 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:659.14,662.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:664.2,664.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:674.83,678.59 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:678.59,680.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:683.2,683.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:683.58,685.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/call_matcher.go:687.2,687.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:16.80,21.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:24.58,25.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:25.27,27.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:28.2,28.26 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:35.63,49.37 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:49.37,50.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:50.34,52.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:52.46,53.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:57.4,58.45 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:58.45,59.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:59.52,62.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:62.68,64.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:70.4,81.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:85.2,85.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:90.64,107.37 10 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:107.37,108.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:108.34,110.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:110.46,111.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:115.4,116.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:116.21,120.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:120.22,131.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:136.2,136.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:140.63,141.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:141.16,143.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:145.2,148.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:148.37,150.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:152.2,152.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:155.102,158.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:158.23,160.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:162.2,164.52 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:164.52,165.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:165.23,166.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:166.44,168.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:172.2,173.14 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:177.93,178.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:178.32,179.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:179.34,180.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:180.35,182.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:185.2,185.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:189.79,191.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:191.35,193.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:194.2,194.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:205.81,208.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:208.60,209.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:209.32,210.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:210.37,211.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:211.45,217.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:223.2,223.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:227.72,228.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:228.20,230.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:232.2,232.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:232.36,233.73 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:233.73,236.4 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:237.3,237.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:237.38,240.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:241.3,241.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:241.38,244.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:247.2,247.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:251.102,253.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:253.28,255.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:257.2,258.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:258.26,260.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:262.2,263.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:263.33,264.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:264.23,266.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/dataflow_executor.go:269.2,269.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:81.54,82.9 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:83.37,84.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:85.37,86.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:87.10,88.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:93.53,94.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:95.28,96.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:97.31,98.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:99.32,100.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/enriched_detection.go:101.10,102.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/ir_types.go:52.42,54.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/ir_types.go:64.46,66.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/ir_types.go:79.39,81.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:22.50,24.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:28.30,31.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:42.73,64.2 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:75.52,78.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:78.16,80.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:83.2,83.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:83.19,85.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:88.2,88.46 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:93.75,100.24 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:100.24,103.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:103.8,106.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:109.2,110.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:110.16,111.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:111.44,113.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:114.3,114.86 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:118.2,119.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:119.55,125.82 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:125.82,128.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:129.3,129.84 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:132.2,132.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:136.79,140.85 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:140.85,141.17 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:141.17,143.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:146.3,146.50 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:146.50,148.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:151.3,152.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:152.17,156.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:158.3,159.13 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:162.2,162.16 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:162.16,164.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:167.2,167.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:172.59,175.16 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:175.16,177.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:179.2,185.19 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:185.19,187.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:187.17,189.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:191.3,195.60 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:195.60,197.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:198.3,199.88 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:200.8,202.90 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:202.90,203.18 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:203.18,205.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:208.4,208.51 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:208.51,210.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:213.4,214.18 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:214.18,218.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:221.4,225.61 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:225.61,229.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:231.4,233.14 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:236.3,236.17 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:236.17,238.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:242.2,242.41 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:247.83,289.24 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:289.24,292.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:292.17,294.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:295.3,297.63 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:297.63,299.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:300.3,302.48 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:303.8,306.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:308.2,309.16 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:309.16,310.44 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:310.44,312.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:313.3,313.71 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:317.2,318.54 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:318.54,320.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:322.2,322.20 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:326.97,329.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:329.9,331.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:333.2,334.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:334.9,336.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:338.2,338.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:339.22,340.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:342.26,343.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:345.18,346.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:348.44,349.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:352.109,353.36 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:355.10,356.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:360.125,363.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:363.16,365.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:367.2,368.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:368.55,370.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:372.2,377.32 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:377.32,386.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:388.2,388.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:391.122,394.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:394.16,396.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:398.2,399.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:399.55,401.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:403.2,404.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:407.129,410.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:410.16,412.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:414.2,415.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:415.55,417.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:419.2,424.32 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:424.32,433.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:435.2,435.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/loader.go:439.137,444.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:16.101,21.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:30.67,33.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:33.60,34.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:34.38,36.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:36.43,37.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:37.54,46.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:51.2,51.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:65.71,68.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:68.20,70.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:73.2,73.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:73.20,75.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:77.2,77.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:77.72,80.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:82.2,82.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:82.37,85.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:87.2,87.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:87.37,90.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/dsl/variable_matcher.go:92.2,92.27 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:4.32,9.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:12.41,14.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:17.45,21.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:24.62,26.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:26.31,27.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:27.28,29.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/graph.go:31.2,31.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:17.46,22.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:22.16,26.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:28.2,37.31 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:37.31,41.30 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:41.30,51.20 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:51.20,54.61 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:54.61,56.14 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:58.5,61.13 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:62.10,62.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:62.30,65.64 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:65.64,67.14 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:69.5,72.13 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:76.4,76.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:77.17,78.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:79.15,80.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:81.12,83.13 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:86.4,88.18 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:88.18,90.13 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:93.4,94.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:94.18,96.13 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:99.4,107.21 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:109.3,109.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:113.2,114.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:114.34,116.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:119.2,119.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:119.29,121.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:122.2,125.12 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:125.12,128.7 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:128.7,129.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:130.36,131.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:131.12,133.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:134.5,135.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:136.33,137.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:137.12,139.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:140.5,140.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:142.4,143.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:143.37,145.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:146.4,146.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:151.2,151.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:151.12,156.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:159.2,159.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:159.37,160.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:160.41,162.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:163.3,163.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:163.41,165.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/initialize.go:168.2,173.18 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:6.115,10.21 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:12.29,13.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:13.25,15.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:17.26,18.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:18.25,20.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:22.14,23.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:23.25,25.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:27.26,28.92 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:30.25,31.91 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:33.28,34.94 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:36.26,37.92 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:39.30,40.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:40.25,42.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:44.20,45.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:45.25,47.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:50.15,51.71 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:53.25,54.71 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:56.22,57.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:59.25,60.71 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:62.22,63.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:65.23,66.69 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:68.27,69.94 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:71.28,72.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:74.27,75.75 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:77.27,78.59 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:80.23,81.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:83.57,84.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:86.36,87.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:91.2,91.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:91.46,94.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:97.2,97.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:97.35,98.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:98.40,99.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:99.44,100.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:100.48,101.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:101.39,102.81 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser.go:102.81,104.8 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:24.65,26.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:26.16,28.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:30.2,30.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:34.75,45.57 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:45.57,46.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:46.49,48.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:52.2,53.55 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:53.55,54.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:54.48,56.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:60.2,61.57 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:61.57,62.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:62.49,64.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:68.2,69.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:69.24,71.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:73.2,73.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:79.47,81.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:81.31,83.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:84.2,84.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:88.84,90.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:90.13,92.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:93.2,93.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:97.68,99.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:99.13,101.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:102.2,102.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:106.72,108.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:108.13,110.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:111.2,112.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:112.18,114.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:115.2,115.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:120.74,122.13 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:122.13,124.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:127.2,128.42 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:128.42,130.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:133.2,133.28 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:133.28,135.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:137.2,137.10 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:143.57,145.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:145.40,146.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:146.50,148.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:150.2,150.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:154.60,157.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:157.40,159.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:159.25,160.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:163.3,163.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:163.48,165.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:165.11,166.13 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:168.4,169.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:169.50,171.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:176.2,176.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:180.81,182.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:182.13,184.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:186.2,187.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:187.23,189.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:191.2,191.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:191.46,192.59 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:192.59,194.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:197.2,197.14 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:201.91,203.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:203.13,205.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:207.2,208.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:208.20,210.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:212.2,212.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:212.43,213.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:213.61,215.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:218.2,218.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:222.59,224.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:224.40,225.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:225.54,227.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:229.2,229.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:233.59,235.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:235.40,236.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:236.37,238.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:238.9,238.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:238.57,240.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:242.2,242.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:246.78,248.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:248.13,250.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:252.2,253.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:253.22,255.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:257.2,257.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:257.53,259.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:259.10,260.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:263.3,264.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:264.27,265.70 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:265.70,267.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:271.2,271.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:275.75,277.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:277.13,279.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:281.2,282.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:282.20,284.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:287.2,287.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:287.29,288.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:288.53,290.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:294.2,294.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:294.43,295.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:295.37,296.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:296.67,298.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:302.2,302.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:307.92,308.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:308.17,310.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:311.2,312.18 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:312.18,314.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_compose.go:315.2,315.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:12.63,18.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:18.16,20.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:23.2,23.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:23.55,26.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:28.2,28.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:32.95,61.2 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:64.79,67.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:68.14,69.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:69.33,71.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:71.33,73.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:74.4,74.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:74.35,76.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:78.14,79.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:79.32,81.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:82.3,82.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:82.33,84.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:85.16,86.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:86.41,88.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:89.13,90.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:90.46,92.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:93.13,94.31 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:94.31,96.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:97.15,98.45 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:98.45,100.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:101.34,102.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:102.39,104.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:104.9,106.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:107.21,108.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:108.38,110.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:111.3,111.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:111.32,113.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:114.17,115.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:115.31,117.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:118.16,119.45 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:120.21,121.38 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:121.38,123.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:124.15,125.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:126.17,127.42 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:127.42,129.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:130.20,131.34 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:131.34,133.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:136.2,136.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:141.66,144.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:144.16,146.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:149.2,149.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:149.62,152.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:154.2,154.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:158.100,183.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:186.70,190.66 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:190.66,192.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:194.2,194.99 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:194.99,196.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:198.2,198.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:198.77,200.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:202.2,202.92 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:202.92,204.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:207.2,207.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:207.72,208.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:208.48,209.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:209.38,211.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:216.2,216.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:216.66,217.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:217.47,218.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:218.40,220.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:225.2,225.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:225.62,226.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:226.43,227.38 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:227.38,229.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:233.2,233.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:233.65,234.44 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:234.44,235.38 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:235.38,237.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:242.2,242.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:242.67,243.43 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:243.43,244.38 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:244.38,246.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:251.2,251.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:251.68,253.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:253.30,254.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:254.38,256.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:259.3,259.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:259.44,260.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:260.38,262.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:266.2,266.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:272.36,274.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:277.37,279.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:282.50,283.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:283.25,285.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:286.2,286.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:290.59,291.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:291.25,293.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:294.2,294.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:294.50,295.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:295.19,297.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:299.2,299.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:303.68,304.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:304.26,306.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:307.2,308.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:308.50,309.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:309.64,311.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:313.2,313.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:317.91,318.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:318.26,320.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:322.2,322.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:322.29,325.51 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:325.51,326.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:326.66,328.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:330.3,330.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:334.2,335.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:335.50,336.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:336.24,338.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_docker.go:340.2,340.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:12.130,23.22 10 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:24.11,25.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:26.11,27.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:28.11,29.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:30.11,31.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:32.28,33.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:34.11,35.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:36.12,37.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:38.12,39.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:40.12,41.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:42.12,43.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:44.11,45.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:46.12,47.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:48.12,49.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:50.11,51.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:52.13,53.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:54.11,55.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:56.10,57.33 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:60.2,83.20 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:87.108,89.79 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:89.79,91.46 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:91.46,93.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:95.2,103.46 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:103.46,107.20 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:108.17,109.58 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:109.58,111.47 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:111.47,113.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:115.20,117.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:117.53,118.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:118.57,120.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:122.39,123.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:124.28,125.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:125.58,127.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:127.43,132.6 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:137.2,154.20 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:158.123,161.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:161.46,162.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:162.46,164.57 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:164.57,166.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:167.23,168.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:169.27,173.50 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:174.13,175.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:181.2,194.27 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:194.27,196.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:200.101,202.79 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:202.79,204.46 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:204.46,206.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:208.2,214.46 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:214.46,216.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:217.20,219.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:219.49,220.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:220.53,222.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:224.21,225.49 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:225.49,226.51 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:226.51,228.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:230.27,231.49 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:231.49,233.53 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:233.53,235.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:240.2,255.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:259.97,260.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:260.55,274.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:278.104,285.46 7 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:285.46,287.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:288.30,290.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:290.49,291.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:291.46,293.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:294.5,294.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:294.37,295.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:295.55,297.7 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:301.4,302.63 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:303.20,304.48 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:306.3,306.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:306.45,308.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:310.2,310.49 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:310.49,312.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:312.8,314.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:315.2,329.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:333.99,339.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:339.46,341.84 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:341.84,344.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:345.3,345.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:345.38,347.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:347.49,353.36 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:353.36,358.6 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_java.go:363.2,373.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:11.111,17.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:17.21,19.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:21.2,22.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:22.27,23.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:23.62,25.112 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:25.112,27.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:31.2,47.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:51.102,57.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:57.21,59.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:61.2,62.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:62.27,63.62 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:63.62,65.77 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:65.77,67.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:71.2,85.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:89.113,95.25 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:95.25,97.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:99.2,100.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:100.26,101.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:101.61,104.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:107.2,124.27 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:124.27,126.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:130.102,149.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:152.101,171.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:174.104,193.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:196.102,215.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:218.102,220.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:220.46,222.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:222.30,241.9 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:247.97,253.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:253.21,255.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:257.2,258.22 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:258.22,260.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_python.go:262.2,277.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:12.118,27.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:30.119,31.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:31.14,33.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:33.8,33.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:33.19,48.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:52.118,53.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:53.14,55.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:55.8,55.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:55.19,70.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:74.121,75.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:75.14,77.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:77.8,77.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:77.19,92.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:96.119,97.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:97.14,99.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:99.8,99.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:99.19,114.3 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:118.118,133.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:136.115,139.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:139.26,141.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:142.2,143.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:143.21,145.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:146.2,147.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:147.21,149.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:151.2,163.27 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:167.118,170.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:170.26,172.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:173.2,185.30 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:189.115,192.26 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:192.26,194.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:195.2,207.32 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:211.116,214.21 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:214.21,216.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:217.2,218.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:218.26,220.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:221.2,222.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:222.26,224.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_statements.go:226.2,238.28 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:25.53,27.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:27.16,29.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:31.2,31.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:35.78,38.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:38.16,40.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:42.2,43.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:43.23,45.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:48.2,49.61 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:49.61,51.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:51.8,53.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:55.2,58.8 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:62.59,63.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:63.17,65.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:67.2,71.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:72.24,77.45 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:77.45,78.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:78.31,84.5 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:87.25,90.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:90.37,92.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:92.34,94.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:94.10,96.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:98.3,98.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:100.23,104.47 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:104.47,106.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:106.9,109.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:111.22,113.47 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:115.10,117.21 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:120.2,120.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:124.52,125.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:125.17,127.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:129.2,129.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:130.30,135.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:135.27,137.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:138.3,138.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:140.35,146.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:146.27,149.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:150.3,150.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:152.21,157.14 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:159.10,163.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:168.50,169.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:169.47,171.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:172.2,172.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:176.47,177.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:177.37,179.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:180.2,181.15 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:185.52,186.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:186.37,188.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:189.2,189.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:193.48,194.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:194.15,196.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:197.2,197.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:197.27,198.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:198.47,200.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:202.2,202.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:206.42,207.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:207.34,209.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:210.2,210.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:214.38,215.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:215.15,217.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:218.2,218.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:218.34,220.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/parser_yaml.go:221.2,221.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:58.40,60.29 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:60.29,62.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:62.17,65.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:67.3,67.55 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:67.55,69.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/types.go:72.2,72.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:21.89,25.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:28.42,31.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:34.54,35.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:35.26,36.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:36.16,38.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:40.2,40.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:44.39,45.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:46.14,47.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:48.18,49.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:50.24,51.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:52.21,55.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:56.10,57.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:62.29,64.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:67.47,68.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:68.17,70.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:74.46,75.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:75.17,77.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:81.29,83.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:86.57,88.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:88.29,89.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:90.41,91.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:94.2,94.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:98.45,100.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:103.47,105.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:108.80,109.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:109.17,111.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:112.2,112.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:112.77,114.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:117.2,117.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:117.46,119.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:119.53,121.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:125.2,125.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:129.61,134.36 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:134.36,139.35 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:139.35,141.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:141.23,146.20 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:147.19,149.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:150.18,151.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:152.16,153.63 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:154.19,155.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:156.20,158.31 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:159.18,160.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:161.13,162.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:164.5,164.50 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:169.2,173.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:177.96,184.41 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:184.41,186.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:186.47,188.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:189.56,191.61 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:192.22,194.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:195.29,197.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:197.55,200.6 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:207.2,207.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:207.40,208.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:208.47,210.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:210.36,211.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:211.25,213.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:213.11,215.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:218.4,220.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:220.28,221.58 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:221.58,224.6 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:229.2,237.41 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:237.41,239.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:241.2,242.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:246.51,248.87 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:248.87,249.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:249.17,251.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:252.3,252.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:252.20,258.11 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:259.40,260.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:261.52,263.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:264.92,266.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:269.3,269.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:271.2,271.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:275.44,277.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:277.16,279.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/utils.go:280.2,280.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:17.48,21.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:25.88,29.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:33.91,38.34 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:38.34,40.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:42.2,42.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:47.83,51.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:55.87,60.13 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:60.13,67.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:69.2,69.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:73.61,78.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:81.55,86.35 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:86.35,88.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:89.2,89.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/attribute.go:93.41,97.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:33.44,50.2 11 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:59.65,61.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:71.81,73.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:73.24,75.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:76.2,76.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:87.76,94.82 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:94.82,100.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:103.2,103.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:103.77,109.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:112.2,112.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:112.45,118.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:121.2,121.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:121.23,127.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:130.2,130.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:130.72,136.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:139.2,139.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:139.72,142.56 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:142.56,148.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:149.3,153.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:157.2,157.72 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:157.72,163.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:166.2,166.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:166.31,167.105 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:167.105,173.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:174.3,178.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:181.2,181.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:185.38,186.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:186.17,188.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:191.2,191.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:191.32,193.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:195.2,195.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:195.17,197.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:200.2,200.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:200.17,202.57 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:202.57,204.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:207.2,212.23 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:212.23,213.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:213.15,215.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:215.30,216.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:220.3,220.10 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:221.31,222.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:223.18,224.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:224.22,226.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:227.4,227.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:228.31,229.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:229.25,231.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:232.4,234.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:234.56,236.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:237.18,239.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:240.11,242.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:246.2,246.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:250.45,263.45 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:263.45,268.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:271.2,276.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:276.43,281.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:284.2,285.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:285.42,290.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:293.2,294.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:294.43,299.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:302.2,307.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:311.43,319.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:319.37,324.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:327.2,348.38 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:352.43,360.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:360.37,365.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:368.2,405.38 9 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:409.42,418.37 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:418.37,423.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:426.2,427.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:427.42,432.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:435.2,436.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:436.43,441.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:444.2,449.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:453.44,470.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:473.42,481.42 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:481.42,486.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:489.2,500.36 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:504.44,512.44 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:512.44,517.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:520.2,521.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:521.43,526.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:529.2,540.40 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:544.43,551.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:554.44,566.44 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:566.44,571.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:574.2,578.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:578.43,583.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:586.2,587.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:587.42,592.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:595.2,596.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:596.43,601.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/builtin.go:604.2,621.40 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:61.73,65.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:65.53,67.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:70.2,71.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:71.16,75.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:78.2,78.84 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:78.84,79.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:79.17,81.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:84.3,84.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:84.19,85.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:85.40,87.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:88.4,88.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:92.3,92.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:92.38,94.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:97.3,98.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:98.24,103.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:106.3,108.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:111.2,111.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:111.16,113.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:115.2,115.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:144.69,147.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:147.16,150.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:151.2,152.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:152.16,155.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:158.2,159.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:159.16,161.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:164.2,177.24 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/module.go:205.47,207.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:21.77,25.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:25.16,27.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:30.2,37.47 5 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:37.47,41.17 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:41.17,44.12 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:48.3,48.58 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:48.58,51.12 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:54.3,55.17 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:58.2,58.19 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:58.19,60.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:62.2,62.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:66.90,68.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:68.16,70.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:72.2,73.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:73.56,75.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:77.2,77.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:81.92,83.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:83.16,85.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:87.2,88.54 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:88.54,90.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:92.2,92.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:96.90,99.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:99.16,101.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_loader.go:104.2,107.43 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:38.83,47.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:56.74,63.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:63.16,65.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:67.2,68.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:68.16,70.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:71.2,73.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:73.38,75.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:77.2,78.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:78.16,80.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:82.2,83.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:83.56,85.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:87.2,90.12 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:103.112,106.49 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:106.49,109.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:110.2,113.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:113.23,115.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:117.2,118.43 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:118.43,119.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:119.31,121.9 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:125.2,125.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:125.24,127.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:130.2,134.49 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:134.49,136.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:139.2,145.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:145.16,147.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:149.2,150.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:150.16,152.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:153.2,155.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:155.38,157.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:159.2,160.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:160.16,162.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:165.2,165.51 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:165.51,167.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:170.2,171.54 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:171.54,173.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:176.2,178.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:189.90,193.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:202.66,203.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:203.23,205.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:207.2,207.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:207.43,208.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:208.31,210.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:213.2,213.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:225.121,227.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:227.16,230.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:231.2,231.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:231.19,233.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:235.2,235.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:247.112,249.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:249.16,252.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:253.2,253.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:253.19,255.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:257.2,257.34 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:264.50,265.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:265.23,267.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:268.2,268.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:275.48,279.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/registry/stdlib_remote.go:283.45,287.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:7.39,9.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:16.36,18.74 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:18.74,20.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:21.2,21.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:24.40,26.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:28.42,30.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:32.44,34.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:43.55,45.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:47.46,49.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:51.44,53.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:55.48,57.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:59.53,61.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:63.45,65.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:76.47,78.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:80.39,82.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:84.53,86.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:88.80,89.68 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:89.68,90.53 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:90.53,92.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:94.2,94.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:97.72,98.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:98.60,100.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:101.2,101.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:104.52,106.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:112.47,114.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/container.go:116.35,118.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:11.44,13.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:15.48,17.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:19.46,21.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:31.32,33.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:35.38,37.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:39.42,41.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:43.40,45.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:47.32,48.2 0 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:50.30,52.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:61.45,63.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:65.52,67.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:69.46,71.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:73.53,75.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:77.37,79.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:81.36,83.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:85.40,87.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:89.43,90.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:90.26,92.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:93.2,93.23 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:96.59,98.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:105.34,107.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:114.41,116.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:122.56,124.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:126.53,128.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:130.42,132.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:139.41,141.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:148.34,150.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:157.33,159.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:166.33,168.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:175.33,177.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:184.33,186.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:193.33,195.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:202.33,204.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:211.40,213.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:220.34,222.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:229.40,231.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:238.40,240.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:247.34,249.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:256.41,258.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:265.34,267.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:274.49,276.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:283.41,285.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:293.51,295.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:297.47,299.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:301.49,303.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:305.46,307.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/expr.go:309.45,311.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:19.63,25.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:27.45,28.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:28.29,29.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:29.30,31.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:33.2,33.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:36.42,37.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:37.29,38.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:38.27,40.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:42.2,42.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:45.46,46.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:46.29,47.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:47.31,49.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:51.2,51.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:54.44,55.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:55.29,56.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:56.29,58.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:60.2,60.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:63.46,65.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:65.29,66.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:66.29,68.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:70.2,70.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:73.45,74.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:74.29,75.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:75.30,77.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:79.2,79.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:82.45,83.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:83.29,84.30 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:84.30,86.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/javadoc.go:88.2,88.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:10.46,12.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:14.57,16.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:18.35,20.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:22.36,24.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:26.44,28.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:30.32,32.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/module.go:38.39,40.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:55.44,57.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:59.39,61.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:63.39,65.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:67.51,69.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:71.38,73.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:75.41,77.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:112.52,114.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:116.43,118.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:120.46,122.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:124.45,126.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:128.43,130.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:145.57,147.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:149.50,151.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:153.49,156.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:158.44,160.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:162.44,164.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:166.47,168.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:206.57,208.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:210.49,213.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:215.44,217.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:219.47,221.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:223.45,225.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:227.47,229.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:245.63,247.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:249.55,252.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:254.50,256.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:258.53,260.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:262.51,264.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:266.53,268.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:284.57,286.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:288.49,291.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:293.44,295.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:297.47,299.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:301.46,303.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:320.59,322.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:324.51,327.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:329.46,331.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:333.49,335.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:337.50,339.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:341.47,343.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:358.59,360.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:362.51,365.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:367.46,369.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:371.49,373.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:375.49,377.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:395.57,397.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:399.49,402.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:404.44,406.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:408.47,410.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:412.53,414.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:416.45,418.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:420.46,422.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/model/stmt.go:424.48,426.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:19.57,20.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:20.17,22.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:23.2,26.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:30.80,34.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:37.28,57.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:60.74,65.46 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:65.46,67.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:70.2,70.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:70.33,72.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:72.38,74.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:77.2,77.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:80.70,82.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:82.16,84.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:86.2,87.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:87.27,89.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:91.2,92.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:92.29,94.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:96.2,114.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:117.32,118.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:118.12,120.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/csv_formatter.go:121.2,121.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:21.69,22.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:22.17,24.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:25.2,29.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:33.118,45.16 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:45.16,47.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:50.2,53.60 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:53.60,55.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:57.2,57.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:61.94,63.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:63.27,65.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:66.2,66.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:66.32,68.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:69.2,69.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:73.86,79.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:79.24,80.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:80.65,81.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:81.32,83.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:84.4,86.57 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:86.57,88.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:88.19,90.6 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:96.2,96.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:96.24,98.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:100.2,100.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:104.87,113.20 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:113.20,116.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:116.21,118.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:121.2,121.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:125.48,127.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:127.20,129.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:130.2,130.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:134.82,139.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:139.24,141.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:144.2,145.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:145.16,147.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:150.2,151.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:151.23,153.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:155.2,156.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:156.19,158.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:159.2,160.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:160.26,162.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:164.2,167.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:167.40,168.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:168.31,174.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:177.2,177.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:181.69,183.44 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:183.44,185.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:188.2,189.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:189.16,191.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:192.2,196.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:196.21,198.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:200.2,200.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:200.38,202.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:205.2,206.19 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:210.74,219.25 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:219.25,221.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:224.2,224.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:224.27,226.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:229.2,231.13 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:235.43,237.11 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:238.51,239.11 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:240.10,241.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:246.63,249.27 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:249.27,252.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:252.16,254.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:257.2,257.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:261.88,291.2 6 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:294.117,296.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:296.33,298.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:298.17,299.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:301.3,301.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/enricher.go:303.2,303.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:30.47,33.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:50.103,52.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:52.15,54.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:57.2,57.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:57.22,59.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:62.2,63.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:63.34,65.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:67.2,67.33 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:67.33,68.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:68.52,70.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:73.2,73.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:78.41,80.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:80.17,82.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:84.2,86.29 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:86.29,88.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:88.20,90.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:92.2,92.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:98.52,101.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:101.38,103.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:103.35,108.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/exit_code.go:110.2,110.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:19.59,20.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:20.17,22.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:23.2,26.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:30.82,34.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:127.112,133.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:135.122,158.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:160.88,163.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:163.33,175.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:177.2,177.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:180.80,188.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:188.20,190.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:193.2,193.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:193.32,195.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:195.40,197.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:198.3,202.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:205.2,205.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:208.82,214.107 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:214.107,224.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:226.2,226.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/json_formatter.go:229.80,235.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:20.50,27.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:31.73,38.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:42.63,43.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:43.37,45.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:50.64,51.37 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:51.37,53.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:58.60,59.35 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:59.35,63.3 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:67.62,69.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:72.60,74.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:77.50,79.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:79.16,81.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:85.55,87.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:90.59,92.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:92.30,94.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:95.2,95.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:99.39,100.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:100.36,102.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:103.2,104.40 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:104.40,106.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:110.45,115.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:118.45,120.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:123.35,125.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/logger.go:128.33,130.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/options.go:35.41,42.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/options.go:45.53,47.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/options.go:50.48,52.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:21.61,22.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:22.17,24.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:25.2,28.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:32.84,36.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:39.95,41.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:41.16,43.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:45.2,51.33 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:51.33,53.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:55.2,59.31 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:62.106,65.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:65.33,66.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:66.24,67.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:69.3,73.55 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:73.55,75.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:75.29,77.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:78.4,78.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:78.31,80.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:81.4,81.54 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:84.3,94.60 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:97.2,97.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:100.74,102.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:102.28,104.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:106.2,106.23 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:106.23,108.32 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:108.32,111.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:114.2,114.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:117.42,119.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:119.39,121.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:122.2,122.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:125.72,126.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:127.26,128.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:129.16,130.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:131.21,132.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:133.10,134.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:138.92,151.2 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:153.66,154.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:155.18,156.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:157.14,158.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:159.16,160.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:161.13,162.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:163.10,164.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:168.82,170.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:170.34,172.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:174.2,181.107 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:181.107,183.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:186.88,188.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:188.20,190.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:192.2,195.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:195.29,197.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:199.2,208.30 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:211.88,212.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:212.66,214.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:216.2,217.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:217.20,219.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:222.2,223.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:223.36,225.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:227.2,228.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:228.34,230.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/sarif_formatter.go:232.2,270.65 8 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:20.75,21.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:21.17,23.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:24.2,28.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:32.98,36.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:39.93,40.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:40.26,43.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:45.2,49.38 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:49.38,51.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:53.2,53.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:56.39,59.2 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:61.43,65.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:67.75,76.36 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:76.36,77.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:77.52,79.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:83.114,85.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:85.33,88.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:89.2,89.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:92.98,101.33 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:101.33,102.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:102.19,104.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:104.9,106.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:108.2,108.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:111.74,121.27 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:121.27,123.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:124.2,124.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:124.29,126.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:127.2,127.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:127.24,129.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:130.2,137.32 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:137.32,139.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:140.2,143.107 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:143.107,145.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:148.2,151.24 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:154.77,162.2 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:164.69,166.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:166.16,168.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:169.2,169.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:169.16,171.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:172.2,172.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:172.18,174.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:175.2,175.13 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:178.67,181.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:181.37,182.31 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:182.31,184.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:186.2,188.37 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:188.37,190.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:190.23,192.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:193.3,197.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:201.68,202.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:202.36,204.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:206.2,213.28 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:216.76,217.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:218.32,219.28 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:220.35,221.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:222.36,223.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:224.10,225.19 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:229.56,236.68 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:236.68,237.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:237.60,239.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:241.2,241.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:241.20,243.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:244.2,244.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:247.59,249.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:249.53,251.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:252.2,252.24 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:266.84,274.33 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:274.33,277.3 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/output/text_formatter.go:279.2,279.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:51.148,77.16 10 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:77.16,80.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:80.8,93.3 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:97.2,101.53 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:101.53,102.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:102.42,103.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:106.3,107.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:107.17,108.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:112.3,113.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:113.17,114.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:117.3,117.64 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:121.2,125.44 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:125.44,126.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:126.42,127.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:130.3,131.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:131.17,132.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:136.3,136.109 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:141.2,144.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:144.53,145.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:145.42,146.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:149.3,150.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:150.17,151.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:155.3,155.109 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:159.2,162.53 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:162.53,164.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:164.42,165.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:169.3,170.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:170.17,172.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:176.3,177.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:177.17,179.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:183.3,184.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:184.17,186.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:190.3,193.38 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:193.38,196.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:196.23,199.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:202.4,209.23 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:209.23,214.5 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:217.4,217.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:217.17,219.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:222.4,225.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:225.16,227.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:232.2,239.23 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:249.107,251.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:254.107,255.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:255.39,257.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:257.78,258.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:262.3,263.10 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:263.10,264.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:268.3,269.34 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:281.84,283.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:286.84,289.39 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:289.39,291.78 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:291.78,293.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:296.2,296.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:314.104,316.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:319.104,322.26 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:322.26,324.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:326.2,329.31 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:329.31,331.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:331.45,333.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:333.52,336.5 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:340.2,340.22 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:340.22,342.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:344.2,344.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:365.67,378.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:378.45,380.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:383.2,394.43 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:394.43,396.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:399.2,399.80 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:399.80,401.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:405.2,405.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:405.60,408.86 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:408.86,415.60 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:415.60,417.5 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:418.4,418.28 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:423.2,423.36 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:423.36,425.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:428.2,428.18 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:483.290,485.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:488.290,490.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:490.42,493.3 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:497.2,497.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:497.36,508.20 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:508.20,510.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:516.2,516.75 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:516.75,524.19 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:524.19,526.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:531.2,531.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:531.40,536.39 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:536.39,538.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:540.3,540.31 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:544.2,544.36 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:544.36,546.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:546.29,549.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:552.3,552.47 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:552.47,555.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:555.57,557.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:559.4,560.29 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:564.3,565.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:565.42,567.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:570.3,570.28 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:574.2,579.42 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:579.42,585.27 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:585.27,586.58 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:586.58,588.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:592.3,592.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:592.21,594.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:594.26,595.57 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:595.57,597.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:601.3,601.21 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:601.21,603.27 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:603.27,607.82 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:607.83,609.6 0 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:609.11,611.79 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:611.79,613.24 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:613.24,616.8 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:620.6,623.26 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:623.26,624.53 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:624.53,625.83 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:625.83,628.9 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:633.7,634.23 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:634.23,639.76 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:639.76,641.29 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:641.29,642.66 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:642.66,643.86 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:643.86,646.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:654.6,654.40 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:654.40,657.7 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:665.2,665.48 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:665.48,668.60 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:668.60,670.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:672.3,672.106 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:672.106,674.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:676.3,676.58 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:676.58,677.90 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:677.90,678.57 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:678.57,680.6 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:683.3,683.37 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:683.37,685.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:686.3,686.29 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:691.2,692.36 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:692.36,694.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:698.2,698.105 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:698.105,700.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:704.2,704.57 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:704.57,705.89 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:705.89,706.55 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:706.55,708.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:713.2,713.27 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:741.111,743.2 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:746.111,747.25 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:747.25,749.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:752.2,753.20 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:753.20,755.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:764.2,764.39 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:764.39,769.73 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:769.73,771.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:774.3,775.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:775.17,777.12 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:779.3,779.20 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:779.20,780.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:784.3,784.50 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:784.50,786.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:789.3,789.48 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:789.48,791.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:794.3,794.50 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:794.50,796.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:799.3,799.51 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:799.51,801.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:804.2,804.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:820.66,822.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:825.66,827.40 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:827.40,829.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:833.2,834.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:834.17,836.50 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:836.50,838.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:841.2,841.14 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:846.168,848.40 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:848.40,853.39 3 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:853.39,855.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:857.3,857.26 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:861.2,861.36 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:861.36,863.29 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:863.29,866.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:869.3,869.47 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:869.47,872.57 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:872.57,874.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:876.4,877.24 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:881.3,882.42 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:882.42,884.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:887.3,887.23 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:891.2,896.48 4 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:896.48,899.60 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:899.60,901.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:903.3,903.106 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:903.106,905.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:906.3,906.37 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:906.37,908.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:909.3,909.24 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:914.2,915.36 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:915.36,917.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:921.2,921.105 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:921.105,923.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:926.2,926.22 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:940.53,942.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:945.61,947.66 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:947.66,949.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:952.2,952.63 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:952.63,954.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:957.2,957.15 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:961.55,964.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:964.16,966.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:968.2,969.35 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:972.52,977.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:977.16,979.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:982.2,983.29 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:983.29,985.84 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:985.84,988.31 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:988.31,990.72 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:990.72,992.59 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:992.59,994.7 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1000.2,1000.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1003.47,1005.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1005.21,1007.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1008.2,1008.21 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1008.21,1010.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/builder.go:1011.2,1011.11 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:23.42,27.2 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:36.71,42.2 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:49.74,54.2 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:72.131,74.42 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:74.42,76.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:79.2,80.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:80.16,82.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/cache.go:85.2,87.23 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:19.53,21.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:21.16,23.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:24.2,24.29 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:39.76,40.17 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:40.17,42.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:45.2,46.41 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:46.41,48.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:51.2,51.46 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:51.46,52.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:52.77,54.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/helpers.go:57.2,57.12 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/integration.go:29.147,33.16 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/integration.go:33.16,35.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/integration.go:36.2,41.16 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/integration.go:41.16,43.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/integration.go:44.2,50.39 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:25.115,32.53 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:32.53,35.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:35.17,37.12 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:41.3,42.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:42.17,44.12 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:48.3,49.26 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:49.26,51.19 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:51.19,53.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:54.4,54.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:58.3,59.17 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:59.17,61.19 2 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:61.19,63.5 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:64.4,64.12 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:68.3,87.25 5 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:87.25,89.4 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:92.3,92.18 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/builder/taint.go:92.18,94.4 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:54.171,57.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:57.16,59.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:62.2,63.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:63.16,65.3 1 0 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:68.2,71.56 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:83.108,93.43 3 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:93.43,98.42 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:98.42,100.21 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:100.21,116.56 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:116.56,117.67 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:117.67,118.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:118.38,119.81 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:119.81,123.14 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:130.5,130.52 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:130.52,131.65 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:131.65,132.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:132.38,133.77 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:133.77,137.14 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:143.5,143.45 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:148.2,148.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:154.61,155.38 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:155.38,157.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:159.2,160.16 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:160.16,162.3 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:163.2,168.21 4 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:168.21,169.32 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:169.32,172.4 2 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:173.3,173.16 1 1 -github.com/shivasurya/code-pathfinder/sast-engine/graph/callgraph/integration.go:176.2,176.11 1 1 diff --git a/sast-engine/docker-compose.yml b/sast-engine/docker-compose.yml new file mode 100644 index 00000000..2d39d472 --- /dev/null +++ b/sast-engine/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3.8' + +services: + web: + image: nginx:latest + privileged: true + network_mode: host + pid: host + ipc: host + cap_add: + - SYS_ADMIN + - NET_ADMIN + security_opt: + - seccomp:unconfined + - label:disable + volumes: + - /var/run/docker.sock:/var/run/docker.sock + + app: + image: myapp:latest + container_name: myapp-prod