Безопасность компьютерных систем 2017/Бинарные программы 1: различия между версиями
Перейти к навигации
Перейти к поиску
Gamajun (обсуждение | вклад) Нет описания правки |
Gamajun (обсуждение | вклад) |
||
| Строка 4: | Строка 4: | ||
You can download the IDA demo from the following links: | You can download the IDA demo from the following links: | ||
https://www.hex-rays.com/products/ida/support/download.shtml | |||
=== Тестовый пример на семинаре === | === Тестовый пример на семинаре === | ||
Текущая версия от 10:37, 31 октября 2017
Материалы семинара №1 по бинарным уязвимостям
Ссылки на IDA PRO
You can download the IDA demo from the following links:
https://www.hex-rays.com/products/ida/support/download.shtml
Тестовый пример на семинаре
#include <cstdlib>
#include <string>
void foo(char *arr, int b)
{
int c;
int t;
char arr_local[35];
strcpy(arr_local, arr);
}
int main(int argc, char *argv[])
{
foo(argv[1], 5);
}