1. Khởi tạo cặp SSH key – keypair mới Mở terminal (Ctrl + Shift + T với Ubuntu), chạy lệnh: Ở đây bạn có thể chọn tên file cho SSH, mặc định là id_rsa. Nếu bạn chưa có SSH key nào, chúng tôi khuyến cáo bạn dùng tên này. Sau khi chọn tên file, Terminal […]
Stormssh – Quản lý truy cập server trên Linux client
Mỗi server mà bạn quản lý, bạn cần ghi nhớ thêm thông tin về username, IP (hoặc hostname). Nếu bạn có quá nhiều server, việc này là không dễ và có thể phát sinh những nhầm lẫn. Với người dùng Linux client, chúng tôi sẽ giới thiệu cho bạn một công cụ cho phép bạn […]
Sử dụng SSH command
Remove key from known_hosts Example Remove key or All answers are good, but for real SSH pro we have missing information how to remove ssh signature with (non-standard) port number. and you get warning, and to remove this, you need to use square brackets colon port number: Note, that probably there will be IP record for the […]
CWP – Install Mod_Security and Comodo
1) Register at Comodo Waf website [https://waf.comodo.com/] as we will be needing Email and Password later. https://accounts.comodo.com/cwaf/management/signup 2) Install Mod_Security. cd /usr/src wget https://www.modsecurity.org/tarball/2.9.0/modsecurity-2.9.0.tar.gz tar xzf modsecurity-2.9.0.tar.gz cd modsecurity-2.9.0 ./configure –with-apxs=/usr/local/apache/bin/apxs make && make install 3) Create Mod_Security config file. wget –output-document=”/usr/local/apache/conf.d/modsec2.conf” http://dl-package.bullten.in/cwp/files/mod_security/modsec2.txt 4) Restart Apache. service httpd restart 5) Check if Mod_Security is loaded […]
Công cụ quản trị SSH
MobaExterm mRemoteNG putty XShell SecureCRT Kết nối vào server Linux bằng ssh tool
Remmina Couldn’t Connect RDP Server MS
Problem to solve Remmina currently unable to connect to Microsoft Servers where TLS 1.2 or higher for RDP /SCHANNEL /SSL is enforced. Microsoft native RDP client can connect to enforced servers. Further details Error displayed in the GUI: Could not connect to the RDP server “10.4.53.34” via TLS. Check that client and server support a […]
PHP code get IP hostname
<?php $ip = gethostbyname(‘www.google.com’); echo “Resolution pour www.google.com: $ip”; echo “<br>”; $ip = gethostbyname(‘inet.vn’); echo “Resolution pour inet.vn: $ip”; ?>
How to Allow Multiple RDP Sessions in Windows 10 and 11
emote users can connect to their Windows 10 and 11 computers via the Remote Desktop Services (RDP). It is enough to enable RDP in the device settings and connect to the computer using any Remote Desktop client. But there is a restriction on the number of simultaneous RDP sessions – only one remote user can […]
Hướng dẫn cho phép Multi Remote Session trên Windows 10
Multi Remote Session Windows 10 là tính năng cho phép mở nhiều phiên kết nối Multi Remote Session trên Windows 10 hơn, cho phép các user remote cùng làm việc đồng thời trên máy tính mà không bị hạn chế bởi người dùng khác khi Remote Desktop. Mặc định, trên Windows 10 chỉ cho phép kết […]
How to List Last Five Modified Files in Linux
1. Overview We use the ls command in Linux to list our files and folders. We can add options to display more or less detail. It also lets us sort our files on the last modified time. A common use case is that we want, let’s say, the five files that were last modified. Unfortunately, ls alone can’t limit […]