From 338f2079d2570e24b596c8dbf8ead0bb3ac544c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E2=80=9Ccameron=2Edesrayaud=E2=80=9D?= Date: Wed, 24 Nov 2021 10:01:37 +0100 Subject: [PATCH] ansible eval --- Ansible/confsrv.yml | 43 ++++++++++++++ Ansible/cr-ansible.txt | 21 +++++++ Ansible/hosts | 2 + Ansible/resolv.conf | 4 ++ Ansible/sshd_config | 124 +++++++++++++++++++++++++++++++++++++++++ 5 files changed, 194 insertions(+) create mode 100755 Ansible/confsrv.yml create mode 100644 Ansible/cr-ansible.txt create mode 100644 Ansible/hosts create mode 100644 Ansible/resolv.conf create mode 100644 Ansible/sshd_config diff --git a/Ansible/confsrv.yml b/Ansible/confsrv.yml new file mode 100755 index 0000000..c255c24 --- /dev/null +++ b/Ansible/confsrv.yml @@ -0,0 +1,43 @@ +--- +- hosts: srv + remote_user: root + tasks: + - name: création de sioadm + user: + name: sioadm + state: present + generate_ssh_key: yes + password: "{{ 'sioadm' | password_hash('sha512') }}" + uid: 1200 + groups: sudo + append: yes + register: mavar + - name: debug + debug: + msg: "{{ mavar }}" + - name: export clé publique + authorized_key: + user: "{{ sioadm }}" + key: /sioadm/.ssh/id_rsa.pub + state: present + - name: désinstaller paquets wpasupplicant + apt : + name : wpasupplicant + state: absent + - name: désinstaller paquets rpcbindd + apt : + name : rpcbind + state: absent + - name: copie fichier resolv.conf + copy: + src:resolv.conf + dest:/etc + - name: disable SSH access for root + lineinfile: + path: /etc/ssh/sshd_config + regexp: '^(.*)#PermitRootLogin prohibit-password(.*)$" + replace: "PermitRootLogin prohibit-password" + - name: copie fichier sshd_config + copy: + src:sshd_config + dest:/etc/ssh/ diff --git a/Ansible/cr-ansible.txt b/Ansible/cr-ansible.txt new file mode 100644 index 0000000..7779363 --- /dev/null +++ b/Ansible/cr-ansible.txt @@ -0,0 +1,21 @@ +Script démarré sur 2021-11-24 09:49:54+01:00 [TERM="xterm-256color" TTY="/dev/pts/0" COLUMNS="126" LINES="45"] +[?2004hroot@ansible:~# sed -i 's/srv/ansible/g' /etc/host{s,name};reboot ip -br anano resolv.confsed -i 's/ansible/srv/g' /etc/host{s,name};reboot apt install ansible -y ip -br ased -i 's/test/ansible/g' /etc/host{s,name};reboot poweroffapt update && apt upgrade -y sed -i 's/bullseye/test/g' /etc/host{s,name};reboot apt update && apt upgrade -y poweroffsed -i 's/test/ansible/g' /etc/host{s,name};reboot ip -br aapt install ansible -y sed -i 's/ansible/srv/g' /etc/host{s,name};reboot nano resolv.confip -br ased -i 's/srv/ansible/g' /etc/host{s,name};reboot sed -i 's/srv/ansible/g' /etc/host{s,name};reboot ip -br anano resolv.confsed -i 's/ansible/srv/g' /etc/host{s,name};reboot apt install ansible -y ip -br ased -i 's/test/ansible/g' /etc/host{s,name};reboot poweroffapt update && apt upgrade -y sed -i 's/bullseye/test/g' /etc/host{s,name};reboot poweroffnano /etc/ssh/sshd_config lspoweroffip rnlapoweroffapt autoremovecleaninstall vim curl mc sudo ansible-playbook -i hiosrts confsrv.yml +[?2004l [WARNING]: Found both group and host with same name: srv +ERROR! We were unable to read either as JSON nor YAML, these are the errors we got from each: +JSON: Expecting value: line 1 column 1 (char 0) + +Syntax Error while loading YAML. + found unexpected end of stream + +The error appears to be in '/root/confsrv.yml': line 44, column 1, but may +be elsewhere in the file depending on the exact syntax problem. + +The offending line appears to be: + + src:sshd_config + dest:/etc/ssh/ +^ here +[?2004hroot@ansible:~# [?2004l +exit + +Script terminé sur 2021-11-24 09:50:32+01:00 [COMMAND_EXIT_CODE="4"] diff --git a/Ansible/hosts b/Ansible/hosts new file mode 100644 index 0000000..796ef67 --- /dev/null +++ b/Ansible/hosts @@ -0,0 +1,2 @@ +[srv] +srv diff --git a/Ansible/resolv.conf b/Ansible/resolv.conf new file mode 100644 index 0000000..352c7b7 --- /dev/null +++ b/Ansible/resolv.conf @@ -0,0 +1,4 @@ +search sio.lan +domain sio.lan +nameserver 10.121.38.7 +nameserver 10.121.38.8 diff --git a/Ansible/sshd_config b/Ansible/sshd_config new file mode 100644 index 0000000..e95f9d8 --- /dev/null +++ b/Ansible/sshd_config @@ -0,0 +1,124 @@ +# $OpenBSD: sshd_config,v 1.103 2018/04/09 20:41:22 tj Exp $ + +# This is the sshd server system-wide configuration file. See +# sshd_config(5) for more information. + +# This sshd was compiled with PATH=/usr/bin:/bin:/usr/sbin:/sbin + +# The strategy used for options in the default sshd_config shipped with +# OpenSSH is to specify options with their default value where +# possible, but leave them commented. Uncommented options override the +# default value. + +Include /etc/ssh/sshd_config.d/*.conf + +#Port 22 +#AddressFamily any +#ListenAddress 0.0.0.0 +#ListenAddress :: + +#HostKey /etc/ssh/ssh_host_rsa_key +#HostKey /etc/ssh/ssh_host_ecdsa_key +#HostKey /etc/ssh/ssh_host_ed25519_key + +# Ciphers and keying +#RekeyLimit default none + +# Logging +#SyslogFacility AUTH +#LogLevel INFO + +# Authentication: + +#LoginGraceTime 2m +#PermitRootLogin prohibit-password +#StrictModes yes +#MaxAuthTries 6 +#MaxSessions 10 + +#PubkeyAuthentication yes + +# Expect .ssh/authorized_keys2 to be disregarded by default in future. +#AuthorizedKeysFile .ssh/authorized_keys .ssh/authorized_keys2 + +#AuthorizedPrincipalsFile none + +#AuthorizedKeysCommand none +#AuthorizedKeysCommandUser nobody + +# For this to work you will also need host keys in /etc/ssh/ssh_known_hosts +#HostbasedAuthentication no +# Change to yes if you don't trust ~/.ssh/known_hosts for +# HostbasedAuthentication +#IgnoreUserKnownHosts no +# Don't read the user's ~/.rhosts and ~/.shosts files +#IgnoreRhosts yes + +# To disable tunneled clear text passwords, change to no here! +#PasswordAuthentication yes +#PermitEmptyPasswords no + +# Change to yes to enable challenge-response passwords (beware issues with +# some PAM modules and threads) +ChallengeResponseAuthentication no + +# Kerberos options +#KerberosAuthentication no +#KerberosOrLocalPasswd yes +#KerberosTicketCleanup yes +#KerberosGetAFSToken no + +# GSSAPI options +#GSSAPIAuthentication no +#GSSAPICleanupCredentials yes +#GSSAPIStrictAcceptorCheck yes +#GSSAPIKeyExchange no + +# Set this to 'yes' to enable PAM authentication, account processing, +# and session processing. If this is enabled, PAM authentication will +# be allowed through the ChallengeResponseAuthentication and +# PasswordAuthentication. Depending on your PAM configuration, +# PAM authentication via ChallengeResponseAuthentication may bypass +# the setting of "PermitRootLogin without-password". +# If you just want the PAM account and session checks to run without +# PAM authentication, then enable this but set PasswordAuthentication +# and ChallengeResponseAuthentication to 'no'. +UsePAM yes + +#AllowAgentForwarding yes +#AllowTcpForwarding yes +#GatewayPorts no +X11Forwarding yes +#X11DisplayOffset 10 +#X11UseLocalhost yes +#PermitTTY yes +PrintMotd no +#PrintLastLog yes +#TCPKeepAlive yes +#PermitUserEnvironment no +#Compression delayed +#ClientAliveInterval 0 +#ClientAliveCountMax 3 +#UseDNS no +#PidFile /var/run/sshd.pid +#MaxStartups 10:30:100 +#PermitTunnel no +#ChrootDirectory none +#VersionAddendum none + +# no default banner path +#Banner none + +# Allow client to pass locale environment variables +AcceptEnv LANG LC_* + +# override default of no subsystems +Subsystem sftp /usr/lib/openssh/sftp-server + +# Example of overriding settings on a per-user basis +#Match User anoncvs +# X11Forwarding no +# AllowTcpForwarding no +# PermitTTY no +# ForceCommand cvs server +PermitRootLogin prohibit-password