~/.ssh/config Host * ServerAliveInterval 150 ServerAliveCountMax 15 HostkeyAlgorithms +ssh-rsa PubkeyAcceptedAlgorithms +ssh-rsa p.s. Hostkey ist Bonus für alte Server >> oder serverseitig -> sshd_config: TCPKeepAlive yes ClientAliveInterval 120 ClientAliveCountMax 15
ssh root@server-ip -oHostKeyAlgorithms=+ssh-dss oder dauerhaft sudo vi /etc/ssh/ssh_config.d/server-ip.conf Host 10.xxx.xxx.xxx HostKeyAlgorithms +ssh-dss KexAlgorithms +diffie-hellman-group1-sha1 Ciphers +aes128-cbc
falsche Zeilen löschen und —> autoincrement value setzen!
PROMPT_COMMAND=“history -a“ in .bashrc warum auch immer das nicht standard ist :-//
BEST WAY (in wp-config.php): if (!strstr($_SERVER[‚REQUEST_URI‘], ‚XXX-content‚)){header(‚X-Frame-Options: SAMEORIGIN‘);} apache.conf / bzw. seite-available im directory part: (klappt nur bei realen FILES/DIRs nicht bei umleitungen!!! <IfModule mod_headers.c># Allow some urls, block all others; whitelisting<LocationMatch ^((?!(firstUrlAllowed|secondUrlAllowed)).)*$>Header always append X-Frame-Options SAMEORIGIN # Block any… Read more ›
Der htaccess geschützte Bereich wird mit Usern aus der DB abgeglichen. a2enmod authn_dbd apt-get install libaprutil1-dbd-mysql service apache2 restart In DB: mysql -u root -p CREATE DATABASE htaccessuser; use htaccessuser GRANT ALL PRIVILEGES ON user.* TO ‚htaccessuser’@’localhost‘ IDENTIFIED BY ‚passwort‘;… Read more ›