嗅探收到的 HTTP post 数据包 python
Sniffing received HTTP post packets with python
我正在尝试 管理 一些 HTTP Post 请求 正在 收到在我的电脑上。 post 请求来自 apache 服务器 (网站),该服务器托管在同一台计算机上。我如何使用 python、 最好不使用任何第三方模块 来管理它们?
如果很轻量级,不需要很多东西,可以使用内置的socket模块,自己创建一个服务器(https://docs.python.org/3/library/socket.html). If it requires things like security then Flask or Django would be a good choice (https://flask.palletsprojects.com/en/1.1.x/) (https://www.djangoproject.com/)。
我正在尝试 管理 一些 HTTP Post 请求 正在 收到在我的电脑上。 post 请求来自 apache 服务器 (网站),该服务器托管在同一台计算机上。我如何使用 python、 最好不使用任何第三方模块 来管理它们?
如果很轻量级,不需要很多东西,可以使用内置的socket模块,自己创建一个服务器(https://docs.python.org/3/library/socket.html). If it requires things like security then Flask or Django would be a good choice (https://flask.palletsprojects.com/en/1.1.x/) (https://www.djangoproject.com/)。