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 posts
- Hacker Tools For Pc
- Pentest Tools Url Fuzzer
- Hack Tools Online
- Hack Website Online Tool
- Pentest Tools Find Subdomains
- Hack And Tools
- Computer Hacker
- Easy Hack Tools
- Wifi Hacker Tools For Windows
- Pentest Tools Tcp Port Scanner
- Hacker Tools For Pc
- Game Hacking
- Android Hack Tools Github
- Hack Tools Download
- Hack Tools For Windows
- Ethical Hacker Tools
- Hacking Tools Windows
- Hacking Tools Mac
- Pentest Tools Subdomain
- Pentest Box Tools Download
- Hack Tool Apk No Root
- Hack Tools
- Pentest Tools Android
- Termux Hacking Tools 2019
- Pentest Tools Open Source
- Hacker
- Pentest Tools Review
- Hacking Tools Online
- Hacking Tools Kit
- Computer Hacker
- Underground Hacker Sites
- How To Hack
- Tools Used For Hacking
- What Are Hacking Tools
- Hack Apps
- Hacking Tools For Games
- Tools 4 Hack
- Pentest Tools Github
- Hack App
- Pentest Tools Download
- Hack Tools
- Wifi Hacker Tools For Windows
- Best Pentesting Tools 2018
- Pentest Tools Download
- Hacking Tools For Games
- Pentest Tools For Ubuntu
- Pentest Tools Port Scanner
- Best Pentesting Tools 2018
- Nsa Hack Tools
- Pentest Reporting Tools
- Pentest Tools Url Fuzzer
- Pentest Tools For Ubuntu
- New Hack Tools
- Hack Website Online Tool
- Hacker Hardware Tools
- Tools 4 Hack
- Hacking Tools Hardware
- Hack Tools Pc
- Nsa Hack Tools
- Hacker Search Tools
- Hack Tools
- Top Pentest Tools
- Pentest Tools Download
- Hacker Tools
- Pentest Tools For Ubuntu
- Pentest Tools Github
- Pentest Tools Nmap
- Pentest Tools Linux
- Pentest Tools For Android
- Pentest Tools Download
- Pentest Box Tools Download
- Top Pentest Tools
- Pentest Recon Tools
- Pentest Tools Linux
- Hacker Tool Kit
- Pentest Tools Port Scanner
- Physical Pentest Tools
- Hacker Tools Online
- Hack Tools For Games
- Hacker Tools Github
- Hacker Security Tools
- Pentest Tools
- Hacking Tools For Kali Linux
- Hack Tools Github
- Best Hacking Tools 2019
- Usb Pentest Tools
- Pentest Tools Subdomain
- Pentest Tools Windows
- Pentest Tools Apk
- Hack And Tools
- Pentest Tools Download
- Hacking Tools Windows
- Pentest Tools Online
- Hacker Tools 2019
- Hacking Tools
- Pentest Tools For Windows
- Hacking Tools Software
- Hack Apps
- Hack Website Online Tool
- Hacking Tools For Beginners
- Pentest Tools For Ubuntu
- Android Hack Tools Github
- Install Pentest Tools Ubuntu
- Hacker Tools Free
- Pentest Tools For Ubuntu
- Hack Tools Online
- Hacker Tools For Pc
- Tools For Hacker
- Hacker Tools For Ios
- Bluetooth Hacking Tools Kali
- Github Hacking Tools
- Hack App
- Hacking Apps
- Hacking Tools For Kali Linux
- Pentest Tools Tcp Port Scanner
- Hacker Techniques Tools And Incident Handling
- Hacking Tools And Software
- Hacker Tools 2020
- Hak5 Tools
- Best Pentesting Tools 2018
- Hacking Tools Windows
- Nsa Hack Tools Download
- Hack Tools Online
- Hack Apps
- Hacker Tools 2020
- Hacker Tools 2019
- Hack Tools For Ubuntu
- Ethical Hacker Tools
- Hacking Tools Software
- Hack Tools Online
- Pentest Tools Tcp Port Scanner
- Tools For Hacker
- New Hack Tools
- Hack Tools For Windows
No comments:
Post a Comment