Skip to content

Commit

Permalink
Merge pull request #788 from ninan27/translate-input1
Browse files Browse the repository at this point in the history
Translate "Lab Exercise input1" into Japanese
  • Loading branch information
david-a-wheeler authored Feb 10, 2025
2 parents 3c2baf3 + 63cdbbd commit 4c56f71
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/labs/checker.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,17 +61,17 @@ const resources = {
already_correct: '答えはすでに正しいです!',
complete: '完了',
completed: '完了しました',
congrats: 'おめでとうございます!」あなたの答えは正解です!',
congrats_all: '素晴らしい仕事でした!あなたの答えはすべて正解です!',
congrats: 'おめでとうございます!正解です!',
congrats_all: '素晴らしい!すべて正解です!',
expecting: "次のような答えを期待していました:\n{0}",
give_up_title: '諦めて答えを示してください。',
hint_title: '現在の試行に関するヒントを提供します。',
no_hints: '申し訳ありませんが、このラボにはヒントがありません。',
no_matching_hint: '申し訳ありませんが、あなたの試みに一致するヒントが見つかりません。',
reset_title: '初期状態をリセットします (現在の試行を破棄します)。',
to_be_completed: '完成する',
reset_title: '初期状態にリセットします (現在の試行を破棄します)。',
to_be_completed: '完了する',
try_harder_give_up: 'もっと頑張れ!そんなにすぐに諦めないでください。開始または最後のヒントから経過した現在の時間 (秒単位): {0}',
try_harder_hint: "もっと頑張れ!すぐにヒントを求めず、少なくとも {0} 秒待ちます。",
try_harder: 'もっと頑張ってください! すぐに諦めないでください。現在の所要時間 (秒): {0}',
},
},
fr: {
Expand Down
12 changes: 12 additions & 0 deletions docs/labs/input1.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,15 @@ info =
{
absent: ", $",
text: "This is a parameter, it must end with a comma.",
text_ja: "パラメータはカンマで終わる必要があります。",
examples: [
[ " " ]
],
},
{
absent: String.raw`query \( ["'${BACKQUOTE}]id["'${BACKQUOTE}] \)`,
text: "Add query(\"id\") to verify its value.",
text_ja: "query(\"id\")を追加して、値を検証してください。",
examples: [
[ "," ],
[ " query()," ]
Expand All @@ -22,13 +24,15 @@ info =
{
present: String.raw`query \( ["'${BACKQUOTE}]id["'${BACKQUOTE}] \) [^. ]`,
text: "After query(\"id\") use a period to invoke a verification method.",
text_ja: "query(\"id\")の後にピリオドを追加して、バリデーションメソッドを呼び出してください。",
examples: [
[ " query('id')," ]
],
},
{
present: "(isint|Isint|IsInt|ISINT)",
text: "JavaScript is case-sensitive. Use isInt instead of the case you have.",
text_ja: "JavaScriptは大文字と小文字を区別します。使用している文字の代わりにisIntを使用してください。",
examples: [
[ " query('id').isint()," ],
[ " query('id').IsInt()," ]
Expand All @@ -37,55 +41,63 @@ info =
{
absent: "isInt",
text: "Use isInt to determine if the parameter is an integer.",
text_ja: "パラメータが整数かどうかを判断するためにisIntを使用してください。",
examples: [
[ " query('id').," ]
],
},
{
present: String.raw` query \( ["'${BACKQUOTE}]id["'${BACKQUOTE}] \).*\([^)]*$`,
text: "After query(\"id\") you have an ( but there's no matching ).",
text_ja: "query(\"id\") の後に必要なものがありません。",
examples: [
[ " query('id').isInt(," ]
],
},
{
absent: String.raw`isInt \(.*\)`,
text: "isInt should be followed by (...).",
text_ja: "isIntの後に書くべきものがあります。",
examples: [
[ " query('id').isInt," ]
],
},
{
present: String.raw`\{[^}]*$`,
text: "You have started an object using { but there's no matching }.",
text_ja: "{を使用してオブジェクトを開始していますが、対応する}がありません。",
examples: [
[ " query('id').isInt({)," ]
],
},
{
absent: String.raw`isInt \( \{.*\} \)`,
text: "Inside the parenthesis of isInt() you should have an object like {...}.",
text_ja: "isInt()の括弧内には、{...}のようなオブジェクトを記述する必要があります。",
examples: [
[ " query('id').isInt()," ]
],
},
{
absent: "min",
text: "Use min: to specify a minimum value.",
text_ja: "最小値を指定するには min: を使用してください。",
examples: [
[ " query('id').isInt({})," ]
],
},
{
absent: "max",
text: "Use max: to specify a minimum value.",
text_ja: "最大値を指定するには max: を使用してください。",
examples: [
[ " query('id').isInt({min: 1})," ]
],
},
{
present: "max.*min",
text: "JavaScript allows hash entries to be in any order, but this can be confusing to humans. Conventionally minimum values are given before maximum values; please follow that convention.",
text_ja: "JavaScriptではハッシュエントリの順序は任意ですが、人間にとっては混乱する可能性があります。慣例的に最小値は最大値の前に記述されますので、この慣例に従ってください。",
examples: [
[ " query('id').isInt({max: 9999, min: 1})," ]
],
Expand Down
121 changes: 121 additions & 0 deletions docs/labs/ja_input1.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
<!DOCTYPE html>
<html lang="ja">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://best.openssf.org/assets/css/style.css">
<link rel="stylesheet" href="checker.css">
<script src="checker.js"></script>
<script src="input1.js"></script>
<link rel="license" href="https://creativecommons.org/licenses/by/4.0/">

<!-- See create_labs.md for how to create your own lab! -->

</head>
<body>
<!-- For GitHub Pages formatting: -->
<div class="container-lg px-3 my-5 markdown-body">
<h1>ラボ演習 input1</h1>
<p>
これはセキュアなソフトウェア開発に関するラボ演習です。
ラボの詳細については、<a href="introduction.html" target="_blank">概要</a>をご覧ください。

<p>
<h2>ゴール</h2>
<p>
単純なデータ型の入力の検証を練習します。

<p>
<h2>背景</h2>
<p>
この演習では、Expressフレームワーク(バージョン4)とexpress-validatorライブラリを使用して、JavaScriptで書かれたサーバー側のプログラムに簡単な入力検証を追加します。
ポイントは、これらの特定の技術について学ぶことではなく、一般的に安全なソフトウェアを書く方法を学ぶことです。

<p>
<!-- https://expressjs.com/en/guide/routing.html -->
Expressでは、システムが特定のリクエストを受け取ったときに、関数のリスト"handlers(ハンドラ)"を実行するように指定できます。
<tt>express-validator</tt>ライブラリは、バリデーションチェックを簡単に追加できるようにするための関数のセットを提供しています。

<p>
以下のコードでは、<tt>/invoices</tt> パスの <tt>get</tt> リクエストに対してハンドラを設定しています。バリデーションエラーがない場合は、コードは請求書IDを表示します。
バリデーションエラーがある場合は、HTTPエラーコード422"Unprocessable Content(処理できないコンテンツ)"で応答します。
これは、何らかの理由でリクエストが無効であったことを示すステータスコードであり、エラーメッセージも表示されます。


<p>
残念ながら、このプログラムは適切な入力検証を行っていません。
このアプリケーションでは、<tt>id</tt>は1から9999までの整数でなければなりませんが、そのチェックを実行していません。
そのため、このプログラムにはクロスサイト スクリプティング(XSS)と呼ばれる、まだ説明していない脆弱性があります。
このXSS脆弱性により、攻撃者は<tt>id</tt>の中に悪意のあるスクリプトを挿入することができてしまうので、ビューアーがそれを自動的に実行する可能性があります!
この脆弱性は、入力検証をすることで完全に防ぐことができます。

<p>
<h2>タスク</h2>
<p>
タスクを完了するには、以下を実行します。
<ol>
<li><tt>app.get</tt>の最初のパラメータ<tt>'/invoices'</tt>の後に、コンマで区切られた新しいパラメータを追加します。
<li>この新しいパラメータを<tt>query('id')</tt>で開始して、検証用の<tt>id</tt>パラメータを選択します (開始しやすいようにこの部分は入力してあります)。
<li><tt>query('id')</tt>の後(終了のカンマの前) に、ピリオド(<tt>.</tt>)と検証要件 <tt>isInt()</tt>を追加します
(<tt>isInt()</tt>は、名前付きパラメータが整数であることを検証します)。
<li><tt>isInt</tt>メソッドは、括弧内のオプションパラメーターとして、最小値と最大値を提供するオブジェクトを受け取ります
(例: <tt>isInt({min: YOUR_MINIMUM, max: YOUR_MAXIMUM})</tt>) 。許容範囲を指定するには、minとmaxを設定します。
</ol>

<p>
注意: JavaScript の名前は大文字と小文字が区別されるため、<tt>isint</tt>では機能しません。
このパラメータの末尾をコンマで示すことを忘れないでください (開始時に入力されているテキストではこれを行っています)。

<p>
必要に応じてヒントボタンを使用してください。

<p>
<h2>Interactive Lab (<span id="grade"></span>)</h2>
<p>
<b>
以下のコードは、クエリパラメータ<tt>id</tt>を入力として受け入れます。<tt>id</tt>が1から9999までの整数 (1と9999も含む) である場合にのみ、受け入れられるように変更してください。
</b>
<p>
<!--
You can use this an example for new labs.
For multi-line inputs, instead of <input id="attempt0" type="text" ...>, use
<textarea id="attempt" rows="2" cols="65">...</textarea>
-->
<form id="lab">
<pre><code
>// Set up Express framework and express-validator library
const express = require("express");
const app = express();
const { query, matchedData, validationResult } =
require('express-validator');

// Implement requests, e.g., http://localhost:3000/invoices?id=1
app.get('/invoices',
<input id="attempt0" type="text" size="65" spellcheck="false"
value=" query('id'),">
(req, res) =&gt; { // Execute this code if /invoices seen
const result = validationResult(req); // Retrieve errors
if (result.isEmpty()) { // No errors
const data = matchedData(req); // Retrieve matching data
return res.send(`You requested invoice id ${data.id}!`);
}
res.status(422).send(`Invalid input`);
})
</code></pre>
<button type="button" class="hintButton">Hint</button>
<button type="button" class="resetButton">Reset</button>
<button type="button" class="giveUpButton">Give up</button>
<br><br>
<p>
<i>This lab was developed by David A. Wheeler at
<a href="https://www.linuxfoundation.org/"
>The Linux Foundation</a>.</i>
<br><br><!-- These go in the last form if there's more than one: -->
<p id="correctStamp" class="small">
<textarea id="debugData" class="displayNone" rows="20" cols="65" readonly>
</textarea>
</form>

</div><!-- End GitHub pages formatting -->
</body>
</html>

0 comments on commit 4c56f71

Please sign in to comment.