程序源码
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir(".")))
http.ListenAndServe(":8080", nil)
}
运行测试
运行httpFileServer.go
之后在浏览器中访问即可:
这有什么用呢?在渗透测试过程中,传输文件了呗,哈哈哈!
2023-04-23 09:44:23 阅读次数:104
package main
import (
"net/http"
)
func main() {
http.Handle("/", http.FileServer(http.Dir(".")))
http.ListenAndServe(":8080", nil)
}
运行httpFileServer.go
之后在浏览器中访问即可:
这有什么用呢?在渗透测试过程中,传输文件了呗,哈哈哈!
上一篇:Linux C网络编程 ————3、多进程服务器实现
下一篇:Python 函数调用父类详解
文章
24092
阅读量
2859207