Skip to content

Device search#146

Open
doanac wants to merge 5 commits into
mainfrom
device-search
Open

Device search#146
doanac wants to merge 5 commits into
mainfrom
device-search

ui: Add autocomplete logic for device filtering

21da9dc
Select commit
Loading
Failed to load commit list.
GitHub Advanced Security / Semgrep OSS succeeded May 14, 2026 in 5s

1 new alert

New alerts in code changed by this pull request

  • 1 warning

See annotations below for details.

View all branch alerts.

Annotations

Check warning on line 42 in server/ui/web/templates/templates.go

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: go.lang.security.audit.xss.template-html-does-not-escape.unsafe-template-type Warning

Semgrep could not determine that the argument to 'template.HTML()' is a constant. 'template.HTML()' and similar does not escape contents. Be absolutely sure there is no user-controlled data in this template. If user data can reach this template, you may have a XSS vulnerability. Instead, do not use this function and use 'template.Execute()'.

Check warning on line 268 in storage/api/api_storage.go

See this annotation in the file changed.

Code scanning / Semgrep OSS

Semgrep Finding: go.lang.security.audit.database.string-formatted-query.string-formatted-query Warning

String-formatted SQL query detected. This could lead to SQL injection if the string is not sanitized properly. Audit this call to ensure the SQL is not manipulable by external data.