There are situations when c interacts with golang for example in a library, and its possible to exploit a golang function writing raw memory using an unsafe.Pointer() parameter.
When golang receive a null terminated string on a *C.Char parameter, can be converted to golang s tring with s2 := C.GoString(s1) we can do string operations with s2 safelly if the null byte is there.
When golang receives a pointer to a buffer on an unsafe.Pointer() and the length of the buffer on a C.int, if the length is not cheated can be converted to a []byte safelly with b := C.GoBytes(buf,sz)
Buuut what happens if golang receives a pointer to a buffer on an unsafe.Pointer() and is an OUT variable? the golang routine has to write on this pointer unsafelly for example we can create a golangs memcpy in the following way:
We convert to uintptr for indexing the pointer and then convert again to pointer casted to a byte pointer dereferenced and every byte is writed in this way.
If b is controlled, the memory can be written and the return pointer of main.main or whatever function can be modified.
https://play.golang.org/p/HppcVpLfuMf
The return addres can be pinpointed, for example 0x41 buffer 0x42 address:
We can reproduce it simulating the buffer from golang in this way:
we can dump the address of a function and redirect the execution to it:
https://play.golang.org/p/7htJHJp8gUJ
In this way it's possible to build a rop chain using golang runtime to unprotect a shellcode.
More articles
- Pentest Tools List
- Pentest Tools Apk
- Hacking Apps
- Hacking Tools For Windows
- Hacking Tools For Pc
- Hack Tools For Windows
- Easy Hack Tools
- Pentest Tools Apk
- Pentest Tools Android
- Pentest Tools List
- Pentest Tools Find Subdomains
- Hack And Tools
- Pentest Tools Find Subdomains
- Pentest Tools Tcp Port Scanner
- Pentest Tools Android
- Pentest Tools For Mac
- Hacker Tools Apk Download
- Hacking Tools Windows 10
- Best Hacking Tools 2020
- Hack Apps
- Pentest Tools For Mac
- Hacking Tools For Windows Free Download
- Pentest Tools Free
- Hacker Tools
- Hacker
- How To Make Hacking Tools
- Hacking Tools For Games
- Hacker Techniques Tools And Incident Handling
- Hacking Tools Hardware
- Hacking Tools Usb
- Nsa Hacker Tools
- Hacker Tools List
- Hak5 Tools
- Hack Tools For Mac
- Hacker Tools Linux
- Hacker Tools 2020
- Pentest Tools Alternative
- Hacker Tools For Pc
- Hacking Tools Software
- New Hacker Tools
- Hacker Tools Github
- Hacking Tools Software
- Hacker Tools Hardware
- Hacking Tools For Games
- New Hacker Tools
- Top Pentest Tools
- Hacking Tools For Windows Free Download
- Hacking Tools Online
- Hacking Tools Kit
- Pentest Tools Kali Linux
- Hak5 Tools
- New Hack Tools
- Hacker Tools For Windows
- Hack Rom Tools
- Black Hat Hacker Tools
- Hacking Tools Mac
- Android Hack Tools Github
- Pentest Tools Open Source
- Hacking Tools Download
- Pentest Tools Website Vulnerability
- Pentest Tools Find Subdomains
- Pentest Tools Subdomain
- Hack Tools Online
- Bluetooth Hacking Tools Kali
- Pentest Tools Website Vulnerability
- How To Install Pentest Tools In Ubuntu
- Hacking Tools Software
- Hacker Tool Kit
- Hacker Tools Linux
- Pentest Tools Bluekeep
- Hacker
- Hack Tool Apk No Root
- Ethical Hacker Tools
- Hack Tools For Windows
- Hacker Tools
- Hack Tools 2019
- Pentest Tools Port Scanner
- Hacker Tools 2019
- Hack Tools For Pc
- Hack Apps
- Hack Tools For Windows
- Hacker Tools
- Hacker
No comments:
Post a Comment