Zigbee 101

What the Junk is Zigbee?:

Zigbee is a low-power, low-data-rate wireless communication protocol designed for short-range communication in personal area networks (PANs), particularly for Internet of Things (IoT) devices. It operates primarily in the 2.4 GHz ISM band (International System for Microwave Communications), although it also supports frequencies in the 868 MHz (Europe) and 915 MHz (North America) bands. Zigbee is built on the IEEE 802.15.4 standard for the physical (PHY) and media access control (MAC) layers, and it provides networking, security, and application layers for higher-level communication.

Read more

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

Integrating ProGet with Chocolatey

If you want to use ProGet as a private Chocolatey repository, follow these steps to host, push, and install Chocolatey packages from ProGet.


1. Create a Chocolatey Feed in ProGet

  1. Log into your ProGet Web UI (http://localhost:81 or your configured address).
  2. Go to FeedsCreate New Feed.
  3. Select Feed Type: Chocolatey.
  4. Give it a name, e.g., choco-packages.
  5. Configure permissions (optional) to control who can push/install packages.
  6. Click “Create Feed”.

2. Configure Chocolatey to Use ProGet

Run this in PowerShell (as Admin) to add ProGet as a Chocolatey source:

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