Créer une bannière de connexion SSH

1
2
3
4
5
6
 ____                                                               _      
| __ ) __ _ _ __ _ __ ___ _ __ _____ ____ _ _ __ ___ _ __ | | ___
| _ \ / _` | '_ \| '_ \ / _ \ '__| / _ \ \/ / _` | '_ ` _ \| '_ \| |/ _ \
| |_) | (_| | | | | | | | __/ | | __/> < (_| | | | | | | |_) | | __/
|____/ \__,_|_| |_|_| |_|\___|_| \___/_/\_\__,_|_| |_| |_| .__/|_|\___|
|_|

Création de la bannière

Ce site permet de créer des bannières en ASCII : Online ASCII Banner generator

Création du fichier banner

Créer le fichier sshd_banner, puis y inserer le message qui sera la bannière.

nano /etc/ssh/sshd-banner

1
2
3
4
5
6
 _____                          _            _        _            _       
| ____|_ _____ _ __ ___ _ __ | | ___ __| | ___ | |_ _____ _| |_ ___
| _| \ \/ / _ \ '_ ` _ \| '_ \| |/ _ \ / _` |/ _ \ | __/ _ \ \/ / __/ _ \
| |___ > < __/ | | | | | |_) | | __/ | (_| | __/ | || __/> <| || __/
|_____/_/\_\___|_| |_| |_| .__/|_|\___| \__,_|\___| \__\___/_/\_\\__\___|
|_|

Modification du fishier de configuration ssh

Modifier le fichier sshd_config :

nano /etc/ssh/sshd_config

1
2
3
# no default banner path
#Banner none
Banner /etc/ssh/sshd-banner

Puis relancer le service ssh : service sshd reload

Afficher un message après authentification ssh

Placer le message dans le fichier /etc/motd

⬆︎TOP