当前位置:网站首页>buffer overflow protection
buffer overflow protection
2022-07-07 14:49:00 【fpcc】
One 、 Memory safety
c/c++ One of the key issues criticized by satiety is the security of memory , A typical example is memory out of bounds . stay c/c++ in , It does not check memory out of bounds , Like an array , The programmer can still use the pointer that has crossed its bounds . But once used up, release , The program will crash fall . out of buffer (buffer overflow), It is aimed at program design flaws or application defects of the language itself , Write data that can overflow the buffer to the data buffer of the program ( That is, the memory mentioned above is out of bounds ), Cause the program to run abnormally, so as to obtain the control of the program and even the system .
Have you noticed OpenSSL Provided in SM2 Buffer overflow vulnerability in the algorithm , This vulnerability can allow illegal users to get more data, leading to program denial of service or change the behavior of the program . If you are interested, you can search online . Not only the buffer vulnerability of this software , Historically , Basically, all well-known software has encountered this security problem more or less , On some white hat forums , These questions are often raised .
Memory problems , As a result, the security problems of the whole program emerge in endlessly , As big as Microsoft 、 Google and other large companies , As small as some individual developers , Failure of memory management , This kind of memory security problem is often caused or triggered . Generally speaking , Memory is the buffer to put data , So the memory security problem is also called buffer overflow problem .
Two 、 Buffer overflow protection
that , Since buffer overflow is so important , This has become an important issue of computer security . Generally speaking , Computer memory is divided into heap and stack ( Registers and the like are not considered for the time being ). The buffer security of the program can be protected from the level of software writing 、 Compilation level 、 Protection at the operation level ; At the operational level, it can be divided into OS The protection of the system and the protection of the application itself .
1、 Language level security control
a、 When writing a program , Pay attention to checking and controlling the length of the array 、 Pointer size and other boundary control , That is, integrity inspection .
b、 Use some safe libraries to replace the original arrays and pointers .
c、 Add security control code .
d、 Use the memory static checking tool
2、 Compile level security control
a、 Use development tools that support compile time memory checking, such as visual studio, Yes by default GS Options ,GCC A similar mechanism is provided .
b、 Boundary check during compilation .
c、 Stack mark control , Used to manage the location in memory .
d、 Use the runtime memory detection tool .
3、 Security control during operation
a、 Preventive memory security control in operating system , Such as accessing illegal addresses .
b、 Security check of memory and data , Including cross-border management .
c、 Sandbox hosting operation .
Here we talk about adding marker bits in memory to control buffer overflow , There are generally three ways , One is to add the ending character , such as C/C++ Medium \0 character ; One is to randomly distribute some control characters in memory, such as canary ; Finally, do XOR .
3、 ... and 、 application
In practical applications ,GNU Compiler Collection、LLVM、Microsoft Visual Studio also Intel、IBM And other compilers support security checks at compile time . Of course, there are static tools that can check memory problems during the coding phase, such as Lint etc. , In the run-time, the general operating system provides memory security control , For example, set some symbolic checks on the stack space , Protect the stack from being overwritten . stay Linux On , There are similar behaviors called canary.
and StackGhost It is to protect from the level of hardware , This is relatively rare . So let's see Linux How to check memory security in :
1、CANNARY( Stack protection )
gcc stay 4.2 Version with -fstack-protector and -fstack-protector-all Compile parameters to support stack protection ,4.9 Added -fstack-protector-strong Compiling parameters makes the scope of protection wider .
2、FORTIFY
Using parameter -U_FORTIFY_SOURCE Compile to protect buffer overflow .
3、NX(DEP)
Default on , In case of overflow , Automatically throw an exception , Instead of executing .
4、PIE(ASLR)
Memory address randomization mechanism (address space layout randomization), It is divided into images 、 Stack and PEB And TEB Randomize three .
5、RELRO
Set the symbol redirection table to read-only or parse and bind all dynamic symbols when the program starts , So as to reduce the right to GOT(Global Offset Table) attack .GOT You can take a look at the loading related content of the dynamic library .
Four 、 summary
Here's an explanation , This article will not teach you how to do buffer overflow, let alone how to attack , That's illegal . If anyone wants to learn safety knowledge , You can go to see snow and other safe websites to learn . This article focuses on how to protect the security of memory . Now the problem of computer security has risen to the national level , There is a vague shadow of hackers behind the war between Russia and Ukraine . The program is big , More people are involved in programming , People's programming level and ability are uneven, as well as their awareness and attention to security issues , All determine the overall safety of the program . Buffer overflow is a security problem that comes with the emergence of computers , It is almost essential , Speaking of this , Just remind me , A good programmer , You must have a deep understanding of the memory model of the language , Operating system memory management mechanism and program compilation and operation mechanism, etc . It can be said that there is one unexpected , It means that problems may occur , It depends on the price .
A thousand Li dike , Collapse in ant nest ! It's not alarmist .
边栏推荐
- Shengteng experience officer Episode 5 notes I
- 安恒堡垒机如何启用Radius双因素/双因子(2FA)身份认证
- Differences between cookies and sessions
- EfficientNet模型的完整细节
- KITTI数据集简介与使用
- 【服务器数据恢复】某品牌StorageWorks服务器raid数据恢复案例
- 在软件工程领域,搞科研的这十年!
- Instructions d'utilisation de la trousse de développement du module d'acquisition d'accord du testeur mictr01
- Lidar Knowledge Drop
- Leetcode——236. The nearest common ancestor of binary tree
猜你喜欢
Navigation - are you sure you want to take a look at such an easy-to-use navigation framework?
CPU与chiplet技术杂谈
In the field of software engineering, we have been doing scientific research for ten years!
CVPR2022 | 医学图像分析中基于频率注入的后门攻击
拼多多败诉,砍价始终差0.9%一案宣判;微信内测同一手机号可注册两个账号功能;2022年度菲尔兹奖公布|极客头条...
时空可变形卷积用于压缩视频质量增强(STDF)
Navigation — 这么好用的导航框架你确定不来看看?
Zhiting doesn't use home assistant to connect Xiaomi smart home to homekit
Xiaomi's path of chip self-development
Pert diagram (engineering network diagram)
随机推荐
Mmkv use and principle
Huawei cloud database DDS products are deeply enabled
13 ux/ui/ue best creative inspiration websites in 2022
KITTI数据集简介与使用
Attribute keywords ondelete, private, readonly, required
MicTR01 Tester 振弦采集模块开发套件使用说明
PAG experience: complete AE dynamic deployment and launch all platforms in ten minutes!
Navigation — 这么好用的导航框架你确定不来看看?
"July 2022" Wukong editor update record
Substance painter notes: settings for multi display and multi-resolution displays
Demis hassabis talks about alphafold's future goals
Stm32cubemx, 68 sets of components, following 10 open source protocols
PLC: automatically correct the data set noise, wash the data set | ICLR 2021 spotlight
Shengteng experience officer Episode 5 notes I
Es log error appreciation -trying to create too many buckets
Es log error appreciation -- allow delete
Internal sort - insert sort
因员工将密码设为“123456”,AMD 被盗 450Gb 数据?
Decrypt the three dimensional design of the game
How bad can a programmer be? Nima, they are all talents