locked
asp.net core Client-initiated Renegotiation RRS feed

  • Question

  • Hi,I am new to asp.net core,i get a warning when i publish my asp.net core mvc application.

    it's says:

    Client-initiated Renegotiation :  VULNERABLE - Server honors client-initiated renegotiations

    i run my app use Kestrel , in "Program.cs" such code like :

     public static IWebHostBuilder CreateWebHostBuilder(string[] args) =>
                WebHost.CreateDefaultBuilder(args)
                    .UseUrls("https://*")
                    .UseStartup<Startup>()
                    .UseKestrel();

    can anybody help?

    sorry for my poor english..

    • Moved by CoolDadTx Monday, March 25, 2019 2:37 PM ASP.NET related
    Monday, March 25, 2019 5:07 AM

All replies

  • Hi

    Thank you for posting here.

    According to your post, your question is related to asp.net, please post in the following forum.

    https://forums.asp.net/

    The Visual C# forum discusses and asks questions about the C# programming language, IDE, libraries, samples, and tools.

    Best regards,

    Jack


    MSDN Community Support
    Please remember to click "Mark as Answer" the responses that resolved your issue, and to click "Unmark as Answer" if not. This can be beneficial to other community members reading this thread. If you have any compliments or complaints to MSDN Support, feel free to contact MSDNFSF@microsoft.com.

    Monday, March 25, 2019 6:21 AM