Posts for: #Docker

Kasm Workspaces

What is Kasm Workspaces?

  • It’s a platform to stream your workspace directly to your web browser on any device and from any location.
  • Browser-based access to a secure and customized work environment. Work from any location on any device.

Cloud Desktops

  • Windows/Linux Desktops
    • Windows Enterprise deployments – including Microsoft Remote Desktop Servers (RDS), Azure Virtual Desktops (AVD), Fixed Servers running Remote Desktop Protocol (RDP) to Autoscaled Cloud (AWS, Azure, GCP, OCI) and On-Prem (VMWare ESXi and OpenStack).
    • Containerized Desktop Infrastructure® (CDI) running on a shared Linux kernel for lightning fast boot times, less compute, memory and disk space. Develop pipeline automation streamlines security patches, software updates and maximizes performance.
Web Isolation
  • Kasm Cloud Browser
    • Zero-Trust Browser Isolation SaaS. Keep your web browsing secure, private, and non-attributable with no risk of compromising your endpoint. A fully-patched, disposable browser that is destroyed after each use, eliminating all traces of malware, tracking cookies, browser history, browser caching, and session fingerprints.
Digital Investigations
  • Kasm Cloud OSINT
    • Open Source Intelligence and Web Research SaaS. A zero-trust web intermediary providing security and anonymity while using research and intelligence collection tools.
Remote Access
  • Eliminates the risk of direct attacks on the internal network. This removes the endpoint from your attack surface!
Enterprise Browsers
  • The Browser is the Application! Being self-contained environment, there is no worries about Malware and Data loss
App Streaming
  • Access applications directly from your browser, no install, no maintenance.

… Cool, why should I care? How do I use it?

  • It’s a platform to stream your workspace directly to your web browser on any device and from any location!!
  • Instant network obscurification!

Pre requirements:

  • Docker
  • Server
  • 5 minutes

Straight from their install docs, Kasm makes it really easy to get it installed and let you start playing with it

Read more

Docker Debian Install

Add Docker’s official GPG key:

sudo apt-get update
sudo apt-get install ca-certificates curl
sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc

Add the repository to Apt sources:

echo \
  "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/docker.asc] https://download.docker.com/linux/debian \
  $(. /etc/os-release && echo "$VERSION_CODENAME") stable" | \
  sudo tee /etc/apt/sources.list.d/docker.list > /dev/null
sudo apt-get update

Install latest version

sudo apt-get install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin

Verify that the installation is successful by running the hello-world image:

sudo docker run hello-world

This command downloads a test image and runs it in a container. When the container runs, it prints a confirmation message and exits.

Read more