I have the following Post action method which accept username & password, connect to Active Directory and get the user info in JSON format after validating the credentials:
[HttpPost]
public ActionResult UserInfo(string username, string password)
{
now since this is a POSt action method, will IIS logs keep track of the entered parameters? in this case the username and password? If the answer is yes, then how i can secure those parameters? Thanks