Had an issue to find all authorized_keys on a server, so I came up with a little shell script that will itterate to all your home directories and show the authorized_keys and authorized_keys2.
Find the script on github
Had an issue to find all authorized_keys on a server, so I came up with a little shell script that will itterate to all your home directories and show the authorized_keys and authorized_keys2.
Find the script on github
To stop Kippo Honeypot, you could use two options, first you could check your connections:
netstat -l -p
and then kill the process with the PID via
kill -9 $PID
Or you could use the small script available at github (https://github.com/beardyjay/bHoneypot/issues/15):
#!/bin/sh
PIDFILE=kippo.pid
if ! [ -f $PIDFILE ]
then
echo „Kippo is not running ..“
exit
fiPID=$(cat $PIDFILE)
echo „Stopping Kippo ..“
kill -TERM $PID
rm -f $PIDFILE
with the result:
pi@raspberrypi ~/kippo-read-only $ ./stop.sh
Stopping Kippo ..
Mittels dem folgenden Codeschnippsel lässt sich eine Weiterleitung mittels PHP realisieren durch Nutzung des Headers bzw. der header() Funktion.
<?php header("Location: http://www.alexanderjaeger/"); exit(); ?>
In HTML lässt sich sowas folgendermaßen umsetzen:
Dabei gibt die Zahl an, nach wievielen Sekunden weitergeleitet werden soll.
In Javascript würde es so aussehen:
<script type="text/javascript"> window.location.href='http://www.alexanderjaeger.de/'; </script>
Dabei ist zu beachten, dass bei deaktiviertem Javascript keine Weiterleitung erfolgt.
Um eine Datenbank über ein Shellscript zu sichern bietet sich mysqldump an.
Wenn man dabei einen Server hat, der nicht gleich dem Datenbankserver ist, muss die Datenbank remote gesichert werden, mysqldump bietet dabei an, per Option einen Host anzugeben. Daraus wird dann der folgende Befehlt, der in einem Backup Script verwendet werden kann:
mysqldump -u USER -pPASSWORT -h HOST DATENBANKNAME > backup.sql