vote up 3 vote down star
1

How can I determine which platform or programming language was used to build a particular Windows desktop application?

flag

50% accept rate
3  
You mean other than asking them? – Matthew Jones Oct 7 at 15:00
Without any information what you mean by software it's hard to give you a good answer. Are you speaking about web-based apps, desktop software, windows, *nix, Mac, ...? – Patrick Cornelissen Oct 7 at 15:24
WINDOWS SOFTWARE .. EXAMPLE NOKIA PC SUITE – nicky Oct 7 at 15:40

6 Answers

vote up 8 vote down check

There are several ways to try and detect in which language a particular software was written. Usually, the tools that do that examine the PE Header and try to make an educated guess.

Sometimes authors compress/encrypt the PE in such way that makes this detection next to impossible.

There is an old tool called PEiD which can help you identify in which language was the software written.

PEiD

link|flag
vote up 4 vote down

The Dependency walker may also shed some light by showing all the dlls the application depends on, as well as the names of the exported methods.

alt text

link|flag
vote up 3 vote down

There are some options for specific situations, but in general, no, there is no one single and reliable way to do that.

link|flag
vote up 2 vote down

ProcessExplorer from SysInternals can be useful. It can detect .NET applications, and it lists loaded DLLs, which can help if some of them are runtime support for a language or framework.

I happen to have Nokia PC Suite installed, and ProcessExplorer says it is not a .NET application. It has loaded MFC71U.DLL and MSVCR71.DLL, which I believe are from MFC - of course Nokia PC Suite could simply be using a component written in MFC. Also there are some strings inside the EXE which look like C printf strings to me.

link|flag
vote up 0 vote down

There are ways to narrow down the list to what language is used, but you cannot know all the 'hows'. Plus what if there are a number of developers on different platforms? ;)

Or better yet the app is a combination of languages?

link|flag
vote up 0 vote down

I wonder if techniques developed for natural language identification and authorship identification can be adapted to this problem. It seems to me an interesting enough research problem.

A somewhat similar question has already been posed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.