GO-2025-4243: Libredesk has Improper Neutralization of HTML Tags in a Web Page in github.com/abhinavxd/libredesk
package
Version:
v1.0.3
Opens a new window with list of versions in this module.
Published: Feb 26, 2026
License: AGPL-3.0
Opens a new window with license information.
Imports: 7
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
Importer manages background import jobs.
New creates and returns a new instance of the Importer.
AddLog appends a log message to the job status.
Close gracefully shuts down the importer.
GetStatus returns the status of an import job.
Submit submits a new import job for execution.
UpdateCounts updates the success/error counts and total.
type Job struct {
Running bool `json:"running"`
Logs []string `json:"logs"`
Total int `json:"total"`
Success int `json:"success"`
Errors int `json:"errors"`
StartedAt time.Time `json:"started_at"`
EndedAt time.Time `json:"ended_at"`
}
Job represents the status of an import job.
Opts contains options for initializing the Importer.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.