Saturday, August 29, 2020

Reversing Some C++ Io Operations

In general decompilers are not friendly with c++ let's analyse a simple program to get familiar with it.
Let's implement a simple code that loads a file into a vector and then save the vector with following functions:

  • err
  • load
  • save
  • main


Lets identify the typical way in C++ to print to stdout with the operator "<<"


The basic_ostream is initialized writing the word "error" to the cout, and then the operator<< again to add the endl.




The Main function simply calls  "vec = load(filename)"  but the compiler modified it and passed the vector pointer as a parámeter. Then it bulds and prints "loaded  " << size << " users".
And finally saves the vector to /tmp/pwd and print "saved".
Most of the mess is basically the operator "<<" to concat and print values.
Also note that the vectors and strings are automatically deallocated when exit the function.


And here is the code:


Let's take a look to the load function, which iterates the ifs.getline() and push to the vector.
First of all there is a mess on the function definition, __return_storage_ptr is the vector.
the ifstream object ifs is initialized as a basic_ifstream and then operator! checks if it wasn't possible to open the file and in that case calls err()
We see the memset and a loop, getline read a cstr like line from the file, and then is converted to a string before pushing it to the vector. lVar1 is the stack canary value.

In this situations dont obfuscate with the vector pointer vec initialization at the begining, in this case the logic is quite clear.



The function save is a bit more tricky, but it's no more than a vector iteration and ofs writing.
Looping a simple "for (auto s : *vec)" in the decompiler is quite dense, but we can see clearly two write, the second write DAT_0010400b is a "\n"



As we see, save implememtation is quite straightforward.




More information
  1. Kik Hack Tools
  2. Bluetooth Hacking Tools Kali
  3. Hack Tools For Games
  4. Hack Tools For Mac
  5. Hacking Tools For Mac
  6. Hacker Tools Software
  7. Game Hacking
  8. Pentest Box Tools Download
  9. Hack And Tools
  10. What Are Hacking Tools
  11. Hacker Techniques Tools And Incident Handling
  12. Pentest Tools Apk
  13. Hacking Tools Free Download
  14. Underground Hacker Sites
  15. Hacker Tool Kit
  16. Hack Tools For Games
  17. Android Hack Tools Github
  18. Hacking Tools Free Download
  19. Kik Hack Tools
  20. Hack Tools For Pc
  21. Hacker Tools Github
  22. Hacker Techniques Tools And Incident Handling
  23. Pentest Tools Alternative
  24. Best Hacking Tools 2020
  25. Hacking Tools Name
  26. Hacking Tools Name
  27. Hacking Tools For Beginners
  28. Pentest Tools Framework
  29. Usb Pentest Tools
  30. Hacking Tools Kit
  31. Pentest Tools For Mac
  32. Hacker Tool Kit
  33. Hacker Tools Github
  34. Hacking Tools For Windows Free Download
  35. Best Hacking Tools 2020
  36. Hacker Tools Hardware
  37. Tools 4 Hack
  38. Hacking Tools For Games
  39. Hacker Tools Apk Download
  40. Pentest Tools For Ubuntu
  41. Hacker Search Tools
  42. Hacking Tools For Beginners
  43. Hacking Tools Mac
  44. Hacker Tools Apk Download
  45. Hacker Tools Apk
  46. Hacker Tools Apk
  47. Hack App
  48. Hacking Tools For Mac
  49. Hacking Tools Kit
  50. Pentest Box Tools Download
  51. Tools For Hacker
  52. Hak5 Tools
  53. Blackhat Hacker Tools
  54. Free Pentest Tools For Windows
  55. Pentest Tools Linux
  56. Hacking Tools For Kali Linux
  57. Easy Hack Tools
  58. Hacking Tools
  59. Pentest Tools Download
  60. Hacking Tools Hardware
  61. Easy Hack Tools
  62. Hacker Tools For Pc
  63. Pentest Tools Download
  64. Pentest Tools Windows
  65. Free Pentest Tools For Windows
  66. Hacking Tools Software
  67. Hacker Tools For Mac
  68. Pentest Tools Website
  69. Hacking Tools Software
  70. Hacking Tools For Windows 7
  71. Tools 4 Hack
  72. Hacker Hardware Tools
  73. Pentest Tools For Ubuntu
  74. Hacking Tools For Mac
  75. Hackers Toolbox
  76. Tools 4 Hack
  77. Hack Rom Tools
  78. Beginner Hacker Tools
  79. Pentest Tools For Ubuntu
  80. What Is Hacking Tools
  81. Github Hacking Tools
  82. Hacking Tools 2019
  83. Pentest Tools Tcp Port Scanner
  84. Growth Hacker Tools
  85. Pentest Tools For Android
  86. Hacking Tools For Windows 7
  87. Hack Website Online Tool
  88. Hack Tools For Pc
  89. Nsa Hack Tools
  90. Hacker Tools Free
  91. Hack Tools Github
  92. New Hack Tools
  93. New Hack Tools
  94. Nsa Hacker Tools
  95. Hacking Tools Pc
  96. Pentest Tools List
  97. Hacking Tools For Kali Linux
  98. Pentest Tools Review
  99. Hacks And Tools
  100. Hacker Tools Software
  101. Hack And Tools
  102. Hacker Tools Apk
  103. Pentest Tools Website
  104. Tools 4 Hack
  105. Hacking Tools Hardware
  106. Pentest Tools
  107. Tools 4 Hack
  108. Hacker
  109. Android Hack Tools Github
  110. Hack Tools 2019
  111. How To Hack
  112. Pentest Tools Alternative
  113. Pentest Tools Port Scanner
  114. Beginner Hacker Tools
  115. Computer Hacker
  116. Hacker
  117. Pentest Recon Tools
  118. Pentest Tools Download
  119. Hacking Tools Free Download
  120. Hacking Tools Usb
  121. Hacker Tools Free
  122. Hacker Tools Free Download
  123. Hacker Tools Apk

No comments:

Post a Comment