我要投稿
  • 您当前的位置:365bet官方 -> 技术教程 -> 操作系统教程 -> windowsXP教程 -> 教程内容
  • [ 收藏本页教程 ]
  • Exploitation of Buffer Overflows Under Windows XP

    教程作者:佚名    教程来源:不详   教程栏目:windowsXP教程    收藏本页
    Exploitation of Buffer Overflows Under Windows XP
    Since the dawn of the computer age, coders and admins alike have been plagued with a fearsome and
    powerful enemy. This creature is difficult to avoid, since it takes advantage of the very design system of modern computers
    to live. Rarely taking the same form twice, this beast was originally created by the combination of a lack of foresight during
    the creation of some of the worlds most popular and powerful languages, and was supported wholly
    by the unsuspecting systems it has plagued.


                              Hitchhiker's World (Issue #8)
                            http://www.infosecwriters.com/hhworld/

          ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
          ++ Exploitation of Buffer Overflow Vulnerabilities Under Windows XP ++
          ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
                    ++     Exploiting User Applications: A Case Study   ++
                    +++++++++++++++++++++++++++++++++++++++++++++++++++
                      ++                 WideChapter.exe             ++
                        ++         http://www.widechapter.com       ++
                        +++++++++++++++++++++++++++++++++++++++++++
                          ++         By Peter Winter-Smith       ++
                            ++       [peter4020@hotmail.com]     ++
                            +++++++++++++++++++++++++++++++++++

    Section 1. A General Introduction to Buffer Overflows
    =====================================================

    Since the dawn of the computer age, coders and admins alike have been plagued
    with a fearsome and powerful enemy. This creature is difficult to avoid, since
    it takes advantage of the very design system of modern computers to live.
    Rarely taking the same form twice, this beast was originally created by the
    combination of a lack of foresight during the creation of some of the worlds
    most popular and powerful languages, and was supported wholly by the
    unsuspecting systems it has plagued.

    For you see, this work of evil is deceptive; the system on its own is blind
    and perhaps foolishly trusting. On it's own it would not be able to recognise an
    attack being mounted against it even after it had been carried out. It is this
    ability which gives the creature it's unique nature. There are many ways in
    which it can achieve a successful attack, and it is often able to outwit the
    very people who created the conditions under which it was able to thrive.

    Although you may feel unaffected by this, I can say with total and complete
    confidence that if you have ever used a computer which had access to the outside
    world, no matter how important it was, you were vulnerable to attack. If you
    have not been attacked you can be sure that luck had a huge role to play in
    that.

    One famous application was designed to infiltrate system after system. It was
    one of the first of it's kind. Instead of taking the form of an attacker
    attempting to gain unauthorised access it used the design flaws to upload itself
    to the victim, and then went on to replicate itself, and search for others to
    attack.

    It was commonly known as the Morris Worm, after it's author Robert Morris was
    convicted upon the grounds of substantial evidence arising from his research
    work.

    Two other, more recent worms, both of which were spread on a much larger scale
    than the Morris Worm, are the SQL Slammer, and most recently the MSBlaster
    worm, both of which took advantage of widespread stack based buffer overflows in
    Microsoft Windows systems. The holes existed in Microsoft SQL Server, and the
    Windows RPC Interface respectively, and caused many computers to become infected
    over the period of a few days.

    Although these malicious applications can cause hold-ups, loss of money and
    business, and pose many a potential problem to the remote systems, you can often
    consider yourself lucky if your computer was infected, because it's highly
    likely that otherwise a remote attacker would have been able to assume complete
    control over the system, and could have used it whatever malicious ends he
    desired.

    The more observant of you will probably have noticed that I have not yet
    actually attempted to explain what a buffer overflow is, how it can occur, and
    where they are commonly found; so I had better make haste to do that!

    To cut a long story short, a buffer overflow condition arises when more data
    is allowed to be written to a specific point in the memory than was set out to
    hold that data. Often data will be written to the stack memory area, which is
    where buffers local to a specific procedure are usually created.

    When a function is called, a return address is placed onto the stack by the
    application, which the function uses to know where to return to in the
    previously run executable code once the function has completed.

    Often the base pointer is placed onto the stack by the function, the stack
    pointer is placed into the base pointer register, and a pre-defined amount of
    space is created on the stack by subtracting a value from the stack pointer
    register. Data is written on to the stack by instructions such as 'push', and is
    placed at the address contained in the stack pointer register.

    When the function has completed, the 'leave' instruction moves the base pointer
    back into the stack pointer register, then 'pops' the saved base pointer off of
    the stack so that the stack pointer is pointing at the saved return address.
    Then the 'retn' instruction (or some close variant) pops that off the stack into
    the instruction pointer register which causes the execution flow to go back to
    the application code, one instruction after where it executed the call.

    A lot of the functions work with strings, such as strcpy(), which copies a
    string from a memory location to another memory location, strcat() which adds
    one string of data onto another in the memory, and gets(), which takes user
    input from stdin, and places it into a buffer. Much of the time these functions
    are used with input which the user of the software can control, such as a
    request for a username, or a password, or even a the path of a file - basically
    any string input area is potentially vulnerable depending on how the coder has
    worked with the data afterwards. When the afore mentioned instructions (along
    with many others) are used with user input, the combination is *lethal*.

    Strings are asciiz in win32, which means that they are only considered as having
    ended when a null byte (00h) is encountered. Strings in C and C++ are declared
    with a fixed length, for example 'char string[16];' would create a 16 byte
    buffer, and 'char string2[]="THISSTR";' would create an eight byte buffer.
    Strings are dealt with in
    我要投稿   -   广告合作   -   关于本站   -   友情连接   -   网站地图   -   联系我们   -   版权声明   -   设为首页   -   加入收藏   -   网站留言
    Copyright © 2009 - 20012 www.www.ct131.com All Rights Reserved.365bet官方 版权所有