chore(i18n,curriculum): processed translations (#42868)

This commit is contained in:
camperbot
2021-07-16 11:03:16 +05:30
committed by GitHub
parent 1f5f07cad3
commit 3b32da0191
429 changed files with 7502 additions and 4006 deletions

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94db0
title: Creating a TCP Client
title: 創建一個 TCP 客戶端
challengeType: 11
videoId: ugYfJNTawks
dashedName: creating-a-tcp-client
@@ -10,7 +10,7 @@ dashedName: creating-a-tcp-client
## --text--
Which socket object method lets you set the maximum amount of data your client accepts at once?
哪種套接字對象方法讓你設置客戶端一次接受的最大數據量?
## --answers--

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94db3
title: Developing a Banner Grabber
title: 開發橫幅抓取器
challengeType: 11
videoId: CeGW761BIsA
dashedName: developing-a-banner-grabber
@@ -10,7 +10,7 @@ dashedName: developing-a-banner-grabber
## --text--
Fill in the blanks to complete the `banner` function below:
填寫空格以完成下面的 `banner` 函數:
```py
def banner(ip, port):

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94db4
title: Developing a Port Scanner
title: 開發一個端口掃描器
challengeType: 11
videoId: z_qkqZS7KZ4
dashedName: developing-a-port-scanner
@@ -10,19 +10,19 @@ dashedName: developing-a-port-scanner
## --text--
What is the main difference between the `.connect()` and `.connect_ex()` methods?
`.connect()` `.connect_ex()` 方法的主要區別是什麼?
## --answers--
There is no difference between the two methods.
這兩種方法之間沒有區別。
---
If there is an error or if no host is found, `.connect()` returns an error code while `.connect_ex()` raises an exception.
如果有錯誤或沒有找到主機,`.connect()` 返回一個錯誤代碼,而 `.connect_ex()` 則引發一個異常。
---
If there is an error or if no host is found, `.connect()` raises an exception while `.connect_ex()` returns an error code.
如果有錯誤或沒有找到主機,`.connect()` 會引發一個異常,而 `.connect_ex()` 會返回一個錯誤代碼。
## --video-solution--

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94db1
title: Developing an Nmap Scanner part 1
title: 開發 Nmap 掃描器 第一部分
challengeType: 11
videoId: jYk9XaGoAnk
dashedName: developing-an-nmap-scanner-part-1
@@ -10,7 +10,7 @@ dashedName: developing-an-nmap-scanner-part-1
## --text--
What is the correct command to install the Python 3 version of the `python-nmap` library?
安裝 Python 3 版本的 `python-nmap` 庫的正確命令是什麼?
## --answers--

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94db2
title: Developing an Nmap Scanner part 2
title: 開發 Nmap 掃描器 第二部分
challengeType: 11
videoId: a98PscnUsTg
dashedName: developing-an-nmap-scanner-part-2
@@ -10,7 +10,7 @@ dashedName: developing-an-nmap-scanner-part-2
## --text--
Which of the following allows you to scan for UDP ports between 21 to 443?
以下哪項允許你掃描 21 至 443 之間的 UDP 端口?
## --answers--

View File

@@ -1,6 +1,6 @@
---
id: 5ea9997bbec2e9bc47e94dae
title: Introduction and Setup
title: 介紹和安裝
challengeType: 11
videoId: XeQ7ZKtb998
dashedName: introduction-and-setup
@@ -10,19 +10,19 @@ dashedName: introduction-and-setup
## --text--
What code editor and extension does the instructor recommend for developing penetration testing tools in Python?
講師推薦什麼代碼編輯器和擴展來開發 Python 的滲透測試工具?
## --answers--
Atom and the atom-python-run extension.
Atomatom-python-run 擴展
---
VSCode and Microsoft's Python extension.
VSCode 和微軟的 Python 擴展
---
Sublime Text and the Anaconda package.
Sublime Text Anaconda 軟件包
## --video-solution--