自动化全栈程序员Linux

Bash自动化

2021-08-09  本文已影响0人  InsaneLoafer

自动化交互

自动输入方法.

except

image.png

实用命令

一-键搭建web网站

CGI-Bin技术

#!/ bin/ bash
echo "Content-type: text/html"
echo ""
curl http://www.baidu.com/s?$QUERY_STRING 2>/dev/null

处理post请求

cgi() {
  echo -e "Content-type:text/plain\n\n"
  echo $REQUEST_METHOD
  if [ "$REQUEST METHOD" = "POST" ]; then
    read -n $CONTENT_LENGTH post
    echo $post
  fi
}

curl网络请求

jq

最强大的黑客工具nc

mkfifo /tmp/fifo
nc -lk 8080 < /tmp/fifo \
| sed -l -e 's/^Host.*/Host:site.baidu.com/' | tee -a /tmp/req.log \
| nc site.baidu.com 80 | tee -a /tmp/res > /tmp/fifo
上一篇下一篇

猜你喜欢

热点阅读