|
楼主 |
发表于 2024-1-17 11:49:43
|
显示全部楼层
使用 wegt
{
"cmd": "wget -O filename.ext 'https://www.baidu.com.com'"
}
返回如下
{
"code": 200,
"msg": "sh: wget: inaccessible or not found\n",
"shell_code": 127
}
---------------
使用
{
"cmd": "curl -X GET 'https://baidu.com'"
}
返回 ,好像是不支持 https,
{
"code": 200,
"msg": "curl: (1) Protocol \"https\" not supported or disabled in libcurl\n",
"shell_code": 1
}
如下加--insecure 或-k 忽略证书,也不行
{
"cmd": "curl --insecure -X GET 'https://baidu.com'"
}
|
|