From ab914c24909dae3ea58d4699025f51cd8c1021ff Mon Sep 17 00:00:00 2001 From: Translator Date: Tue, 19 Aug 2025 21:31:24 +0000 Subject: [PATCH] Translated ['src/generic-methodologies-and-resources/python/README.md', --- .../python/README.md | 6 +++--- .../pentesting-web/python.md | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/generic-methodologies-and-resources/python/README.md b/src/generic-methodologies-and-resources/python/README.md index 52c84fc22..51540aa33 100644 --- a/src/generic-methodologies-and-resources/python/README.md +++ b/src/generic-methodologies-and-resources/python/README.md @@ -2,11 +2,11 @@ {{#include ../../banners/hacktricks-training.md}} -**值得查看的有趣页面:** +**值得查看的页面:** - [**Pyscript 黑客技巧**](pyscript.md) -- [**Python 反序列化**](../../pentesting-web/deserialization/index.html#python) -- [**绕过 Python 沙箱的技巧**](bypass-python-sandboxes/index.html) +- [**Python 反序列化**](../../pentesting-web/deserialization/README.md) +- [**绕过 Python 沙箱的技巧**](bypass-python-sandboxes/README.md) - [**基本的 Python 网络请求语法**](web-requests.md) - [**基本的 Python 语法和库**](basic-python.md) diff --git a/src/network-services-pentesting/pentesting-web/python.md b/src/network-services-pentesting/pentesting-web/python.md index d6f5da327..9110b418e 100644 --- a/src/network-services-pentesting/pentesting-web/python.md +++ b/src/network-services-pentesting/pentesting-web/python.md @@ -4,22 +4,22 @@ ## 使用 Python 的服务器 -测试可能的 **代码执行**,使用函数 _str()_: +测试可能的 **code execution**,使用函数 _str()_: ```python "+str(True)+" #If the string True is printed, then it is vulnerable ``` -### 技巧 +### Tricks {{#ref}} -../../generic-methodologies-and-resources/python/bypass-python-sandboxes/ +../../generic-methodologies-and-resources/python/bypass-python-sandboxes/README.md {{#endref}} {{#ref}} -../../pentesting-web/ssti-server-side-template-injection/ +../../pentesting-web/ssti-server-side-template-injection/README.md {{#endref}} {{#ref}} -../../pentesting-web/deserialization/ +../../pentesting-web/deserialization/README.md {{#endref}} {{#include ../../banners/hacktricks-training.md}}