Skip to content

Instantly share code, notes, and snippets.

@tcartwright
Last active March 24, 2024 16:38
Show Gist options
  • Save tcartwright/5ac83cd083268878fb50cc28bbb75159 to your computer and use it in GitHub Desktop.
Save tcartwright/5ac83cd083268878fb50cc28bbb75159 to your computer and use it in GitHub Desktop.
Windows: Powershell telnet client. Can run interactively or take an array of commands
<#
.Synopsis
Tests the connectivity between two computers on a TCP Port
.Description
The Telnet command tests the connectivity between two computers on a TCP Port. By running this command, you can determine if specific service is running on Server.
.Parameter <ComputerName>
This is a required parameter where you need to specify a computer name which can be localhost or a remote computer
.Parameter <Port>
This is a required parameter where you need to specify a TCP port you want to test connection on.
.Parameter <Timeout>
This is an optional parameter where you can specify the timeout in milli-seconds. Default timeout is 10000ms (10 seconds)
.Parameter <Commands>
This is an optional parameter where you can send in a string array of the commands to issue to the remote host when connected. If this parameter is omitted, you will be prompted for commands to send.
.Example
Telnet -ComputerName DC1 -Port 3389
This command reports if DC1 can be connected on port 3389 which is default port for Remote Desktop Protocol (RDP). By simply running this command, you can check if Remote Desktop is enabled on computer DC1.
.Example
Telnet WebServer 80
This command tells you if WebServer is reachable on Port 80 which is default port for HTTP.
.Example
Get-Content C:\Computers.txt | Telnet -Port 80
This command will take all the computernames from a text file and pipe each computername to Telnet Cmdlet to report if all the computers are accessible on Port 80.
.NOTES
Original sources:
- https://www.techtutsonline.com/powershell-alternative-telnet-command/
- https://www.leeholmes.com/blog/2009/10/28/scripting-network-tcp-connections-in-powershell/
Tim Cartwright: Updated to be interative, also can optionally take a command list to be like a full featured telnet client
#>
Function Telnet {
[CmdletBinding()]
param(
[Parameter(Mandatory=$true,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
[Alias ('HostName','cn','Host','Computer')]
[String]$ComputerName='localhost',
[Parameter(Mandatory=$true,
ValueFromPipeline=$true,
ValueFromPipelineByPropertyName=$true)]
[int32]$Port,
[int32] $Timeout = 10000,
[string[]] $Commands
)
begin {
$commandPosition = 0
$commandCount = $Commands.Count
## Create a buffer to receive the response
$buffer = new-object System.Byte[] 1024
$encoding = new-object System.Text.AsciiEncoding
$outputBuffer = ""
$foundMore = $false
}
Process {
foreach($Computer in $ComputerName) {
try {
$tcp = New-Object System.Net.Sockets.TcpClient
$connection = $tcp.BeginConnect($Computer, $Port, $null, $null)
$connection.AsyncWaitHandle.WaitOne($timeout,$false) | Out-Null
if ($tcp.Connected) {
Write-Host "Successfully connected to Host: `"$Computer`" on Port: `"$Port`"" -ForegroundColor Green
$tcpStream = $tcp.GetStream()
$tcpStream.ReadTimeout = 1000
$writer = New-Object System.IO.StreamWriter($tcpStream)
$writer.AutoFlush = $true
while ($command -ine "exit") {
$outputBuffer = ""
# Read all the data available from the stream, writing it to the outputbuffer when done.
do {
# Read what data is available
$foundmore = $false
do {
try {
$read = $tcpStream.Read($buffer, 0, 1024)
if ($read -gt 0) {
$foundmore = $true
$outputBuffer += ($encoding.GetString($buffer, 0, $read))
}
} catch {
$foundMore = $false;
$read = 0
}
} while ($read -gt 0)
} while ($foundmore)
# write the recieved data out to the host
if (!([string]::IsNullOrWhiteSpace($outputBuffer))) {
# remove the last LF char, and write the output out to the host
Write-Host $outputBuffer.TrimEnd("`n")
}
$command = ""
if ($Commands.Count -eq 0) {
# prompt the user for the command to send
$command = Read-Host -Prompt "Command"
} else {
# we got a command array, lets select the command out, and get ready to pick the next one
if ($commandPosition -ge $commandCount) { break; }
$command = $commands[$commandPosition];
$commandPosition++;
# clean up the command so we can write it out
$cmd = $command -replace "`r|`n", " "
if ($cmd.Length -ge 80) { $cmd = $cmd.SubString(0, 80) + "..." }
Write-Host "Sending: $cmd" -ForegroundColor Yellow
}
# write the command back to the remote host
if (!([string]::IsNullOrWhiteSpace($command))) {
$writer.WriteLine($command);
}
}
Write-Host "`r`nDone." -ForegroundColor Yellow
} else {
Write-Host "Could not connect to Host: `"$Computer `" on Port: `"$Port`"" -ForegroundColor Red
}
} catch {
Write-Host "Unknown Error: $($_)" -ForegroundColor Red
} finally {
if ($writer -ne $null) { $writer.Dispose(); }
if ($tcp -ne $null) { $tcp.Dispose(); }
}
}
}
End {}
}
#This file MUST be run with administrator priviledges
$scriptRoot = [System.IO.Directory]::GetParent($MyInvocation.MyCommand.Definition)
$userProfile = [System.Text.RegularExpressions.Regex]::Escape($env:UserProfile)
$path = $env:PSModulePath -split ';' | Where-Object { $_ -match $userProfile } | Select-Object -First 1
New-Item -ItemType File -Path "$path\Telnet\Telnet.psm1" -Force
Copy-Item "$scriptRoot\Telnet.psm1" -Destination "$path\Telnet\Telnet.psm1"
#ise "$path\Telnet\Telnet.psm1"
Clear-Host
Import-Module Telnet -Force
# Get-Help telnet -Full
$searcher = [adsisearcher]"(samaccountname=$env:USERNAME)"
$props = $searcher.FindOne().Properties
$email = $props.mail
$name = $props.displayname
## this line could be slightly diff for other domains
$mailServer = (Resolve-DnsName -Name "$($env:USERDOMAIN).COM" -Type MX) | Select-Object -First 1 -ExpandProperty NameExchange
#INTERATIVE MODE:
# Telnet -ComputerName $mailServer -Port 25
Telnet -ComputerName $mailServer -Port 25 -Commands @( "helo example.com", `
"mail from:$email", `
"rcpt to:$email", `
"data", `
"To: `"$name`" <$email>", `
"Subject: My Telnet Test Email", `
"Hello $name, `r`n`r`nThis is an email sent by using the telnet command from powershell.", `
"`r`n.`r`n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment