Skip to content

Instantly share code, notes, and snippets.

View JBalanza's full-sized avatar

Javier JBalanza

View GitHub Profile
@JBalanza
JBalanza / ConsolePortScanner.cs
Created June 27, 2023 08:17 — forked from jonlabelle/ConsolePortScanner.cs
Simple async C# Open Port Network Scanner
using System;
using System.Threading.Tasks;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Diagnostics;
using System.Net.Sockets;
namespace ConsolePortScanner
{
class MainClass