一区二区三区在线-一区二区三区亚洲视频-一区二区三区亚洲-一区二区三区午夜-一区二区三区四区在线视频-一区二区三区四区在线免费观看

腳本之家,腳本語(yǔ)言編程技術(shù)及教程分享平臺(tái)!
分類導(dǎo)航

Python|VBS|Ruby|Lua|perl|VBA|Golang|PowerShell|Erlang|autoit|Dos|bat|

服務(wù)器之家 - 腳本之家 - PowerShell - PowerShell小技巧之發(fā)送TCP請(qǐng)求

PowerShell小技巧之發(fā)送TCP請(qǐng)求

2020-06-26 15:05PowerShell教程網(wǎng) PowerShell

這篇文章主要介紹了使用PowerShell發(fā)送TCP請(qǐng)求的小技巧,并把代碼分享給大家,有需要的朋友可以參考下,其實(shí)可以擴(kuò)展出很多方面的應(yīng)用,大家自由發(fā)揮吧

很多時(shí)候我們需要通過(guò)Socket發(fā)送特定的TCP請(qǐng)求給服務(wù)器的特定端口來(lái)實(shí)現(xiàn)探測(cè)服務(wù)器的指定端口所開(kāi)啟的服務(wù)。很多語(yǔ)言都有相應(yīng)的方法實(shí)現(xiàn)上述需求,當(dāng)然,PowerShell也不例外,比如我們要發(fā)送一個(gè)簡(jiǎn)單的http請(qǐng)求到指定的web服務(wù)器:
GET / HTTP/1.1
Host:cn.bing.com

這里我們想請(qǐng)求微軟必應(yīng)的中文首頁(yè),如果需要通過(guò)PowerShell向cn.bing.com服務(wù)器發(fā)送get請(qǐng)求,就需要?jiǎng)?chuàng)建一個(gè)System.Net.Sockets.TcpClient對(duì)象,向指定的服務(wù)器和端口發(fā)送請(qǐng)求。

具體代碼如下:

 

復(fù)制代碼 代碼如下:

        =====文件名:Send-TcpRequest.ps1=====
########################################
# Send-TcpRequest.ps1
## Send a TCP request to a remote computer, and return the response.
## If you do not supply input to this script (via either the pipeline, or the
## -InputObject parameter,) the script operates in interactive mode.
##
## Example:
##
## $http = @"
## GET / HTTP/1.1
## Host:cn.bing.com 
## `n`n
## "@
##
## $http | .\Send-TcpRequest cn.bing.com  80
########################################
param(
        [string] $remoteHost = "localhost",
        [int] $port = 80,
        [switch] $UseSSL,
        [string] $inputObject,
        [int] $commandDelay = 100
     )

 

[string] $output = ""

## Store the input into an array that we can scan over. If there was no input,
## then we will be in interactive mode.
$currentInput = $inputObject
if(-not $currentInput)
{
    $SCRIPT:currentInput = @($input)
}
$scriptedMode = [bool] $currentInput

function Main
{
    ## Open the socket, and connect to the computer on the specified port
    if(-not $scriptedMode)
    {
        write-host "Connecting to $remoteHost on port $port"
    }

    trap { Write-Error "Could not connect to remote computer: $_"; exit }
    $socket = new-object System.Net.Sockets.TcpClient($remoteHost, $port)

    if(-not $scriptedMode)
    {
        write-host "Connected. Press ^D followed by [ENTER] to exit.`n"
    }

    $stream = $socket.GetStream()

    if($UseSSL)
    {
        $sslStream = New-Object System.Net.Security.SslStream $stream,$false
        $sslStream.AuthenticateAsClient($remoteHost)
        $stream = $sslStream
    }

    $writer = new-object System.IO.StreamWriter $stream

    while($true)
    {
        ## Receive the output that has buffered so far
        $SCRIPT:output += GetOutput

        ## If we're in scripted mode, send the commands,
        ## receive the output, and exit.
        if($scriptedMode)
        {
            foreach($line in $currentInput)
            {
                $writer.WriteLine($line)
                $writer.Flush()
                Start-Sleep -m $commandDelay
                $SCRIPT:output += GetOutput
            }

            break
        }
        ## If we're in interactive mode, write the buffered
        ## output, and respond to input.
        else
        {
            if($output)
            {
                foreach($line in $output.Split("`n"))
                {
                    write-host $line
                }
                $SCRIPT:output = ""
            }

            ## Read the user's command, quitting if they hit ^D
            $command = read-host
            if($command -eq ([char] 4)) { break; }

            ## Otherwise, Write their command to the remote host
            $writer.WriteLine($command)
            $writer.Flush()
        }
    }

    ## Close the streams
    $writer.Close()
    $stream.Close()

    ## If we're in scripted mode, return the output
    if($scriptedMode)
    {
        $output
    }
}

## Read output from a remote host
function GetOutput
{
    ## Create a buffer to receive the response
    $buffer = new-object System.Byte[] 1024
    $encoding = new-object System.Text.AsciiEncoding

    $outputBuffer = ""
    $foundMore = $false

    ## Read all the data available from the stream, writing it to the
    ## output buffer when done.
    do
    {
        ## Allow data to buffer for a bit
        start-sleep -m 1000

        ## Read what data is available
        $foundmore = $false
        $stream.ReadTimeout = 1000

        do
        {
            try
            {
                $read = $stream.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)

    $outputBuffer
}
. Main
該腳本使用方法如下:
$http = @"

GET / HTTP/1.1
Host:cn.bing.com
`n`n
"@
$http | .\Send-TcpRequest cn.bing.com 80

 

執(zhí)行效果如圖所示:

PowerShell小技巧之發(fā)送TCP請(qǐng)求

需要說(shuō)明的是,由于頁(yè)面返回的內(nèi)容太長(zhǎng)了,這里至少是將返回的內(nèi)容緩存在一個(gè)變量里,并只輸出了變量的頭10行。
有了這個(gè)腳本,我們就可以向指定的web服務(wù)器發(fā)送特定的請(qǐng)求,來(lái)實(shí)現(xiàn)模擬登陸和操作的功能了。

延伸 · 閱讀

精彩推薦
主站蜘蛛池模板: 97se狠狠狠狠狼亚洲综合网 | 4455永久在线观免费看片 | 日韩高清无砖砖区2022 | 久草热8精品视频在线观看 久草草在线视视频 | 美女脱了内裤打开腿让男人图片 | 被强迫调教的高辣小说 | chinese男gay| a人片| 成人国产在线视频 | 久久精品嫩草影院免费看 | 日本啊v在线观看 | 日日碰日日操 | gayrb免费漫画入口 | 久久国产精品人妻中文 | 美女视频黄a | 亚洲精品乱码久久久久久蜜桃欧美 | 亚洲国产在线视频精品 | 五月天婷婷亚洲 | 大妹子最新视频在线观看 | 婚前试爱全集免费观看 | 草逼吧| 2021日产国产麻豆 | 清清草在线视频 | 韩国女主播在线大尺无遮挡 | 国产日韩欧美在线一区二区三区 | 小早川怜子息梦精在线播放 | 青草网在线观看 | 午夜精品一区 | 国产精品视频第一区二区 | 日本一区二区视频免费播放 | les女同h高h喷水 | 久久精品嫩草影院免费看 | 动漫美女胸被狂揉扒开吃奶动态图 | xxxxxx日本处大片免费看 | 女人叉开腿让男人捅 | 国产精品秒播无毒不卡 | 喜马拉雅听书免费版 | 香蕉久久夜色精品国产小优 | 国产日韩一区二区 | 高清在线观看mv的网址免费 | 大又大又粗又爽女人毛片 |