• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn ẩn phiên bản của Apache2, Nginx và PHP

Admin

Well-Known Member
Staff member
Administrator
Tại sao phải ẩn phiên bản đi? Đơn giản vì đôi lúc mà phải nói gần như là hầu hết bạn ít khi có được phiên bản mới nhất và các phiên bản cũ thì luôn luôn chứa đầy những rủi ro. Việc ẩn phiên bản của Apache2, Nginx và PHP phần nào làm khó khăn Hacker trong việc tìm ra lỗ hổng bảo mật. Tất nhiên khó thì là vẫn có cách để tìm ra được.

Với Apache2, bạn có thể để 2 dòng sau trong file cấu hình để ẩn đi thông tin về phiên bản của Apache2.
Code:
ServerTokens ProductOnly
ServerSignature Off
ServerTokens chúng ta có 4 thiết lập: ProductOnly, Major, Minor, Minimal, OS, Full (mặc định được chọn).
ServerTokens SettingServer Banner Header
ProductOnlyServer: Apache
MajorServer: Apache/2
MinorServer: Apache/2.0
MinimalServer: Apache/2.0.55
OSServer: Apache/2.0.55 (Debian)
Full (or not specified) defaultServer: Apache/2.0.55 (Debian) PHP/5.1.2-1+b1 mod_ssl/2.0.55 OpenSSL/0.9.8b

ServerSignature là các thông tin ở dưới cùng khi chúng ta duyệt 1 một folder, gặp lỗi .... Thiết lập của cái này có thể set qua vhost hoặc .htacces. Thường thì mặc định nó là off nhưng trong một số HĐH nó lại được bật.

Những giá trị có thể có của ServerSignature:
  • Off: xóa tất cả.
  • On: Hiển thị một số thông tin có thể như thế này Apache/2.2.22 (Unix) mod_ssl/2.2.22 OpenSSL/0.9.8e-fips-rhel5 mod_auth_passthrough/2.1 mod_bwlimited/1.4 FrontPage/5.0.2.2635 Server at teoyeu.be Port 80
  • Email: hiển thị những thông tin như thiết lập on cộng thêm mail của admin server.

Với Nginx. bạn đặt dòng sau trong file cấu hình để ẩn thông tin phiên bản.
Code:
server_tokens off;

Và cuối cùng với PHP, trong file php.ini. Bạn tìm thiết lập expose_php và đặt nó là off
Code:
expose_php = Off
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top