ICode9

精准搜索请尝试: 精确搜索
首页 > 系统相关> 文章详细

PowerShell中使用curl(Invoke-WebRequest)的方法教程--转载

2022-05-27 13:32:18  阅读:192  来源: 互联网

标签:PS Users Invoke -- rmiao WebRequest com


最近需要写登录的脚本,查了一下,可以用开发者工具,复制请求,直接生成脚本。

 

 

 

同时也利用到了下贴的内容

此贴为备查

------------------------------------------------------------------------------------------------

原贴地址

--------------------

前言

PowerShell能干什么呢?PowerShell首先是个Shell,定义好了一堆命令与操作系统,特别是与文件系统交互,能够启动应用程序,甚至操纵应用程序;第二,PowerShell允许将几个命令组合起来放到文件里执行,实现文件级的重用,也就是说有脚本的性质;第三,PowerShell能够能够充分利用.Net类型和COM对象,来简单地与各种系统交互,完成各种复杂的、自动化的操作。

当我们习惯了windows的界面模式就很难转去命令行,甚至以命令行发家的git也涌现出各种界面tool。然而命令行真的会比界面快的多,如果你是一个码农。

situation:接到需求分析bug,需要访问http。那台机器属于product,不允许装postman。我只能手动命令行来发请求。发现了内置的PowerShell中有curl命令。欢喜试了半天,总是命令不对,google发现这个curl是冒名顶替的,只是一个Invoke-WebRequest的alias。参考。

1 PS> Get-Alias -Definition Invoke-WebRequest | Format-Table -AutoSize
2  
3 CommandType Name      Version Source
4 ----------- ----      ------- ------
5 Alias  curl -> Invoke-WebRequest
6 Alias  iwr -> Invoke-WebRequest
7 Alias  wget -> Invoke-WebRequest

Invoke-WebRequest简单用法

1.用途

Gets content from a web page on the Internet.

获取http web请求访问内容

2.语法Syntax

1 Parameter Set: Default
2 Invoke-WebRequest [-Uri] <Uri> [-Body <Object> ] [-Certificate <X509Certificate> ] [-CertificateThumbprint <String> ] [-ContentType <String> ] [-Credential <PSCredential> ] [-DisableKeepAlive] [-Headers <IDictionary> ] [-InFile <String> ] [-MaximumRedirection <Int32> ] [-Method <WebRequestMethod> {Default | Get | Head | Post | Put | Delete | Trace | Options | Merge | Patch} ] [-OutFile <String> ] [-PassThru] [-Proxy <Uri> ] [-ProxyCredential <PSCredential> ] [-ProxyUseDefaultCredentials] [-SessionVariable <String> ] [-TimeoutSec <Int32> ] [-TransferEncoding <String> {chunked | compress | deflate | gzip | identity} ] [-UseBasicParsing] [-UseDefaultCredentials] [-UserAgent <String> ] [-WebSession <WebRequestSession> ] [ <CommonParameters>]

 


3.简单的几个用法

3.1 Get请求

 1 PS C:\Users\rmiao> curl -URi https://www.google.com
 2  
 3 StatusCode  : 200
 4 StatusDescription : OK
 5 Content   : <!doctype html><html itemscope="" itemtype="http://schema.org/WebPage" lang="en"><head><meta content="Search the world's information, including webpages, images, videos and more. Google has many speci..."
 6 RawContent  : HTTP/1.1 200 OK
 7      X-XSS-Protection: 1; mode=block
 8      X-Frame-Options: SAMEORIGIN
 9      Alt-Svc: quic=":443"; ma=2592000; v="36,35,34,33,32"
10      Vary: Accept-Encoding
11      Transfer-Encoding: chunked

会发现content内容被截断了。想要获取完整的content:

 1 ps> curl https://www.google.com | Select -ExpandProperty Content 

3.2添加header

 1 -Headers @{"accept"="application/json"}  

3.3指定Method

 1 -Method Get 

3.4将获取到的content输出到文件

 1 -OutFile 'c:\Users\rmiao\temp\content.txt' 

3.5表单提交

1 For example:
2 $R = Invoke-WebRequest http://website.com/login.aspx 
3 $R.Forms[0].Name = "MyName"
4 $R.Forms[0].Password = "MyPassword"
5 Invoke-RestMethod http://website.com/service.aspx -Body $R
6 
7 or
8 Invoke-RestMethod http://website.com/service.aspx -Body $R.Forms[0]

3.6内容筛选

 1 PS C:\Users\rmiao> $R = Invoke-WebRequest -URI http://www.bing.com?q=how+many+feet+in+a+mile
 2 PS C:\Users\rmiao> $R.AllElements | where {$_.innerhtml -like "*=*"} | Sort { $_.InnerHtml.Length } | Select InnerText -
 3 First 5
 4  
 5 innerText
 6 ---------
 7 =
 8  
 9 1
10 Next
11 =

3.7一个登陆示例

 1 #发送一个登陆请求,声明一个sessionVariable 参数为fb, 将结果保存在$R
 2 #这个变量FB就是header.cookie等集合
 3 PS C:\Users\rmiao> $R=curl http://www.facebook.com/login.php -SessionVariable fb
 4 PS C:\Users\rmiao> $FB
 5  
 6  
 7 Headers    : {}
 8 Cookies    : System.Net.CookieContainer
 9 UseDefaultCredentials : False
10 Credentials   :
11 Certificates   :
12 UserAgent    : Mozilla/5.0 (Windows NT; Windows NT 6.3; en-US) WindowsPowerShell/4.0
13 Proxy     :
14 MaximumRedirection : -1
15  
16  
17 #将response响应结果中的第一个form属性赋值给变量Form
18 PS C:\Users\rmiao> $Form=$R.Forms[0]
19 PS C:\Users\rmiao> $Form.fields
20  
21 Key               Value
22 ---               -----
23 lsd               AVqQqrLW
24 display
25 enable_profile_selector
26 isprivate
27 legacy_return            0
28 profile_selector_ids
29 return_session
30 skip_api_login
31 signed_next
32 trynum              1
33 u_0_0
34 u_0_1
35 lgnrnd              214945_qGeg
36 lgnjs              n
37 email
38 pass
39 persistent
40 default_persistent           1
41  
42  
43  
44 # 查看form
45 PS C:\Users\rmiao> $Form | Format-List
46  
47  
48 Id  : login_form
49 Method : post
50 Action : /login.php?login_attempt=1&lwv=100
51 Fields : {[lsd, AVqQqrLW], [display, ], [enable_profile_selector, ], [isprivate, ]...}
52  
53  
54 #查看属性
55 $Form.fields
56  
57 #设置账号密码
58 $Form.Fields["email"] = "User01@Fabrikam.com"
59 $Form.Fields["pass"] = "P@ssw0rd"
60  
61 #发送请求并保存结果为$R
62 $R=Invoke-WebRequest -Uri ("https://www.facebook.com" + $Form.Action) -WebSession $FB -Method POST -Body $Form.Fields
63  
64 #查看结果
65 PS C:\Users\rmiao> $R.StatusDescription
66 OK

虽然没有curl那么主流,但一样可以成为http访问的一个选择。

总结

参考

https://technet.microsoft.com/en-us/library/hh849901.aspx

标签:PS,Users,Invoke,--,rmiao,WebRequest,com
来源: https://www.cnblogs.com/mxue/p/16317254.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有