2023年1月11日
摘要: 使用-u标志来包含用户名,并且curl将提示输入密码: curl -u username http://example.com 在命令中包含密码,但您的密码将在bash历史记录中显示 curl -u username:password http://example.comcurl http://us 阅读全文
posted @ 2023-01-11 11:53 boye169 阅读(1702) 评论(0) 推荐(0) 编辑
摘要: package main import ( "fmt" "log" "net/http" "strings" ) func sayhelloName(w http.ResponseWriter, r *http.Request) { r.ParseForm() //解析参数,默认是不会解析的 fmt 阅读全文
posted @ 2023-01-11 10:36 boye169 阅读(43) 评论(0) 推荐(0) 编辑