diff --git a/src/main/webapp/lesson_plans/ru/BufferOverflow.html b/src/main/webapp/lesson_plans/ru/BufferOverflow.html index b25b4f944..272298787 100644 --- a/src/main/webapp/lesson_plans/ru/BufferOverflow.html +++ b/src/main/webapp/lesson_plans/ru/BufferOverflow.html @@ -1,9 +1,9 @@
Lesson Plan Title: How to Exploit Buffer Overflows
+Название урока: Эксплуатация уязвимостей переполнения буффера
Concept / Topic To Teach:
-How to Exploit Buffer Overflows. -General Goal(s):
-This lesson needs a creator! +Тема для изучения:
+Как проводить эксплуатацию уязвимостей переполнения буффера. +Основные цели и задачи:
+Для данного урока требуется автор. \ No newline at end of file diff --git a/src/main/webapp/lesson_plans/ru/ConcurrencyCart.html b/src/main/webapp/lesson_plans/ru/ConcurrencyCart.html index 4a2f44b75..1ddbda659 100644 --- a/src/main/webapp/lesson_plans/ru/ConcurrencyCart.html +++ b/src/main/webapp/lesson_plans/ru/ConcurrencyCart.html @@ -2,21 +2,30 @@ - -Lesson Plan Title: Shopping Cart Concurrency Flaw
+Название урока: Уязвимость при одновременной работе с товарной корзиной
Concept / Topic To Teach:
+Тема для изучения:
- Web applications can handle many HTTP requests simultaneously. Developers often use variables that are not thread safe. Thread safety means that the fields of an object or class always maintain a valid state when used concurrently by multiple threads. It is often possible to exploit a concurrency bug by loading the same page as another user at the exact same time. Because all threads share the same method area, and the method area is where all class variables are stored, multiple threads can attempt to use the same class variables concurrently.General Goal(s):
-For this exercise, your mission is to exploit the concurrency issue which will allow you to purchase merchandise for a lower price. +Основные цели:
+Ваша цель - проэксплуатировать уязвимость этого типа для того чтоб получить возможность покупать товары по заниженной цене.Lesson Plan Title: How to Discover Clues in the HTML
+Название урока: How to Discover Clues in the HTML
Concept / Topic To Teach:
- Developers are notorious for leaving statements like FIXME's, TODO's, Code Broken, Hack, etc... inside the source code. Review the source code for any comments denoting passwords, backdoors, or something doesn't work right. - Below is an example of a forms based authentication form. Look for clues to help you log in. +Многие разработчики, к сожалению, забывают удалять из рабочих версий кода всевозможные отметки типа FIXME, TODO, небольшие хаки и т.д. + Исследование исходного кода на наличие различных комментариев , паролей, бэкдоров и прочего может очень +сильно вам помочь. Ниже представлена форма авторизации. Попробуйте исследовать код страницы и найти +зацепки которые позволят вам войти как легитимный пользователь.General Goal(s):
-The user should be able to bypass the authentication check. +Основные цели и задачи:
+Вы должны обойти систему авторизации. diff --git a/src/main/webapp/lesson_plans/ru/ThreadSafetyProblem.html b/src/main/webapp/lesson_plans/ru/ThreadSafetyProblem.html index 1b01a915d..c10a9b044 100644 --- a/src/main/webapp/lesson_plans/ru/ThreadSafetyProblem.html +++ b/src/main/webapp/lesson_plans/ru/ThreadSafetyProblem.html @@ -2,21 +2,34 @@ - -Lesson Plan Title: How to Exploit Thread Safety Problems
+Название урока: Как эксплуатировать проблемы одновременной работы нескольких потоков.
Concept / Topic To Teach:
+Тема для изучения:
- Web applications can handle many HTTP requests simultaneously. Developers often use variables that are not thread safe. Thread safety means that the fields of an object or class always maintain a valid state when used concurrently by multiple threads. It is often possible to exploit a concurrency bug by loading the same page as another user at the exact same time. Because all threads share the same method area, and the method area is where all class variables are stored, multiple threads can attempt to use the same class variables concurrently.General Goal(s):
-The user should be able to exploit the concurrency error in the web application and view login information for another user that is attempting the same function at the same time. This will require the use of two browsers. +Основные цели:
+В приложении урока пользователь может воспользоваться уязвимостю данного типа для того чтобы просматривать +авторизационные данные другого пользователя, если одновременно с ним попытается вызвать одну +и ту же функцию. +Здесь вам придётся использовать два браузера.