Detected 1 occurrence(s) of ‘\s*pass[word]+\s*[:=]\s*["'][a-z0-9\-_\!\$]+["']‘: public class SQL { SqlCommand comandos; public SqlConnection sql() { string Server = @"server"; string Username = "user"; string Password = "pass"; string Database = "database"; string ConnectionString = "Data Source=" + Server + ";"; ConnectionString += "User ID=" + Username + ";"; ConnectionString += "Password=" + Password + ";"; […]
↧