.DS_Store” is an abbreviation for “Desktop Services Store”. These files are created automatically by Apples “Finder” software (which is part of their OS).
They store information about the files within a folder, including display options of folders, such as icon positions and view settings.
It may happen that .DS_Store files inadvertently leak filenames such as database backups or private administration panels.
Severity: low
Fingerprint: 5f32cf5d6962f09c63442d9d63442d9d2045b8002045b8002045b8002045b800
Found 1 files trough .DS_Store spidering: /kasm-demo
Open service 35.185.44.232:443 · helm.kasmweb.com
2025-12-20 05:25
HTTP/1.1 200 OK
Cache-Control: max-age=600
Content-Length: 2616
Content-Type: text/html; charset=utf-8
Etag: "da78dbcb21abb58c6996c8e527ae4c4ce5040ec98bcba1aa78921def625ee92a"
Expires: Sat, 20 Dec 2025 05:35:27 UTC
Last-Modified: Mon, 17 Nov 2025 12:34:56 GMT
Permissions-Policy: interest-cohort=()
Vary: Origin
X-Request-Id: 01KCX3GKZQEYKQNYHCCMA5VZN9
Date: Sat, 20 Dec 2025 05:25:27 GMT
Connection: close
Page title: Kasm Deployment Documentation
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Kasm Deployment Documentation</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css">
</head>
<body>
<div class="container mt-5">
<header class="text-center mb-4">
<h1>Kasm Helm Chart Deployment</h1>
<p class="lead">Deploy Kasm in your Kubernetes environment using Helm</p>
</header>
<section>
<h2>Deploy</h2>
<p>The following will deploy Kasm in your Kubernetes environment.</p>
</section>
<section>
<h2>Prerequisite</h2>
<p>StorageClass for Persistent Volume Claims (PVC): A StorageClass must be configured in the cluster to create Persistent Volume Claims (PVC) for the postgres-db.</p>
</section>
<section>
<h2>Deploy Helm Chart</h2>
<p>Refer to the <a href="https://helm.kasmweb.com/values.yaml" target="_blank">values.yaml</a> for available Helm values and their default configurations.</p>
<p>To begin, it's recommended to start by adding the <code>global.hostname</code> value in the values.yaml file. This will set the hostname for TLS certificates and the ingress URL.</p>
</section>
<section>
<h2>Next Steps</h2>
<p>Once the Helm chart is fully deployed, add the ingress IP address to your DNS zone. After that, you should be able to access your Kasm instance at <code>https://{hostname}</code>, for example: <code>https://kasm.example.com</code>.</p>
</section>
<section>
<h3>Login Kasm Admin Console</h3>
<p>The default admin username is <code>admin@kasm.local</code>. To retrieve the password, run the following kubectl command:</p>
<pre><code>kubectl get secret --namespace {namespace} kasm-secrets -o jsonpath="{.data.admin-password}" | base64 -d</code></pre>
</section>
<section>
<h3>Install Agent</h3>
<p>Kasm agents are responsible for issuing compute resources, and they need to be deployed separately on a dedicated VM (Kasm does not currently support deploying the agent in Kubernetes). For a detailed installation guide, refer to the <a href="https://kasmweb.com/docs/latest/install/multi_server_install.html#install-agent-server-role-s" target="_blank">Kasm Agent Documentation</a>.</p>
<p>To retrieve the manager token, use the following kubectl command:</p>
<pre><code>kubectl get secret --namespace {namespace}