查询出口IP
1 | curl icanhazip.com |
GET 请求
1 | curl https://www.baidu.com?q=xxxx |
POST 请求
1 | curl http://ip:port/api/add_user -XPOST -d "send message..." |
发送 POST JSON 请求
1 | curl -H "Content-Type: application/json" -X POST --data '{"data":"1"}' http://127.0.0.1/ |
使用代理
1 | curl -x 192.168.2.5:3128 https://www.baidu.com?q=xxxx |
输出请求信息
1 | # http_code |
下载文件并重命名
1 | culr -L <url> -o <filename> |
发送邮件
1 | mail.txt 内容 |
参数说明
- –url:邮箱服务
- –mail-from:发送者邮箱
- –user:发送正邮箱账号密码,账号密码使用冒号隔开
- – mail-rcpt:接收者邮箱
- –upload-file:邮件内容,写法参考 mail.txt