Tuesday, May 30, 2023

OWASP ZAP Project - Zed Attack Proxy Team Releases Two Initiatives

The Zed Attack Proxy team is pleased to announce two recently released initiatives:


ZAP In Ten

The team have just launched a new series of videos called 'ZAP in Ten' in conjunction with AllDayDevOps.

ZAP in Ten is a series of short form videos featuring Simon Bennetts, project lead of the OWASP Zed Attack Proxy (ZAP)  project. Each video highlights a specific feature or resource for ZAP.

ZAP API Docs

As part of OWASP's participation in Google's Season of Docs, the ZAP project has had @sshniro working on API documentation. The first iteration of the documentation is now live.  It includes Java, Python, and shell example snippets all presented in a responsive and accessible design. Which we will continue to build on in the future.

Big thanks to Nirojan for his efforts on this wonderful initiative!  Congratulations and thanks to Google Open Source for helping to bring the open source and technical writer communities together!Read more

C++ Std::String Buffer Overflow And Integer Overflow

Interators are usually implemented using signed integers like the typical "for (int i=0; ..." and in fact is the type used indexing "cstr[i]", most of methods use the signed int, int by default is signed.
Nevertheless, the "std::string::operator[]" index is size_t which is unsigned, and so does size(), and same happens with vectors.
Besides the operator[] lack of negative index control, I will explain this later.

Do the compilers doesn't warn about this?


If his code got a large input it would index a negative numer, let see g++ and clang++ warnings:



No warnings so many bugs out there...

In order to reproduce the crash we can load a big string or vector from file, for example:


I've implemented a loading function, getting the file size with tellg() and malloc to allocate the buffer, then in this case used as a string.
Let see how the compiler write asm code based on this c++ code.



So the string constructor, getting size and adding -2 is clear. Then come the operator<< to concat the strings.
Then we see the operator[] when it will crash with the negative index.
In assembly is more clear, it will call operator[] to get the value, and there will hapen the magic dereference happens. The operator[] will end up returning an invalid address that will crash at [RAX]



In gdb the operator[] is a  allq  0x555555555180 <_znst7__cxx1112basic_stringicst11char_traitsicesaiceeixem plt="">

(gdb) i r rsi
rsi            0xfffffffffffefffe  -65538


The implmementation of operator ins in those functions below:

(gdb) bt
#0  0x00007ffff7feebf3 in strcmp () from /lib64/ld-linux-x86-64.so.2
#1  0x00007ffff7fdc9a5 in check_match () from /lib64/ld-linux-x86-64.so.2
#2  0x00007ffff7fdce7b in do_lookup_x () from /lib64/ld-linux-x86-64.so.2
#3  0x00007ffff7fdd739 in _dl_lookup_symbol_x () from /lib64/ld-linux-x86-64.so.2
#4  0x00007ffff7fe1eb7 in _dl_fixup () from /lib64/ld-linux-x86-64.so.2
#5  0x00007ffff7fe88ee in _dl_runtime_resolve_xsavec () from /lib64/ld-linux-x86-64.so.2
#6  0x00005555555554b3 in main (argc=2, argv=0x7fffffffe118) at main.cpp:29

Then crashes on the MOVZX EAX, byte ptr [RAX]

Program received signal SIGSEGV, Segmentation fault.
0x00005555555554b3 in main (argc=2, argv=0x7fffffffe118) at main.cpp:29
29     cout << "penultimate byte is " << hex << s[i] << endl;
(gdb)


What about negative indexing in std::string::operator[] ?
It's exploitable!

In a C char array is known that having control of the index, we can address memory.
Let's see what happens with C++ strings:






The operator[] function call returns the address of string plus 10, and yes, we can do abitrary writes.



Note that gdb displays by default with at&t asm format wich the operands are in oposite order:


And having a string that is in the stack, controlling the index we can perform a write on the stack.



To make sure we are writing outside the string, I'm gonna do 3 writes:


 See below the command "i r rax" to view the address where the write will be performed.


The beginning of the std::string object is 0x7fffffffde50.
Write -10 writes before the string 0x7fffffffde46.
And write -100 segfaults because is writting in non paged address.



So, C++ std::string probably is not vulnerable to buffer overflow based in concatenation, but the std::string::operator[] lack of negative indexing control and this could create vulnerable and exploitable situations, some times caused by a signed used of the unsigned std::string.size()










Continue reading


  1. Hacker Techniques Tools And Incident Handling
  2. Hacking Tools 2019
  3. Hacking Tools Online
  4. Pentest Tools List
  5. Pentest Tools Framework
  6. Hacker Tools 2019
  7. Nsa Hacker Tools
  8. Hacking Tools Windows
  9. Hacking Tools For Windows 7
  10. Hacking Tools Online
  11. Nsa Hack Tools
  12. Pentest Tools Url Fuzzer
  13. Hacking Tools Windows
  14. Hack And Tools
  15. Pentest Tools Website
  16. Hacking Tools Mac
  17. Tools For Hacker
  18. Hacker Tools
  19. Hacker Tools Online
  20. Hacking App
  21. Pentest Tools Kali Linux
  22. Hacking Tools For Kali Linux
  23. What Are Hacking Tools
  24. Hacker Tools Linux
  25. Hack Tools For Windows
  26. Pentest Tools For Ubuntu
  27. Pentest Tools Open Source
  28. Hacking Tools And Software
  29. Pentest Automation Tools
  30. Pentest Tools Subdomain
  31. Usb Pentest Tools
  32. Nsa Hacker Tools
  33. Hacking Tools Software
  34. Hacker Tools Apk Download
  35. Hacker Tools Free Download
  36. Pentest Tools Github
  37. Black Hat Hacker Tools
  38. Hacker Security Tools
  39. Hacking Tools Download
  40. Tools Used For Hacking
  41. Nsa Hacker Tools
  42. Hack Tools 2019
  43. Hacking Tools Download
  44. Hack Tools Pc
  45. Hacking Tools For Kali Linux
  46. Hacker Tool Kit
  47. Hack Tools Github
  48. Hacker Security Tools
  49. What Are Hacking Tools
  50. Kik Hack Tools
  51. Hacking Tools For Pc
  52. Hacker Tools 2020
  53. Hak5 Tools
  54. Hack Rom Tools
  55. Pentest Tools
  56. Pentest Recon Tools
  57. Hacker Tools
  58. Tools For Hacker
  59. Hacking Tools Hardware
  60. Hack Tools For Mac
  61. Pentest Box Tools Download
  62. Nsa Hack Tools
  63. Hacking Tools Usb
  64. Hack Website Online Tool
  65. Hacking Tools Usb
  66. Hack Tools 2019
  67. Pentest Tools Find Subdomains
  68. Game Hacking
  69. Pentest Tools Tcp Port Scanner
  70. Hacker Search Tools
  71. Pentest Tools Nmap
  72. Install Pentest Tools Ubuntu
  73. Pentest Box Tools Download
  74. Hacker Techniques Tools And Incident Handling
  75. Hack Tools For Games
  76. Hacker Tools List
  77. Hacker Tools Hardware
  78. Hacker Tools Hardware
  79. Best Hacking Tools 2020
  80. Free Pentest Tools For Windows
  81. Hack And Tools
  82. Pentest Tools For Mac

Scanning For Padding Oracles

As you might have heard, we recently got our paper on padding oracle attacks accepted to the USENIX Security Conference. In this paper, we describe and evaluate a scanning methodology with which we found several padding oracle vulnerabilities in devices from various vendors. In total, we found that 1.83% of the Alexa Top 1 Million have padding oracle vulnerabilities.

To test whether a server is vulnerable, we specified different padding oracle vectors which we send to the system under test, using different cipher suites and protocol versions. If the server does not behave identically (on both the TLS and TCP layers), we consider it to be vulnerable to a padding oracle attack, since it is leaking information about the plaintext via behavior differences. Depending on the responses to such padding oracle vectors, one can estimate which implementation is responsible for the vulnerability. We contacted quite a few website owners and tried to cooperate with them, to find out which vendors and TLS stacks are responsible for the identified vulnerabilities. You can find our current disclosure status on this issue on https://github.com/RUB-NDS/TLS-Padding-Oracles.
We are currently in contact with other vendors to fix the remaining vulnerabilities, but the some of the rare (in terms of the number of affected hosts) vulnerabilities are currently not attributed. To fix the remaining vulnerabilities, we ask for your assistance to help get rid of this issue. For this purpose, we integrated a standalone version of our padding oracle evaluation tool into our TLS-Scanner (v.2.7) project. This tool allows you (among other things) to evaluate if a specific server is vulnerable.

When the tool detects a vulnerability, it tries to attribute the vulnerability to a specific vendor or CVE. If we already know of the vulnerability of the server you scanned, the tool will print its details. If the tool does not have a description of the vulnerability in its database, it will ask you to notify us about the vulnerable server, such that we can notify the vendor and get the device fixed. To be clear: the tool never sends any data to us - you have the choice of whether to notify us (and what details to include). There is a chance that the tool's attribution is also mistaken, that is, the tool lists a vendor for your host, but you know for sure that you do not use an implementation by this vendor. Please contact us in such cases as well.

How to use the Tool

First, you need to grab hold of the tool. There are 3 ways to get your hands dirty: pre-compiled, self-compiled or Docker. We provide a pre-compiled version of the tool since the compilation process can get quite messy if you are not familiar with java and maven. You can directly download the resulting project here. However, if you also want to play around with the code, you have to compile everything yourself.

Building the TLS-Scanner

For this, you will need (Git), maven (sudo apt-get install maven), OpenJDK-8  (I can guarantee that this version works, other versions might work as well, have not tested it).

You will need to get TLS-Attacker 2.9 (if you do not already have it):
Now we can clone and install the TLS-Scanner

Docker

We also provide a Dockerfile, which lets you run the scanner directly

Getting Started


If you start the TLS-Scanner you should be greeted by a usage info, similar to the one below:

 or


This should give you an overview of the supported command line flags. The only really required one is the -connect flag (similar to OpenSSL and TLS-Attacker), with which you specify which host to scan. The most basic command is therefore:

Your output may look something like this:

By default, TLS-Scanner will run single-threaded. In such cases the scanning will take a while; just how long it will take depends on your server configuration. The scanner also supports multi-threading, which drastically improves the performance. There are two parameters to play around with, -threads, which controls how many different "probes" are executed in parallel, and -aggressive , which controls how many handshakes can be executed simultaneously. If you want the fastest results the following parameters are usually a good choice:

But lets get back to the results of the Scanner. Currently the Scanner supports a bunch of well known tests, like supported ciphersuites or protocol versions. These are very similar to what you may be used to from other scanners like ssllabs or testssl.sh.

Padding Oracles

The main advantage of our scanner is the ability to scan for padding oracle vulnerabilities (which is probably why you are reading this post). You will see if you are vulnerable in the "Attack Vulnerabilities" section. For example, when scanning hackmanit.de, the result is false. Good for us! But as you might have seen there is also another section in the scanner report:"PaddingOracle Responsemap"
This section lists the responses of the scanned host for each padding oracle vector, for each cipher suite and protocol version. For hackmanit.de, there is no detected difference in responses, which means hackmanit.de is not vulnerable to the attack:
If we want, we can also look at the concrete responses of the server. For this purpose, we start the scanner with the -reportDetail flag:

With this flag we now get the following details:

So what does this all mean? First of all, we named our malformed records. The interpretation of those names is visualized in the following table:
BasicMac-<position>-<XOR>   A Record with ApplicationData, MAC and padding bytes, where the padding byte at <position> is XOR'd <XOR>
 MissingMacByteFirst  A Record without ApplicationData, where the first byte of the MAC is missing
 MissingMacByteLast  A Record without ApplicationData, where the last byte of the MAC is missing
 Plain FF  A Record without ApplicationData & MAC which only contains Paddingbytes: 64* 0xFF 
 Plain 3F  A Record without ApplicationData & MAC which only contains Paddingbytes: 64* 0xF3
 InvPadValMac-[<position>]-<appDataLength>-<paddingBytes>  A Record with invalid padding and valid MAC. The Record contains <appDataLength> many ApplicationData bytes and <paddingBytes> many PaddingBytes. The Padding is invalid at <position>.
 ValPadInvMac-[<position>]-<appDataLength>-<paddingBytes>  A Record with valid padding and invalid MAC. The Record contains <appDataLength> many ApplicationData bytes and <paddingBytes> many PaddingBytes. The MAC is invalid at <position>.
 InvPadInvMac-[<position>]-<appDataLength>-<paddingBytes>  A Record with invalid padding and invalid MAC. The Record contains <appDataLength> many ApplicationData bytes and <paddingBytes> many PaddingBytes. The MAC is invalid at the first position. The Padding is invalid at <position>.

Next to the name you can see what the actual response from the server was. Alert messages which are in [] brackets indicate that the alert was a fatal alert while () brackets indicate a warning alert. ENC means that the messages were encrypted (which is not always the case). The last symbol in each line indicates the state of the socket. An X represents a closed socket with a TCP FIN, a T indicates that the socket was still open at the time of measurement and an @ indicates that the socket was closed with an RST. So how did Hackmanit respond? We see a [BAD_RECORD_MAC]  ENC X, which means we received an ENCrypted FATAL BAD_RECORD_MAC alert, and the TCP connection was closed with a TCP FIN. If a server appears to be vulnerable, the scanner will execute the scan a total of three times to confirm the vulnerability. Since this response is identical to all our vectors, we know that the server was not vulnerable and the scanner is not re-executing the workflows.

Here is an example of a vulnerable host:
As you can see, this time the workflows got executed multiple times, and the scanner reports the cipher suite and version as vulnerable because of "SOCKET_STATE". This means that in some cases the socket state revealed information about the plaintext. If you look closely, you can see that for ValPadInvMac-[0]-0-59, ValPadInvMac-[8]-0-59 and ValPadInvMac-[15]-0-59 the server failed to close the TCP socket, while for all other vectors the TCP connect was closed with a TCP FIN. The server was therefore vulnerable.

Since the server was vulnerable, TLS-Scanner will also print an additional section: "PaddingOracle Details"

In this section we try to identify the vulnerability. In the example above, TLS-Scanner will print the following:

As you can see, we attribute this vulnerability to OpenSSL <1.0.2r. We do so by looking at the exact responses to our malformed records. We additionally print two important facts about the vulnerability: Whether it is observable and its strength. The precise details of these properties are beyond the scope of this blogpost, but the short version is:
If an oracle is observable, a man in the middle attacker can see the differences between the vectors by passively observing the traffic, without relying on browser or application specific tricks. A strong oracle has no limitations in the number of consecutive bytes an attacker can decrypt. If an oracle is STRONG and OBSERVABLE, then an attacker can realistically exploit it. This is the case in the example above.
For more details on this, you will have to wait for the paper.

Attribution

As you can see, we try to fingerprint the responsible device/implementation. However, we were not able to identify all vulnerable implementations yet. If we cannot attribute a vulnerability you will receive the following message:

Could not identify the vulnerability. Please contact us if you know which software/hardware is generating this behavior.

If you encounter this message, we do not know yet who is responsible for this padding oracle and would be happy to know which device/vendor is responsible. If you know who is, please contact us so that we can get in contact with the vendor to fix the issue. To reiterate, the tool never sends any data back to us, and it is your choice whether to contact us manually or not.

There are also some cases in which we can identify the vendor, but the vendor has not patched the vulnerability yet. If you encounter such a host, the scanner will tell you that we know the responsible vendor. To prevent abuse, we do not include further details.

Non-Determinism and Errors

In some cases, the scanner is unable to scan for padding oracles and reports ERROR or non-deterministic responses. The ERROR cases appear if the scanner failed could not handshake with the specified cipher suite and protocol version. This might be due to a bug in the tested TLS-Server or a bug in TLS-Attacker or TLS-Scanner. If you think the handshake fails because of an issue on our side, please open an issue on Github, and we will investigate. The more interesting cases are the non-deterministic ones. In such cases the scanner observed non-identical scan results in three separate scans. This can be due to non-determinism in the software, connection errors, server load or non-homogeneous load balancing. Currently, you will have to analyze these cases manually. In the paper, we excluded such hosts from our study because we did not want to artificially improve our results. But we understand that you as a tester want to know if the server is vulnerable or not. If the server is not truly vulnerable you would see the differences between the answers spread across all the different vectors. If the differences only appear on a subset of malformed records the server is very likely vulnerable. If you are unsure, you can also always scan multiple times (or scan slowly), increase the timeout, or if you are entirely lost get in touch with us. 


How YOU can help

Please use the scanner on all your hosts and check for padding oracle vulnerabilities. If the scanner can identify your vulnerability, a patch should already be available. Please patch your system! If the scanner does not identify the vulnerability (and instructs you to contact us), please contact us with the details (robert.merget@rub.de). If you can provide us with the detailed output of the scanner or even better, the name of the host, with the corresponding vendor, we could match the results with our database and help fix the issue. We can already attribute over 90% of the vulnerabilities, but there is still a lot to be discovered. We mostly scanned the Alexa top 1-million on port 443. Other protocols like IMAPS, POP3S, etc. might have different implementations with different vulnerabilities. If you find vulnerabilities with our tool, please give us credit. It helps us to get more funding for our project.

Issues with the Scanner


A notable feature of our scanner is that we do not actively try to avoid intolerances (like not scanning with a lot of cipher suites in the Hello messages etc.). We believe that doing so would hide important bugs. We are currently experimenting with intolerances checks, but the feature is now still in beta. If we cannot scan a server (most of the time due to intolerances or SNI problems), the scanner will report a lot of intolerances and usually no supported protocol versions. Some intolerances may trick the scanner into reporting false results. At the current stage, we cannot make any guarantees. If you are using this tool during a pentest, it might be smart to rescan with other scanners (like the recently released padcheck tool from our colleague Craig Young) to find the ground truth (this is good advice in general, since other mainstream scanners likely have the same issues). Note however that it is very unlikely that the scanner reports a false positive on a padding oracle scan.


Conclusion

There are still a lot of padding oracle vulnerabilities out there - and a lot of them are still unpatched. We hope you will find some bugs with the tool :) Happy H4cking :D


Acknowlegements

This is joint work from Robert Merget (@ic0nz1), Juraj Somorovsky (@jurajsomorovsky),  Nimrod Aviram (@NimrodAviram), Janis Fliegenschmidt (@JanisFliegens), Craig Young (@craigtweets), Jörg Schwenk (@JoergSchwenk) and (Yuval Shavitt).
Related posts

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