Browsing the web page with a stack overflow prompt solution

  
In the process of using the computer to browse the webpage, when the computer fills the buffer area with the data length exceeding the length of the buffer area, a stack overflow prompt will appear, so how to solve the stack overflow? Let's take a look at the specific solutions. What is stack overflow: When the computer fills the buffer with more data than the capacity of the buffer itself, the data overflows on the legal data. Ideally, the program checks the data length and does not allow input of characters that exceed the buffer length. However, most programs assume that the data length always matches the allocated storage space, which creates a hidden danger for buffer overflow. The buffer used by the operating system is also called "stack". Between the various operational processes, the instruction will be temporarily stored in the "stack" and "stack" will also have a buffer overflow. There are currently four basic ways to protect buffers from buffer overflow attacks and effects. They are: Writing correct code, buffer is not executed, array bounds checking, integrity checking program pointer. Stack Overflow Solution: 1, first of all press the key combination win + r open the Run window, enter cmd and press Enter, as shown in FIG: 2, a shell prompt window, copy the following into the code window, enter to execute: regsvr32 atl.dll regsvr32 shdocvw.dll regsvr32 urlmon.dll regsvr32 browseui.dll regsvr32 oleaut32.dll regsvr32 shell32.dll regsvr32 jscript.dll regsvr32 vbscript.dll regsvr32 mshtmled.dll regsvr32 cLBCATQ.DLL regsvr32 cscui.dll regsvr32 MLANG .dll regsvr32 stobject.dll regsvr32 WINHTTP.dll regsvr32 msxml3.dll regsvr32 query.dll regsvr32 jscript9.dll regsvr32 hlink.dll as shown: summary: the above is a stack overflow concrete solutions pop-up prompts when browsing the web, but if Tip stack overflow often, then it is possible to destroy a pointer to user needs as soon as possible.
Copyright © Windows knowledge All Rights Reserved