-1

Came across an article, it is about the new BadWinmail vulnerability in Outlook. Being a closed-source software, how do researchers manage to point out that Outlook is not sandboxing the flash?

Is it possible to view the source code by any reverse engineering methods or they concluded the result based on hints that they picked around?

Mike Ounsworth
  • 57,707
  • 21
  • 150
  • 207
Gdek
  • 17
  • 3
  • 1
    Your question basically boils down to "How does penetration testing work?" which may be too broad to have a good answer. – Mike Ounsworth Dec 18 '15 at 14:17
  • 1
    Checkout [this answer](http://security.stackexchange.com/a/92003/52676), and [this answer](http://security.stackexchange.com/a/84715/52676). You might find them helpful. Also [maybe this one on exploitation](http://security.stackexchange.com/questions/107074/controlling-where-a-program-crashes/107083#107083) – RoraΖ Dec 18 '15 at 14:47
  • You may want to look out fuzzing also. – Neil Smithline Dec 18 '15 at 15:09

2 Answers2

4

There are a several ways I'm aware of.

  • You can technically "view the source" of executables by using tools such as IDA Pro. or OllyDbg. Assembly knowledge is required! Stack Exchange also has a Reverse Engineering site you're interested.

  • You can test input fields for common vulnerabilities.

  • You can make a fake client/server to receive information from a program / API, and log what is being sent and received over the network, then try to send back malformed data with typical buffer overflow attacks.

  • Using an automated testing platform. I do not have any opinion on these.

Since you mentioned flash, it's no problem to "decompile" that. Flash submission data is also sent over the browser's request forms, so using a tool like TamperData will allow you to modify what is being sent. In many cases, you can edit your score in a flash game.

Mark Buffalo
  • 22,498
  • 8
  • 74
  • 91
4

A little bit of digging shows that the discoverer of the BadWinmail vulnerability is Haifei Li, who appears to be a researcher for the security / anti-virus company McAfee, judging by those blog posts, it looks like he specializes in Flash and Microsoft Office.

You can bet that a company like McAfee has special agreements with Microsoft which gives them some sort of access to the source code or special testing environments in exchange for telling Microsoft about any vulnerabilities before going public with them.

Also, most veteran security researchers are very good at reading raw assembly code, so having an .exe is just as good as having access to the original source code.

Mike Ounsworth
  • 57,707
  • 21
  • 150
  • 207
  • 1
    "having an .exe is just as good as having access to the original source code..." That seems like a stretch. :D – TTT Dec 25 '15 at 04:47