- [SQLSERVER] Loại bỏ Restricted User trên database MSSQL
- [C#] Hướng dẫn tạo mã QRcode Style trên winform
- [C#] Hướng dẫn sử dụng temp mail service api trên winform
- [C#] Hướng dẫn tạo mã thanh toán VietQR Pay không sử dụng API trên winform
- [C#] Hướng Dẫn Tạo Windows Service Đơn Giản Bằng Topshelf
- [C#] Chia sẻ source code đọc dữ liệu từ Google Sheet trên winform
- [C#] Chia sẻ source code tạo mã QR MOMO đa năng Winform
- [C#] Chia sẻ source code phần mềm lên lịch tự động chạy ứng dụng Scheduler Task Winform
- [Phần mềm] Tải và cài đặt phần mềm Sublime Text 4180 full version
- [C#] Hướng dẫn download file từ Minio Server Winform
- [C#] Hướng dẫn đăng nhập zalo login sử dụng API v4 trên winform
- [SOFTWARE] Phần mềm gởi tin nhắn Zalo Marketing Pro giá rẻ mềm nhất thị trường
- [C#] Việt hóa Text Button trên MessageBox Dialog Winform
- [DEVEXPRESS] Chia sẻ code các tạo report in nhiều hóa đơn trên XtraReport C#
- [POWER AUTOMATE] Hướng dẫn gởi tin nhắn zalo từ file Excel - No code
- [C#] Chia sẻ code lock và unlock user trong domain Window
- [DEVEXPRESS] Vẽ Biểu Đồ Stock Chứng Khoán - Công Cụ Thiết Yếu Cho Nhà Đầu Tư trên Winform
- [C#] Hướng dẫn bảo mật ứng dụng 2FA (Multi-factor Authentication) trên Winform
- [C#] Hướng dẫn convert HTML code sang PDF File trên NetCore 7 Winform
- [C#] Hướng dẫn viết ứng dụng chat với Gemini AI Google Winform
[C#] Hướng dẫn đọc thông tin chứng chỉ SSL trên website
Xin chào các bạn, bài viết này mình tiếp tục hướng dẫn các bạn cách đọc chứng chỉ Certificate SSL trên một website: lấy các thông số đơn vị cấp, ngày cấp, ngày hết hạn...
[C#] How to get info certificate https website
Nếu bạn quản lý một lúc nhiều website, và bạn muốn quản lý thông tin tất cả các chứng chỉ website.
Thì bài viết này, sẻ giúp bạn các code để lấy thông tin của một certificate website.
Thông tin ssl của website mình xem từ trình duyệt Chrome:
Giao diện demo ứng dụng đọc thông tin certificate ssl của laptrinhvb.net:
Ở hình trên, các bạn thấy thông tin chi tiết của website laptrinhvb.
Source code C#:
using System;
using System.Net.Security;
using System.Net.Sockets;
using System.Security.Cryptography.X509Certificates;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace DownloadCertificateWebsite
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private async void btnGet_Click(object sender, EventArgs e)
{
var info = new StringBuilder();
var certificate = await CertificateDownloader.GetCertificateAsync(txt_website.Text.Trim(), 443);
info.AppendLine($"Subject: {certificate.Subject}");
info.AppendLine($"Issuer: {certificate.Issuer}");
info.AppendLine($"NotBefore: {certificate.NotBefore}");
info.AppendLine($"NotAfter: {certificate.NotAfter}");
info.AppendLine($"Algorithm: {certificate.SignatureAlgorithm.FriendlyName}");
txt_info.Text = info.ToString();
}
}
static class CertificateDownloader
{
private static readonly RemoteCertificateValidationCallback s_certificateCallback = (a, b, c, d) => true;
public static async Task<X509Certificate2> GetCertificateAsync(string domain, int port = 443)
{
var client = new TcpClient(domain, port);
var sslStream = new SslStream(client.GetStream(), leaveInnerStreamOpen: true, s_certificateCallback);
await sslStream.AuthenticateAsClientAsync(domain).ConfigureAwait(false);
var serverCertificate = sslStream.RemoteCertificate;
if (serverCertificate != null)
return new X509Certificate2(serverCertificate);
return null;
}
}
}
Thanks for watching!