Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix Updating the secure path for the different scan links and the docs #27

Draft
wants to merge 1 commit into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,9 @@ proxy:

...

+ sysdig:
+ endpoint: ${SYSDIG_SECURE_ENDPOINT}
+ backlink: https://... # Optional override base link for backlinks. Must end in '/'.
+sysdig:
+ endpoint: ${SYSDIG_SECURE_ENDPOINT}
+ backlink: https://... # Optional override base link for backlinks. Must end in '/'.
```

- Set the environment variable `SYSDIG_SECURE_ENDPOINT` to your Sysdig Secure Endpoint.
Expand Down
14 changes: 8 additions & 6 deletions src/lib/endpoints.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,18 +24,20 @@ export const API_INVENTORY = "/api/cspm/v1/inventory/resources";
*/
let DEFAULT_BACKLINK_BASE: string = "https://secure.sysdig.com/"

const BACKLINKS: Record<string, string> = {
let SECURE_PREFIX: string = "secure/#/";

const SECURE_BACKLINKS: Record<string, string> = {
// Backlink path to Vulnerability Management at Runtime
"vm-runtime": "#/vulnerabilities/runtime/",
"vm-runtime": SECURE_PREFIX + "vulnerabilities/runtime/",

// Backlink path to Vulnerability Management at Registry
"vm-registry": "#/vulnerabilities/registry/",
"vm-registry": SECURE_PREFIX + "vulnerabilities/registry/",

// Backlink path to Vulnerability Management at Pipeline
"vm-pipeline": "#/vulnerabilities/pipeline/",
"vm-pipeline": SECURE_PREFIX + "vulnerabilities/pipeline/",

// Backlink path to Inventory
"inventory": "#/inventory"
"inventory": SECURE_PREFIX + "inventory"
}

export function getBacklink(endpoint: string | undefined, backlink: string | undefined, section: string) : string {
Expand All @@ -47,7 +49,7 @@ export function getBacklink(endpoint: string | undefined, backlink: string | und
backlink_base = endpoint
}

let backlink_section : string = BACKLINKS[section];
let backlink_section : string = SECURE_BACKLINKS[section];

if (backlink_section === undefined) {
return "";
Expand Down