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.
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"
Related links
- Hacker Security Tools
- Pentest Automation Tools
- Hackers Toolbox
- Hacker Security Tools
- Hack Tool Apk No Root
- Pentest Tools For Mac
- Hacking Tools Online
- Hacking Tools Online
- Hacker Tools List
- Hacker Tools 2019
- Pentest Tools Linux
- Easy Hack Tools
- What Are Hacking Tools
- Hack Tools Online
- Hack Website Online Tool
- Pentest Tools Url Fuzzer
- Hack And Tools
- Pentest Tools List
- Hacker Tools Github
- Pentest Tools Github
- Pentest Tools Online
- Pentest Tools Android
- Hack Tools Github
- Pentest Tools Review
- Best Hacking Tools 2020
- New Hack Tools
- Hacking Tools
- Hacking Tools For Pc
- Pentest Tools Website
- Pentest Automation Tools
- Hacker Tools For Pc
- Hack Apps
- Pentest Tools Framework
- Pentest Tools Tcp Port Scanner
- Hacker Tools Mac
- Hack Tool Apk
- Hacking Tools Online
- Hacking Tools For Windows
- Hacking Tools For Pc
- Growth Hacker Tools
- Pentest Tools Kali Linux
- Ethical Hacker Tools
- Hacking Tools Usb
- Hacker Tool Kit
- Hacker Tools For Windows
- How To Make Hacking Tools
- Hacking Tools Download
- Hack Website Online Tool
- Hacking Tools And Software
- What Are Hacking Tools
- Hacking Tools Github
- Hack Tools
- Hacker Hardware Tools
- Hacking Tools For Games
- Hak5 Tools
- Hacking Tools 2020
- New Hack Tools
- Hack Tools Mac
- Hack Tool Apk
- Pentest Tools Find Subdomains
- Ethical Hacker Tools
- Hacking App
- What Is Hacking Tools
- Hackers Toolbox
- Hacking Tools For Pc
- Pentest Recon Tools
- Hacking App
- Growth Hacker Tools
- Hack Website Online Tool
- Termux Hacking Tools 2019
- Hack Rom Tools
- World No 1 Hacker Software
- Beginner Hacker Tools
- Pentest Tools Bluekeep
- Hack Tools 2019
- Termux Hacking Tools 2019
- Hacker Tools Hardware
- Hacking Tools Pc
- Hacking Tools Mac
- Hacker
- How To Hack
- Pentest Tools List
- Pentest Tools Nmap
- Pentest Tools Free
- Hacking Apps
- Free Pentest Tools For Windows
- Hack Tools Online
- Pentest Tools Find Subdomains
- Hacker Tools Software
- Pentest Tools Url Fuzzer
- What Is Hacking Tools
- Hacking Tools For Kali Linux
- Pentest Tools Android
- Beginner Hacker Tools
- Hacker Tools Software
- Hacking Tools Download
No comments:
Post a Comment