Why vlang? V is a featured, productive, safe and confortable language highly compatible with c, that generates neat binaries with c-speed, the decompilation also seems quite clear as c code.
https://vlang.io/

After open the binary with radare in debug mode "-d" we proceed to do the binary recursive analysis with "aaaa" the more a's the more deep analys.



The function names are modified when the binary is crafted, if we have a function named hello in a module named main we will have the symbol main__hello, but we can locate them quicly thanks to radare's grep done with "~" token in this case applied to the "afl" command which lists all the symbols.


Being in debug mode we can use "d*" commands, for example "db" for breakpointing the function and then "dc" to start or continue execution.


Let's dissasemble the function with "pD" command, it also displays the function variables and arguments as well, note also the xref "call xref from main"


Let's take a look to the function arguments, radare detect's this three 64bits registers used on the function.


Actually the function parameter is rsi that contains a testing html to test the href extraction algorithm.


The string structure is quite simple and it's plenty of implemented methods.




With F8 we can step over the code as we were in ollydbg on linux.


Note the rip marker sliding into the code.


We can recognize the aray creations, and the s.index_after() function used to find substrings since a specific position.


If we take a look de dissasembly we sill see quite a few calls to tos3() functions.
Those functions are involved in string initialization, and implements safety checks.

  • tos(string, len)
  • tos2(byteptr)
  • tos3(charptr)

In this case I have a crash in my V code and I want to know what is crashing, just continue the execution with "dc" and see what poits the rip register.



In visual mode "V" we can see previous instructions to figure out the arguments and state.


We've located the crash on the substring operation which is something like "s2 := s1[a..b]" probably one of the arguments of the substring is out of bounds but luckily the V language has safety checks and is a controlled termination:



Switching the basic block view "space" we can see the execution flow, in this case we know the loops and branches because we have the code but this view also we can see the tos3 parameter "href=" which is useful to locate the position on the code.



When it reach the substr, we can see the parameters with "tab" command.



Looking the implementation the radare parameter calculation is quite exact.


Let's check the param values:


so the indexes are from 0x0e to 0x24 which are inside the buffer, lets continue to next iteration,
if we set a breakpoint and check every iteration, on latest iteration before the crash we have the values 0x2c to 0x70 with overflows the buffer and produces a controlled termination of the v compiled process.





Related articles

  1. Pentest Tools Port Scanner
  2. Hacking Tools Hardware
  3. Github Hacking Tools
  4. Hack Tool Apk No Root
  5. Hacker Techniques Tools And Incident Handling
  6. Hacker Tools For Ios
  7. Top Pentest Tools
  8. Computer Hacker
  9. Hacker Tools Software
  10. Pentest Tools
  11. Bluetooth Hacking Tools Kali
  12. Nsa Hacker Tools
  13. Tools For Hacker
  14. Hacking Tools For Kali Linux
  15. Hacker Tools Linux
  16. Hacker Tools Free
  17. Hack Tools Github
  18. Tools Used For Hacking
  19. Pentest Recon Tools
  20. Hacking Tools For Beginners
  21. Hacking Tools Kit
  22. Pentest Tools Free
  23. Termux Hacking Tools 2019
  24. How To Install Pentest Tools In Ubuntu
  25. Underground Hacker Sites
  26. Hacker Tools Apk Download
  27. Hack Tool Apk No Root
  28. Blackhat Hacker Tools
  29. Nsa Hack Tools
  30. Computer Hacker
  31. Hacker Tools Software
  32. Blackhat Hacker Tools
  33. Pentest Tools Online
  34. Pentest Tools Download
  35. Hackers Toolbox
  36. Pentest Tools Tcp Port Scanner
  37. How To Hack
  38. Hacking Tools 2020
  39. Hacker Tools Github
  40. Hacking Tools 2020
  41. Hack Tools
  42. Best Pentesting Tools 2018
  43. Hack Tools 2019
  44. Hack Tools
  45. Black Hat Hacker Tools
  46. Hack Tools Pc
  47. Hack Tools 2019
  48. Hacking Tools For Windows
  49. Nsa Hack Tools
  50. Pentest Tools For Mac
  51. Hacker Tools For Mac
  52. Hacking Tools Download
  53. Hacking Tools Usb
  54. Beginner Hacker Tools
  55. Hack Tools For Games
  56. Hacker Security Tools
  57. Pentest Tools Framework
  58. Hack Tools Mac
  59. Easy Hack Tools
  60. Pentest Tools Open Source
  61. Nsa Hack Tools Download
  62. New Hack Tools
  63. Hacking Tools Mac
  64. Hacker Tools Github
  65. Best Pentesting Tools 2018
  66. Hack Tools For Games
  67. Bluetooth Hacking Tools Kali
  68. Hacker Tools Apk Download

Leave a Reply