如何用python搭建简易的http/https服务器
2023-11-20 15:21:10 Author: 云计算和网络安全技术实践(查看原文) 阅读量:11 收藏

周末有个特殊情况,没条件做vulnhub的实践,

怎么补呢,考虑再三,就上个存货吧,

如何用python搭建简易的http/https服务器,

首先安装个ubuntu 22.04.3,

这个时候就已经能用python起http服务器了,

sudo python3 -m http.server,

发现默认起的http服务器的端口是8000,

浏览器访问确认,

想用标准的80端口需要加参数,sudo python3 -m http.server 80,

浏览器访问确认,

起https服务器需要额外安全软件,

更新软件源,sudo apt update,

安装pip,sudo apt install python3-pip,

安装https模块,sudo pip3 install https.server,

这个时候就能用python起https服务器了,

sudo python3 -m https.server,

发现默认起的https服务器的端口是8443,

浏览器访问确认,

想用标准的443端口需要加参数,sudo python3 -m https.server 443,

浏览器访问确认,

用python搭建的http/https服务器虽然简单,但是很实用,比安装现成的http/https软件要方便的多,尤其是https服务,就算是现成的软件,都需要很多麻烦的配置。

本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里,本周的技术实践就到这里。


文章来源: http://mp.weixin.qq.com/s?__biz=MzA3MjM5MDc2Nw==&mid=2650748049&idx=1&sn=4ad84d7cd94130848c3eb34a96c2d73e&chksm=87149591b0631c87a36a3b93c9351ae3c65e1a91aecacf6750d2407df9d0090292be639023cd&scene=0&xtrack=1#rd
如有侵权请联系:admin#unsafe.sh