Click here to Skip to main content
15,888,202 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Hello,

ideal case: i have make a game for andriod mobile and its server side is asp.net
clinet side send the xml along imei # in header and server parse the xml and generate the response.

now a hacker generatet the xml by himself and send to the asp.net server
how can i find that the informatio is generated from c# or .net frame work.
simply i want to know that http request is generated from which programing langauge.
Posted
Updated 9-Jan-12 23:21pm
v3

1 solution

Such a mechanism does not exist. Let's say we were sending the request from a .Net program. What would you like to see at that moment? C++, C# or VB? That would not be true, because before it can run, it would have to be compiled to MISL. So should it show MISL instead? At runtime the JIT has compiled the MISL to native machine code.

What you have appears to be some kind of webservice and you are stuck with the usual means of securing such a webservice: Examinining the information in the HTTP request (for example the IP address from where the request comes) or encrypting the data in the requests and responses.
 
Share this answer
 
Comments
adnan.fast 10-Jan-12 8:27am    
thanx for your respose: can you please tell me any method that from header we can detect the .net fram work version request header may conatain some server variable infromation.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900