by Anonymous » 12 Sep 2025, 07:27
Ich erstelle einen E -Mail -Dienst mit ASP.NET Core. Hier füge ich meine E -Mail -Anmeldeinformationen zu AppSettings.json :
hinzu
Code: Select all
"SmtpSettings": {
"Host": "smtp.office365.com",
"Port": xxx,
"Username": "[email protected]",
"Password": "password",
"EnableSsl": true
}
Ist dies sicher, um diese in AppStings.json zu speichern? Wie können Sie die Sicherheit von Anmeldeinformationen verbessern?>
Ich erstelle einen E -Mail -Dienst mit ASP.NET Core. Hier füge ich meine E -Mail -Anmeldeinformationen zu AppSettings.json :
hinzu[code]"SmtpSettings": {
"Host": "smtp.office365.com",
"Port": xxx,
"Username": "
[email protected]",
"Password": "password",
"EnableSsl": true
}
[/code]
Ist dies sicher, um diese in AppStings.json zu speichern? Wie können Sie die Sicherheit von Anmeldeinformationen verbessern?>