Skip to content

Instantly share code, notes, and snippets.

View 0x1F602's full-sized avatar

PN 0x1F602

  • International Space Station
View GitHub Profile
@0x1F602
0x1F602 / quickscan.pl
Created February 6, 2022 20:50 — forked from rkulla/quickscan.pl
Simple Perl-based Port Scanner
#!/usr/bin/perl
# Easy port scanner
# I wrote this in the 90s to help learn socket programming
# ./quickscan -h for usage
use Socket;
$| = 1; # so \r works right
my ($ip, $protocol, $port, $myhouse, $yourhouse, $log);