Skip to content

Instantly share code, notes, and snippets.

@BarelyAliveMau5
BarelyAliveMau5 / WebSocketServer.cs
Last active March 16, 2022 17:54 — forked from wildbook/WebSocketServer.cs
Very simple websocket server in C#, adapted to work in powershell 5.0 (C# 5.0 syntax)
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Sockets;
using System.Security.Cryptography;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading;