Friday, August 28, 2020

C++ Std::String Buffer Overflow And Integer Overflow

Interators are usually implemented using signed integers like the typical "for (int i=0; ..." and in fact is the type used indexing "cstr[i]", most of methods use the signed int, int by default is signed.
Nevertheless, the "std::string::operator[]" index is size_t which is unsigned, and so does size(), and same happens with vectors.
Besides the operator[] lack of negative index control, I will explain this later.

Do the compilers doesn't warn about this?


If his code got a large input it would index a negative numer, let see g++ and clang++ warnings:



No warnings so many bugs out there...

In order to reproduce the crash we can load a big string or vector from file, for example:


I've implemented a loading function, getting the file size with tellg() and malloc to allocate the buffer, then in this case used as a string.
Let see how the compiler write asm code based on this c++ code.



So the string constructor, getting size and adding -2 is clear. Then come the operator<< to concat the strings.
Then we see the operator[] when it will crash with the negative index.
In assembly is more clear, it will call operator[] to get the value, and there will hapen the magic dereference happens. The operator[] will end up returning an invalid address that will crash at [RAX]



In gdb the operator[] is a  allq  0x555555555180 <_znst7__cxx1112basic_stringicst11char_traitsicesaiceeixem plt="">

(gdb) i r rsi
rsi            0xfffffffffffefffe  -65538


The implmementation of operator ins in those functions below:

(gdb) bt
#0  0x00007ffff7feebf3 in strcmp () from /lib64/ld-linux-x86-64.so.2
#1  0x00007ffff7fdc9a5 in check_match () from /lib64/ld-linux-x86-64.so.2
#2  0x00007ffff7fdce7b in do_lookup_x () from /lib64/ld-linux-x86-64.so.2
#3  0x00007ffff7fdd739 in _dl_lookup_symbol_x () from /lib64/ld-linux-x86-64.so.2
#4  0x00007ffff7fe1eb7 in _dl_fixup () from /lib64/ld-linux-x86-64.so.2
#5  0x00007ffff7fe88ee in _dl_runtime_resolve_xsavec () from /lib64/ld-linux-x86-64.so.2
#6  0x00005555555554b3 in main (argc=2, argv=0x7fffffffe118) at main.cpp:29

Then crashes on the MOVZX EAX, byte ptr [RAX]

Program received signal SIGSEGV, Segmentation fault.
0x00005555555554b3 in main (argc=2, argv=0x7fffffffe118) at main.cpp:29
29     cout << "penultimate byte is " << hex << s[i] << endl;
(gdb)


What about negative indexing in std::string::operator[] ?
It's exploitable!

In a C char array is known that having control of the index, we can address memory.
Let's see what happens with C++ strings:






The operator[] function call returns the address of string plus 10, and yes, we can do abitrary writes.



Note that gdb displays by default with at&t asm format wich the operands are in oposite order:


And having a string that is in the stack, controlling the index we can perform a write on the stack.



To make sure we are writing outside the string, I'm gonna do 3 writes:


 See below the command "i r rax" to view the address where the write will be performed.


The beginning of the std::string object is 0x7fffffffde50.
Write -10 writes before the string 0x7fffffffde46.
And write -100 segfaults because is writting in non paged address.



So, C++ std::string probably is not vulnerable to buffer overflow based in concatenation, but the std::string::operator[] lack of negative indexing control and this could create vulnerable and exploitable situations, some times caused by a signed used of the unsigned std::string.size()










Related news

  1. Best Hacking Tools 2020
  2. Hacking Tools Mac
  3. Nsa Hack Tools
  4. Hacking Tools For Windows 7
  5. How To Install Pentest Tools In Ubuntu
  6. Hackrf Tools
  7. Hacker Hardware Tools
  8. Pentest Box Tools Download
  9. Hack Tools For Ubuntu
  10. Hacking Tools Github
  11. Hack Tools For Mac
  12. Hack Tools 2019
  13. Physical Pentest Tools
  14. Hackers Toolbox
  15. Usb Pentest Tools
  16. Physical Pentest Tools
  17. Hacker Security Tools
  18. Hacking Tools Windows
  19. Pentest Tools Open Source
  20. Top Pentest Tools
  21. Pentest Tools Website Vulnerability
  22. Hack Tools Download
  23. Hacker Tools Github
  24. Hack Tools Download
  25. Hack Tools For Pc
  26. Pentest Tools Open Source
  27. Wifi Hacker Tools For Windows
  28. Hacking Tools 2019
  29. Wifi Hacker Tools For Windows
  30. Pentest Tools Android
  31. Hacker Hardware Tools
  32. Android Hack Tools Github
  33. Pentest Tools Framework
  34. Pentest Tools For Mac
  35. Pentest Tools For Android
  36. What Are Hacking Tools
  37. Hacking Tools 2020
  38. Pentest Tools Framework
  39. How To Hack
  40. Pentest Tools For Ubuntu
  41. Hacking Apps
  42. World No 1 Hacker Software
  43. Pentest Tools Website Vulnerability
  44. Pentest Tools Windows
  45. Hacking Tools Hardware
  46. Hack Tools Mac
  47. Hacking Tools
  48. Pentest Tools For Android
  49. Install Pentest Tools Ubuntu
  50. Hacker Tools Github
  51. Hack Tools For Games
  52. Nsa Hacker Tools
  53. Hacking Tools Software
  54. Hack Tool Apk
  55. Pentest Tools Online
  56. Hack Tools Pc
  57. Physical Pentest Tools
  58. Hacking Tools For Windows 7
  59. What Are Hacking Tools
  60. Hack Rom Tools
  61. Hacking Tools For Windows Free Download
  62. Pentest Tools Subdomain
  63. Hacker Tools 2020
  64. Pentest Tools Github

0 comments