Public scan — anyone with this URL can view this analysis. Sign up to track your own repos privately, run scheduled re-scans, and get AI fix prompts via your dashboard.
100 of your 136 findings came from Repobility's proprietary detections. ✓ Repobility tags below mark them.

Scan timing: clone 12.53s · analysis 19.53s · 76.2 MB · GitHub API rate-limit (preflight)

PolicyEngine/policyengine-us

https://github.com/PolicyEngine/policyengine-us · scanned 2026-06-05 22:34 UTC (4 days, 6 hours ago) · 10 languages

2574 raw signals (130 security + 2444 graph) 11/13 scanners ran 42nd percentile · Python · large (100-500K LoC) System graph score 80 (lower by 7)

UNIFIED Repobility · multi-layer engine · AI coders

Complete repo analysis

Last scanned 4 days, 6 hours ago · v2 · 1208 actionable findings from 2 signal sources. 134 repeated signals grouped for readability. Security checks, system graph analysis, and verified AI-agent feedback are merged into one review queue.

JSON
Score breakdown â 2026-05-18-v5
Component Sub-score Weight Contribution
structure_score 60.0 0.15 9.00
security_score 100.0 0.25 25.00
testing_score 32.0 0.20 6.40
documentation_score 91.0 0.15 13.65
practices_score 80.0 0.15 12.00
code_quality 71.0 0.10 7.10
Overall 1.00 73.1
security_score may be inflated — optional security scanners were skipped on this fast scan
Severity distribution — click a segment to filter
Active filters: excluding tests × Reset all
Scan summary Quality grade B (73/100). Dimensions: security 100, maintainability 60. 130 findings (29 security). 179,713 lines analyzed.

Showing 886 of 1208 actionable findings. 1342 raw detector signals were grouped into reader-sized issues. Click TP / FP to vote on a finding's accuracy — votes adjust the confidence weighting and improve detection across the platform.

high Security checks quality Quality conf 1.00 ✓ Repobility [MINED107] Missing import: `html` used but not imported: The file uses `html.something(...)` but never imports `html`. This raises NameError at runtime the first time the line executes.
Add `import html` at the top of the file.
policyengine_us/tools/add_plotly_to_book.py:21
critical Security checks software dependencies conf 0.90 ✓ Repobility [MINED125] GHA script injection via github.head_ref in run-step: Multi-line `run: |` block interpolates ${{ github.head_ref }} into shell. PR title/body/branch/comment fields are attacker-controllable.
Capture the field into an env var first; reference $ENV_VAR in shell.
.github/workflows/pr.yaml:58
low Security checks cicd CI/CD security conf 0.35 ✓ Repobility Workflow references repository secrets in a pull_request workflow
Fork pull_request runs do not receive normal repository secrets on GitHub Actions. Review this as a reliability/intent signal, not as direct fork-secret exfiltration. Raise severity only for pull_request_target or another trusted-context path that runs untrusted PR code with secrets.
.github/workflows/pr.yaml:169 CI/CD securityworkflow secretsGitHub Actions
high Security checks quality Quality conf 1.00 ✓ Repobility 15 occurrences [MINED108] `self.years` used but never assigned in __init__: Method `name` of class `USMultiYearDataset` reads `self.years`, but no assignment to it exists in __init__ (and no class-level fallback). This raises AttributeError the first time the method runs against an instance.
Initialize `self.years = <default>` in __init__, or add a class-level default.
6 files, 15 locations
policyengine_us/tools/branched_simulation.py:22, 24, 26, 29, 30 (5 hits)
policyengine_us/reforms/taxsim.py:128, 129, 130, 131 (4 hits)
policyengine_us/data/dataset_schema.py:215, 220, 240 (3 hits)
policyengine_us/reforms/dc_kccatc.py:80
policyengine_us/reforms/dc_tax_threshold_joint_ratio.py:30
policyengine_us/reforms/winship.py:76
low Security checks security Injection conf 1.00 [SEC103] LDAP injection — non-constant search filter: User input concatenated into an LDAP search filter. Attackers inject `*)(uid=*` style payloads to bypass auth or enumerate accounts.
Escape with javax.naming.ldap.Rdn.escapeValue or equivalent. For python-ldap, use ldap.filter.escape_filter_chars. Better: use parameterized search APIs (Spring LdapTemplate filter encoders).
.github/bump_version.py:10
medium Security checks cicd CI/CD security conf 0.90 ✓ Repobility 26 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `astral-sh/setup-uv` pinned to mutable ref `@v8.1.0`: `uses: astral-sh/[email protected]` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char com…
3 files, 26 locations
.github/workflows/pr.yaml:15, 71, 94, 118, 163, 203, 225, 261, +1 more (17 hits)
.github/workflows/push.yaml:15, 38, 51, 92, 117, 156, 181, 215 (8 hits)
.github/workflows/weekly-uv-lock.yaml:30
CI/CD securitySupply chainGitHub Actions
low Security checks cicd CI/CD security conf 0.90 ✓ Repobility 43 occurrences GitHub Action is tag-pinned rather than SHA-pinned
[MINED115] Action `actions/checkout` pinned to mutable ref `@v6`: `uses: actions/checkout@v6` resolves at workflow-run time. Tags and branches can be re-pushed by the action owner; that made the tj-actions/changed-files compromise (2025) instantly affect ~23K repos. Pin to a 40-char commit SHA + lo…
3 files, 43 locations
.github/workflows/pr.yaml:13, 24, 65, 67, 88, 90, 108, 114, +8 more (28 hits)
.github/workflows/push.yaml:29, 40, 86, 88, 111, 113, 150, 152, +4 more (12 hits)
.github/workflows/weekly-uv-lock.yaml:18, 24, 33 (3 hits)
CI/CD securitySupply chainGitHub Actions
low Security checks quality Error handling conf 1.00 3 occurrences [ERR001] Silent Exception Swallowing: Silently swallowing all exceptions hides bugs. Even in cleanup code, log at DEBUG level.
Log the error: `except Exception: logger.debug('cleanup failed', exc_info=True)`. Or handle specific exception types.
3 files, 3 locations
policyengine_us/variables/gov/puf.py:54
policyengine_us/variables/gov/ssa/revenue/employer_medicare_tax_income_tax_revenue.py:51
policyengine_us/variables/gov/ssa/revenue/employer_ss_tax_income_tax_revenue.py:51
medium Security checks quality Quality conf 1.00 ✓ Repobility [MINED109] Mutable default argument in `variation_chart` (list): `def variation_chart(... = []/{}/set())` — Python's default value is constructed ONCE at function definition time and shared across all calls. Mutating it in one call mutates it for every future call too.
Use None as the default and create the collection inside the function: `def variation_chart(x=None): x = x or []`
policyengine_us/tools/documentation.py:54
medium Security checks security path traversal conf 1.00 [SEC012] ZipSlip — Archive Path Traversal: Archive extraction without path validation allows writing files outside the target directory.
Validate extracted paths with os.path.realpath() and ensure they stay within the target directory.
policyengine_us/tools/geography/download_50_state_census_block_data.py:169
low Security checks quality Quality conf 1.00 [SEC136] AI-typical over-broad exception handler swallowing all errors: Catch-all exception block that silently returns success or no-ops. AI agents reach for this pattern when a flaky test or an unfamiliar API throws — wrap, swallow, return success. Real bugs are masked, observability is destroyed, and callers think the operation worked. CWE-396 (improperly-generalized exception). Distinct from intentional fallback because there's no log line and the success value is fabricated.
Catch the specific exception type, log at error level with full exception info, and return a failure-shaped result. If the operation is genuinely best-effort, log at warning and document why in a comment so the next reader (or scanner) knows.
policyengine_us/build_metadata.py:48
low Security checks quality Error handling conf 0.55 ✓ Repobility Broad exception handler needs review
This handler catches Exception/BaseException. It is actionable when it swallows errors without logging, re-raising, or returning a structured error. Handlers that intentionally convert exceptions into typed error results should not be treated as high risk.
policyengine_us/build_metadata.py:54 Error handlingquality
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — policyengine_us/tools/taxsim/generate_taxsim_tests.py:122
`requests.get(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph quality Integrity conf 1.00 Network/subprocess call without timeout or try/except — test.py:74
`subprocess.run(...)` here lacks both a `timeout=` arg and an enclosing try/except. This is exactly the class of bug that took down our git-clone earlier (HTTP/2 stream cancel surfaced as a fatal). Add a `timeout=` and wrap in try/except, or use a wrapper that retries.
runtime safetyRobustness
medium System graph security Coverage conf 1.00 No auth library detected
The scanner did not find any standard auth library (JWT, OAuth, NextAuth, Auth0, etc.). Either auth lives in custom code, in a separate service, or is missing.
auth
medium System graph network Security conf 1.00 Privileged port 10 in use
Port 10 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 104 in use
Port 104 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 105 in use
Port 105 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 107 in use
Port 107 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 108 in use
Port 108 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 11 in use
Port 11 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 111 in use
Port 111 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 112 in use
Port 112 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 113 in use
Port 113 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 114 in use
Port 114 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 115 in use
Port 115 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 116 in use
Port 116 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 117 in use
Port 117 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 118 in use
Port 118 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 119 in use
Port 119 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 12 in use
Port 12 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 120 in use
Port 120 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 121 in use
Port 121 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 123 in use
Port 123 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 124 in use
Port 124 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 126 in use
Port 126 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 128 in use
Port 128 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 129 in use
Port 129 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 13 in use
Port 13 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 130 in use
Port 130 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 132 in use
Port 132 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 133 in use
Port 133 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/ccdf/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 134 in use
Port 134 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/head_start/spending.yaml Ports
medium System graph network Security conf 1.00 Privileged port 135 in use
Port 135 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 137 in use
Port 137 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 138 in use
Port 138 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 139 in use
Port 139 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/cost_sharing_offsets/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 14 in use
Port 14 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 141 in use
Port 141 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/smi/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 142 in use
Port 142 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 143 in use
Port 143 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 144 in use
Port 144 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 145 in use
Port 145 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 146 in use
Port 146 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 147 in use
Port 147 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 148 in use
Port 148 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 149 in use
Port 149 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 15 in use
Port 15 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 151 in use
Port 151 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 152 in use
Port 152 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 153 in use
Port 153 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 154 in use
Port 154 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 155 in use
Port 155 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 156 in use
Port 156 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 157 in use
Port 157 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 158 in use
Port 158 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 159 in use
Port 159 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 16 in use
Port 16 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 160 in use
Port 160 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 161 in use
Port 161 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 162 in use
Port 162 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 163 in use
Port 163 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/program_admin/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 164 in use
Port 164 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/aged.yaml Ports
medium System graph network Security conf 1.00 Privileged port 165 in use
Port 165 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 166 in use
Port 166 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 168 in use
Port 168 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 169 in use
Port 169 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 17 in use
Port 17 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 170 in use
Port 170 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 171 in use
Port 171 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 173 in use
Port 173 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 174 in use
Port 174 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 175 in use
Port 175 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 176 in use
Port 176 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 177 in use
Port 177 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/ccdf/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 178 in use
Port 178 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 179 in use
Port 179 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 18 in use
Port 18 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 180 in use
Port 180 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 182 in use
Port 182 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 183 in use
Port 183 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 184 in use
Port 184 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 186 in use
Port 186 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 187 in use
Port 187 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 188 in use
Port 188 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 189 in use
Port 189 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 19 in use
Port 19 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 190 in use
Port 190 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 191 in use
Port 191 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/spending/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 192 in use
Port 192 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/medicaid_expansion_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 193 in use
Port 193 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 194 in use
Port 194 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 196 in use
Port 196 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 197 in use
Port 197 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 198 in use
Port 198 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/smi/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 199 in use
Port 199 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 20 in use
Port 20 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 209 in use
Port 209 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 21 in use
Port 21 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 211 in use
Port 211 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 212 in use
Port 212 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 213 in use
Port 213 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 214 in use
Port 214 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 216 in use
Port 216 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 217 in use
Port 217 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 218 in use
Port 218 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 219 in use
Port 219 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 220 in use
Port 220 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 221 in use
Port 221 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 222 in use
Port 222 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 223 in use
Port 223 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 224 in use
Port 224 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/head_start/early_head_start/spending.yaml Ports
medium System graph network Security conf 1.00 Privileged port 225 in use
Port 225 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 227 in use
Port 227 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 228 in use
Port 228 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/snap.yaml Ports
medium System graph network Security conf 1.00 Privileged port 229 in use
Port 229 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 2 occurrences Privileged port 23 in use
Port 23 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
2 occurrences
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml (2 hits)
Ports
medium System graph network Security conf 1.00 Privileged port 230 in use
Port 230 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/aged.yaml Ports
medium System graph network Security conf 1.00 Privileged port 231 in use
Port 231 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 232 in use
Port 232 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 233 in use
Port 233 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 234 in use
Port 234 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 235 in use
Port 235 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/child.yaml Ports
medium System graph network Security conf 1.00 Privileged port 236 in use
Port 236 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/ccdf/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 238 in use
Port 238 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/disabled.yaml Ports
medium System graph network Security conf 1.00 Privileged port 239 in use
Port 239 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 2 occurrences Privileged port 24 in use
Port 24 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
2 occurrences
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml (2 hits)
Ports
medium System graph network Security conf 1.00 Privileged port 240 in use
Port 240 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 241 in use
Port 241 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 242 in use
Port 242 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicaid/eligibility/categories/medically_needy/limit/income/individual.yaml Ports
medium System graph network Security conf 1.00 Privileged port 243 in use
Port 243 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 244 in use
Port 244 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/child.yaml Ports
medium System graph network Security conf 1.00 Privileged port 246 in use
Port 246 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 247 in use
Port 247 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 248 in use
Port 248 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 249 in use
Port 249 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 250 in use
Port 250 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/medicaid_expansion_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 251 in use
Port 251 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 253 in use
Port 253 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 254 in use
Port 254 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/cost_sharing_offsets/separate_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 255 in use
Port 255 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 256 in use
Port 256 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/non_expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 258 in use
Port 258 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 259 in use
Port 259 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 26 in use
Port 26 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 260 in use
Port 260 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 262 in use
Port 262 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 263 in use
Port 263 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/non_expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 264 in use
Port 264 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 265 in use
Port 265 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/program_admin/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 267 in use
Port 267 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/disabled.yaml Ports
medium System graph network Security conf 1.00 Privileged port 268 in use
Port 268 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 269 in use
Port 269 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 27 in use
Port 27 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 270 in use
Port 270 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 271 in use
Port 271 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/uprating.yaml Ports
medium System graph network Security conf 1.00 Privileged port 272 in use
Port 272 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 273 in use
Port 273 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/standard.yaml Ports
medium System graph network Security conf 1.00 Privileged port 274 in use
Port 274 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 275 in use
Port 275 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 276 in use
Port 276 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 277 in use
Port 277 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 278 in use
Port 278 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 279 in use
Port 279 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicare/part_b/irmaa/surviving_spouse.yaml Ports
medium System graph network Security conf 1.00 Privileged port 280 in use
Port 280 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 281 in use
Port 281 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 282 in use
Port 282 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 283 in use
Port 283 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 284 in use
Port 284 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 285 in use
Port 285 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 286 in use
Port 286 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 288 in use
Port 288 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 289 in use
Port 289 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 290 in use
Port 290 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 291 in use
Port 291 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicaid/eligibility/categories/medically_needy/limit/income/couple.yaml Ports
medium System graph network Security conf 1.00 Privileged port 292 in use
Port 292 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/uprating.yaml Ports
medium System graph network Security conf 1.00 Privileged port 293 in use
Port 293 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 294 in use
Port 294 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/utility/standard/main.yaml Ports
medium System graph network Security conf 1.00 Privileged port 295 in use
Port 295 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 296 in use
Port 296 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 297 in use
Port 297 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 298 in use
Port 298 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 299 in use
Port 299 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 306 in use
Port 306 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 309 in use
Port 309 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 31 in use
Port 31 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 311 in use
Port 311 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 312 in use
Port 312 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 314 in use
Port 314 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 315 in use
Port 315 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/ccdf/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 316 in use
Port 316 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/program_admin/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 317 in use
Port 317 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/ccdf/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 318 in use
Port 318 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 319 in use
Port 319 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 321 in use
Port 321 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 322 in use
Port 322 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicare/part_b/irmaa/joint.yaml Ports
medium System graph network Security conf 1.00 Privileged port 323 in use
Port 323 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 324 in use
Port 324 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 325 in use
Port 325 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 326 in use
Port 326 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 327 in use
Port 327 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 328 in use
Port 328 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 329 in use
Port 329 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 33 in use
Port 33 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 331 in use
Port 331 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 332 in use
Port 332 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 333 in use
Port 333 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 334 in use
Port 334 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicare/part_b/irmaa/joint.yaml Ports
medium System graph network Security conf 1.00 Privileged port 335 in use
Port 335 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 336 in use
Port 336 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/medicaid_expansion_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 337 in use
Port 337 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/medicaid_expansion_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 338 in use
Port 338 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 339 in use
Port 339 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 341 in use
Port 341 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 342 in use
Port 342 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 343 in use
Port 343 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/disabled.yaml Ports
medium System graph network Security conf 1.00 Privileged port 344 in use
Port 344 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 345 in use
Port 345 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 346 in use
Port 346 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/medicaid_expansion_chip.yaml Ports
medium System graph network Security conf 1.00 Privileged port 347 in use
Port 347 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 348 in use
Port 348 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 349 in use
Port 349 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 350 in use
Port 350 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 352 in use
Port 352 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 353 in use
Port 353 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 354 in use
Port 354 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 355 in use
Port 355 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 356 in use
Port 356 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 357 in use
Port 357 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 358 in use
Port 358 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 359 in use
Port 359 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 360 in use
Port 360 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/spending/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 361 in use
Port 361 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 362 in use
Port 362 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 363 in use
Port 363 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 364 in use
Port 364 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 365 in use
Port 365 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 366 in use
Port 366 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 367 in use
Port 367 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 368 in use
Port 368 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 369 in use
Port 369 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 370 in use
Port 370 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 371 in use
Port 371 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 372 in use
Port 372 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/census/populations/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 373 in use
Port 373 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/utility/limited/main.yaml Ports
medium System graph network Security conf 1.00 Privileged port 374 in use
Port 374 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 375 in use
Port 375 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 376 in use
Port 376 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 377 in use
Port 377 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 378 in use
Port 378 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 379 in use
Port 379 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 380 in use
Port 380 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 381 in use
Port 381 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 382 in use
Port 382 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/spending/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 383 in use
Port 383 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 384 in use
Port 384 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicare/part_b/irmaa/surviving_spouse.yaml Ports
medium System graph network Security conf 1.00 Privileged port 385 in use
Port 385 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/enrollment/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 386 in use
Port 386 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 387 in use
Port 387 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 388 in use
Port 388 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/cbo/income_by_source.yaml Ports
medium System graph network Security conf 1.00 Privileged port 389 in use
Port 389 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 39 in use
Port 39 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 390 in use
Port 390 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 391 in use
Port 391 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/irs/soi/self_employment_income.yaml Ports
medium System graph network Security conf 1.00 Privileged port 392 in use
Port 392 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/uprating.yaml Ports
medium System graph network Security conf 1.00 Privileged port 393 in use
Port 393 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 394 in use
Port 394 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicare/part_b/irmaa/separate.yaml Ports
medium System graph network Security conf 1.00 Privileged port 395 in use
Port 395 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/enrollment/expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 396 in use
Port 396 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 398 in use
Port 398 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 399 in use
Port 399 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/standard.yaml Ports
medium System graph network Security conf 1.00 Privileged port 41 in use
Port 41 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/params_on_demand/gov/hhs/medicaid/geography/medicaid_rating_area.yaml Ports
medium System graph network Security conf 1.00 Privileged port 419 in use
Port 419 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 420 in use
Port 420 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/child.yaml Ports
medium System graph network Security conf 1.00 Privileged port 427 in use
Port 427 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/utility/standard/by_household_size/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 430 in use
Port 430 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 432 in use
Port 432 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/total/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 433 in use
Port 433 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/utility/standard/by_household_size/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 434 in use
Port 434 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/aca/enrollment/state.yaml Ports
medium System graph network Security conf 1.00 Privileged port 435 in use
Port 435 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/program_admin/total.yaml Ports
medium System graph network Security conf 1.00 Privileged port 436 in use
Port 436 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/irs/soi/self_employment_income.yaml Ports
medium System graph network Security conf 1.00 Privileged port 437 in use
Port 437 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/csfp/amount.yaml Ports
medium System graph network Security conf 1.00 Privileged port 438 in use
Port 438 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/spending/by_eligibility_group/non_expansion_adults.yaml Ports
medium System graph network Security conf 1.00 Privileged port 439 in use
Port 439 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/max_allotment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 440 in use
Port 440 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/medicaid/totals/enrollment.yaml Ports
medium System graph network Security conf 1.00 Privileged port 441 in use
Port 441 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/medicaid_expansion_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 442 in use
Port 442 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/hhs/medicaid/eligibility/categories/medically_needy/limit/income/couple.yaml Ports
medium System graph network Security conf 1.00 Privileged port 444 in use
Port 444 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/gov/usda/snap/income/deductions/utility/standard/main.yaml Ports
medium System graph network Security conf 1.00 Privileged port 445 in use
Port 445 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports
medium System graph network Security conf 1.00 Privileged port 446 in use
Port 446 is privileged (<1024). Make sure the service runs with the right caps or front it with a non-privileged port via a load balancer.
policyengine_us/parameters/calibration/gov/hhs/cms/chip/spending/separate_chip/federal.yaml Ports

Showing first 300 of 886. Refine filters or use the findings page for deep search.

For AI agents: Voting guide (TP/FP) MCP manifest Stdio wrapper SARIF Integrate Findings queue Vote TP/FP on findings to calibrate the engine.
For AI agents + API integrations
Email me when this repo regresses
Free. We re-scan periodically; new criticals → your inbox. No signup required for the scan itself.
API access

This page is publicly accessible at: https://repobility.com/scan/79dd3e5f-0efc-478f-8e6a-2752562fbadd/

To check status programmatically (no auth required):

curl -s https://repobility.com/api/v1/public/scan/79dd3e5f-0efc-478f-8e6a-2752562fbadd/

Important — please don't re-submit the same URL repeatedly. The submission endpoint is idempotent: re-submitting the same git URL returns this same scan_token, not a new one. To re-scan this repo, sign up free and use the dashboard.