码迷,mamicode.com
首页 > Web开发 > 详细

Penetration Test - Using_Scripting_in_Pen_Testing(4)

时间:2020-12-10 10:45:47      阅读:6      评论:0      收藏:0      [点我收藏+]

标签:each   cloud   code   computer   isa   dmi   disable   put   tor   

PowerShell scripts

Run PowerShell on Windows as a administrator. And set the execution policy.

Set-ExecutionPolicy Unrestricted

技术图片

Following is a simple PowerShell script to scan ports.

$port = 80
$subnet = "10.0.0"
$range = 1..254
foreach ($r in $range)
{
$ip = "{0}.{1}" -F $subnet,$r
if(Test-Connection -BufferSize 32 -Count 1 -Quiet -ComputerName $ip)
  {
    $socket = new-object System.Net.Sockets.TcpClient($ip, $port)
    if($socket.Connected)
      {
        "$port open on $ip"
        $socket.Close()
      }
  }
}

技术图片

QUICK REVIEW
  • PowerShell is currently open source and available for multiple operating systems.
  • PowerShell scripts are disabled in Windows by default

Penetration Test - Using_Scripting_in_Pen_Testing(4)

标签:each   cloud   code   computer   isa   dmi   disable   put   tor   

原文地址:https://www.cnblogs.com/keepmoving1113/p/14090769.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!