From 9c34e20898def5954da2f50fdc6036209521b5f8 Mon Sep 17 00:00:00 2001 From: root Date: Mon, 12 May 2014 14:00:11 +0200 Subject: fix new reaktor config --- .../root-image/etc/systemd/system/Reaktor.service | 14 ++++ elchos/root-image/krebs/bin/reaktor-shell.sh | 2 +- elchos/root-image/krebs/config.sh | 1 + elchos/root-image/krebs/etc/Reaktor/admin.lst | 0 elchos/root-image/krebs/etc/Reaktor/auth.lst | 0 .../root-image/krebs/etc/Reaktor/commands/ftpget | 58 ----------------- .../root-image/krebs/etc/Reaktor/commands/identify | 22 ------- elchos/root-image/krebs/etc/Reaktor/commands/io | 25 -------- elchos/root-image/krebs/etc/Reaktor/commands/ips | 2 - .../krebs/etc/Reaktor/commands/list_downloads | 8 --- elchos/root-image/krebs/etc/Reaktor/commands/onion | 3 - .../root-image/krebs/etc/Reaktor/commands/reboot | 3 - .../krebs/etc/Reaktor/commands/refresh_shares | 4 -- .../root-image/krebs/etc/Reaktor/commands/shares | 2 - .../krebs/etc/Reaktor/commands/update-search | 3 - elchos/root-image/krebs/etc/Reaktor/config.py | 60 ----------------- .../root-image/krebs/etc/Reaktor/elchos/admin.lst | 0 .../root-image/krebs/etc/Reaktor/elchos/auth.lst | 0 .../krebs/etc/Reaktor/elchos/commands/ftpget | 58 +++++++++++++++++ .../krebs/etc/Reaktor/elchos/commands/identify | 22 +++++++ .../krebs/etc/Reaktor/elchos/commands/io | 25 ++++++++ .../krebs/etc/Reaktor/elchos/commands/ips | 2 + .../etc/Reaktor/elchos/commands/list_downloads | 8 +++ .../krebs/etc/Reaktor/elchos/commands/onion | 3 + .../krebs/etc/Reaktor/elchos/commands/reboot | 3 + .../etc/Reaktor/elchos/commands/refresh_shares | 4 ++ .../krebs/etc/Reaktor/elchos/commands/shares | 2 + .../etc/Reaktor/elchos/commands/update_search | 3 + .../root-image/krebs/etc/Reaktor/elchos/config.py | 75 ++++++++++++++++++++++ elchos/root-image/root/customize_root_image.sh | 4 +- 30 files changed, 222 insertions(+), 194 deletions(-) create mode 100644 elchos/root-image/etc/systemd/system/Reaktor.service create mode 100644 elchos/root-image/krebs/config.sh delete mode 100644 elchos/root-image/krebs/etc/Reaktor/admin.lst delete mode 100644 elchos/root-image/krebs/etc/Reaktor/auth.lst delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/ftpget delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/identify delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/io delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/ips delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/list_downloads delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/onion delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/reboot delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/refresh_shares delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/shares delete mode 100755 elchos/root-image/krebs/etc/Reaktor/commands/update-search delete mode 100644 elchos/root-image/krebs/etc/Reaktor/config.py create mode 100644 elchos/root-image/krebs/etc/Reaktor/elchos/admin.lst create mode 100644 elchos/root-image/krebs/etc/Reaktor/elchos/auth.lst create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/ftpget create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/identify create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/io create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/ips create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/list_downloads create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/onion create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/reboot create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/refresh_shares create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/shares create mode 100755 elchos/root-image/krebs/etc/Reaktor/elchos/commands/update_search create mode 100644 elchos/root-image/krebs/etc/Reaktor/elchos/config.py (limited to 'elchos') diff --git a/elchos/root-image/etc/systemd/system/Reaktor.service b/elchos/root-image/etc/systemd/system/Reaktor.service new file mode 100644 index 00000000..e57be81a --- /dev/null +++ b/elchos/root-image/etc/systemd/system/Reaktor.service @@ -0,0 +1,14 @@ +[Unit] +Description=Reaktor for user %i +After=network.target nss-lookup.target + +[Service] +Type=normal +#TODO - make reaktor path variable +User=reaktor +ExecStart=/krebs/painload/Reaktor/index elchos/config.py +Restart=always +RestartSec=3 + +[Install] +WantedBy=multi-user.target diff --git a/elchos/root-image/krebs/bin/reaktor-shell.sh b/elchos/root-image/krebs/bin/reaktor-shell.sh index 117c64f6..c5548cb8 100755 --- a/elchos/root-image/krebs/bin/reaktor-shell.sh +++ b/elchos/root-image/krebs/bin/reaktor-shell.sh @@ -1,4 +1,4 @@ #!/bin/sh echo "IP Addresses:" -/krebs/painload/Reaktor/commands/ips || echo "no IPs!" +/krebs/painload/Reaktor/elchos/commands/ips || echo "no IPs!" /krebs/bin/add-reaktor-secret.sh diff --git a/elchos/root-image/krebs/config.sh b/elchos/root-image/krebs/config.sh new file mode 100644 index 00000000..a2b4d202 --- /dev/null +++ b/elchos/root-image/krebs/config.sh @@ -0,0 +1 @@ +IRC_SERVER=irc.freenode.net diff --git a/elchos/root-image/krebs/etc/Reaktor/admin.lst b/elchos/root-image/krebs/etc/Reaktor/admin.lst deleted file mode 100644 index e69de29b..00000000 diff --git a/elchos/root-image/krebs/etc/Reaktor/auth.lst b/elchos/root-image/krebs/etc/Reaktor/auth.lst deleted file mode 100644 index e69de29b..00000000 diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/ftpget b/elchos/root-image/krebs/etc/Reaktor/commands/ftpget deleted file mode 100755 index 74e76f8e..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/ftpget +++ /dev/null @@ -1,58 +0,0 @@ -#!/bin/sh -# usage: $0 [-d] uri sharename[/subdirs] -exec 2>&1 -set -euf -ncdc_user=hooker -usage(){ - cat < 0.8 directory is stored to /media/vag0/firefox_releases - - ftpget -d http://speedtest.qsc.de/10MB.qsc vag0/ - -> 10MB.qsc is stored to /media/vag0/10MB.qsc -EOF -} -if test "${1:--h}" == '-h' -o "${1:-}" == '--help';then - usage - examples - exit 0 -fi -if test ${1:-} == '-d' ;then - is_dir=true - shift -fi - -target="${1:-}" -if !( echo "$target" | egrep -q '^(ftps*://|https*://)' );then - exit 23 -fi - -share=$( printf "%s" "${2?provide share name}" |head -1 | sed 's#\.\./##') -sharepath=/media/${share%%/*} -realshare="/media/$share" -test ! -e "$sharepath" && echo "$sharepath does not exist!" && exit 23 - -sudo -u $ncdc_user /usr/bin/mkdir -p "$realshare" - -if test -z ${is_dir:-};then - cmd="lftpget \"$target\"" -else - cmd="lftp -e \"mirror;exit\" $target" -fi - - if ! sudo -u $ncdc_user /usr/bin/tmux has-session -t dl >/dev/null 2>&1 ;then - sudo -u $ncdc_user /usr/bin/tmux new-session -s dl -d -c "$realshare" "$cmd" - else - sudo -u $ncdc_user /usr/bin/tmux new-window -t dl -c "$realshare" "$cmd" - fi -#sudo -u $ncdc_user /usr/bin/tmux new-window -t dl -#cd "$realshare" ;sudo -u hooker /usr/bin/lftpget "$target" -echo "download started, check with 'list_downloads'" diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/identify b/elchos/root-image/krebs/etc/Reaktor/commands/identify deleted file mode 100755 index c2fb2c58..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/identify +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env python -import imp -import os,sys - -def load_config(filename): - dirname = os.path.dirname(filename) - modname, ext = os.path.splitext(os.path.basename(filename)) - file, pathname, description = imp.find_module(modname, [ dirname ]) - return imp.load_module(modname, file, pathname, description) - -config = load_config(os.environ['config_filename']) - -with open(config.admin_file) as f: - for line in f: - nick,secret = line.split() - if sys.argv[1] == secret: - print("identified you as %s!"%nick) - with open(config.auth_file,'a+') as g: - g.write(os.environ['_prefix'] +"\n") - sys.exit(0) - -print("unable to identify you, sorry") diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/io b/elchos/root-image/krebs/etc/Reaktor/commands/io deleted file mode 100755 index eb04ae9b..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/io +++ /dev/null @@ -1,25 +0,0 @@ -#!/usr/bin/zsh -printf '%-10s %-7s %-7s %-7s %-7s\n' IFACE rxkB/s txkB/s rxTotal txTotal -sar -n DEV 1 3 | grep Average: | grep -v IFACE | grep -v ' lo ' | while read line;do - dev=$(echo $line | awk '{print $2}') - rxkb=$(echo $line | awk '{print $5}') - txkb=$(echo $line | awk '{print $6}') - total_bytes_r=$(cat /proc/net/dev | grep ${dev}: | awk '{print $2}') - total_bytes_t=$(cat /proc/net/dev | grep ${dev}: | awk '{print $10}') - - printf '%-10s %-7s %-7s %-7s %-7s\n' $dev $rxkb $txkb $((total_bytes_r / (1024*1024))) $((total_bytes_t / (1024*1024))) -done -printf "%-10s %-7s %-7s\n" "DSK" "rxkB/s" "txkB/s" -sar -p -d 1 3 | grep Average: | grep -v ' DEV ' |while read line; -do - dsk=$(echo $line | awk '{print $2}') - rd_sec=$(echo $line | awk '{print $4}') - wr_sec=$(echo $line | awk '{print $5}') - if echo $dsk | egrep -q '(sd|hd|vd)';then - # TODO for some reason 0.00 can only be interpreted correctly as arithmetic - # expession by zsh - # - # rd is counted in blocks (which is 512 bytes) - printf "%-10s %-7.2f %-7.2f\n" "/dev/$dsk" "$((rd_sec*2))" "$((wr_sec*2))" - fi -done diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/ips b/elchos/root-image/krebs/etc/Reaktor/commands/ips deleted file mode 100755 index 17c39658..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/ips +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -ip addr | grep 'inet ' | awk '{print $2}' | grep -v 127.0.0.1 | grep . diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/list_downloads b/elchos/root-image/krebs/etc/Reaktor/commands/list_downloads deleted file mode 100755 index f53067d8..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/list_downloads +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh -ncdc_user=hooker -count=$(sudo -u $ncdc_user /usr/bin/tmux list-windows -t dl 2>/dev/null| wc -l) - -test $count -eq 0 && echo "no downloads running" && exit 0 -for i in $(seq 0 $(($count-1)));do - sudo -u $ncdc_user /usr/bin/tmux capture-pane -t dl:$i -p | grep -v '^$' | tail -n 1 -done diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/onion b/elchos/root-image/krebs/etc/Reaktor/commands/onion deleted file mode 100755 index 1a202991..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/onion +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -sudo -u tor /krebs/bin/tor-get-hidden-service.sh || echo "no hidden service configured" diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/reboot b/elchos/root-image/krebs/etc/Reaktor/commands/reboot deleted file mode 100755 index a264831a..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/reboot +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -echo "system is going down" -sudo /usr/bin/reboot diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/refresh_shares b/elchos/root-image/krebs/etc/Reaktor/commands/refresh_shares deleted file mode 100755 index 1005998b..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/refresh_shares +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh -ncdc_user=hooker -sudo /krebs/bin/refresh-shares.ship 2>&1 -sudo -u $ncdc_user /krebs/bin/update-search.sh 2>&1 diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/shares b/elchos/root-image/krebs/etc/Reaktor/commands/shares deleted file mode 100755 index 1601d584..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/shares +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -df -h | grep '/media/' diff --git a/elchos/root-image/krebs/etc/Reaktor/commands/update-search b/elchos/root-image/krebs/etc/Reaktor/commands/update-search deleted file mode 100755 index 1db1c1b2..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/commands/update-search +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -ncdc_user=hooker -sudo -u $ncdc_user /krebs/bin/update-search.sh diff --git a/elchos/root-image/krebs/etc/Reaktor/config.py b/elchos/root-image/krebs/etc/Reaktor/config.py deleted file mode 100644 index 58bc7180..00000000 --- a/elchos/root-image/krebs/etc/Reaktor/config.py +++ /dev/null @@ -1,60 +0,0 @@ -import socket - -debug = False - -name = socket.gethostname() - -irc_alarm_timeout = 300 -irc_hammer_interval = 10 -irc_kill_timeout = 360 -irc_nickname = name -irc_server = 'elchirc.nsupdate.info' -#irc_server = 'irc.freenode.net' -irc_restart_timeout = 5 -irc_port = 6667 -irc_channels = [ - '#elchOS' -] - -admin_file='admin.lst' -auth_file='auth.lst' - -def default_command(cmd): - return { - 'capname': cmd, - 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', - 'argv': [ 'commands/' + cmd ] } - -public_commands = [ - default_command('caps'), - default_command('hello'), - default_command('search'), - default_command('list_downloads'), - default_command('badcommand'), - default_command('rev'), - default_command('io'), - default_command('ips'), - default_command('uptime'), - default_command('shares'), - default_command('onion'), - default_command('nocommand'), - # command not found - { 'pattern': '^(?:' + name + '|\\*):.*', - 'argv': [ 'commands/respond','You are made of stupid!'] }, - # "highlight" - { 'pattern': '.*\\b' + name + '\\b.*', - 'argv': [ 'commands/say', 'I\'m famous' ] }, - # identify via direct connect - { 'capname': 'identify', - 'pattern': 'identify' + '\\s*(?:\\s+(?P.*))?$', - 'argv' : [ 'commands/identify' ]} - -] - -commands = [ - default_command('reload'), - default_command('update-search'), - default_command('refresh_shares'), - default_command('ftpget'), - default_command('reboot') -] diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/admin.lst b/elchos/root-image/krebs/etc/Reaktor/elchos/admin.lst new file mode 100644 index 00000000..e69de29b diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/auth.lst b/elchos/root-image/krebs/etc/Reaktor/elchos/auth.lst new file mode 100644 index 00000000..e69de29b diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ftpget b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ftpget new file mode 100755 index 00000000..74e76f8e --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ftpget @@ -0,0 +1,58 @@ +#!/bin/sh +# usage: $0 [-d] uri sharename[/subdirs] +exec 2>&1 +set -euf +ncdc_user=hooker +usage(){ + cat < 0.8 directory is stored to /media/vag0/firefox_releases + + ftpget -d http://speedtest.qsc.de/10MB.qsc vag0/ + -> 10MB.qsc is stored to /media/vag0/10MB.qsc +EOF +} +if test "${1:--h}" == '-h' -o "${1:-}" == '--help';then + usage + examples + exit 0 +fi +if test ${1:-} == '-d' ;then + is_dir=true + shift +fi + +target="${1:-}" +if !( echo "$target" | egrep -q '^(ftps*://|https*://)' );then + exit 23 +fi + +share=$( printf "%s" "${2?provide share name}" |head -1 | sed 's#\.\./##') +sharepath=/media/${share%%/*} +realshare="/media/$share" +test ! -e "$sharepath" && echo "$sharepath does not exist!" && exit 23 + +sudo -u $ncdc_user /usr/bin/mkdir -p "$realshare" + +if test -z ${is_dir:-};then + cmd="lftpget \"$target\"" +else + cmd="lftp -e \"mirror;exit\" $target" +fi + + if ! sudo -u $ncdc_user /usr/bin/tmux has-session -t dl >/dev/null 2>&1 ;then + sudo -u $ncdc_user /usr/bin/tmux new-session -s dl -d -c "$realshare" "$cmd" + else + sudo -u $ncdc_user /usr/bin/tmux new-window -t dl -c "$realshare" "$cmd" + fi +#sudo -u $ncdc_user /usr/bin/tmux new-window -t dl +#cd "$realshare" ;sudo -u hooker /usr/bin/lftpget "$target" +echo "download started, check with 'list_downloads'" diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/identify b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/identify new file mode 100755 index 00000000..c2fb2c58 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/identify @@ -0,0 +1,22 @@ +#!/usr/bin/env python +import imp +import os,sys + +def load_config(filename): + dirname = os.path.dirname(filename) + modname, ext = os.path.splitext(os.path.basename(filename)) + file, pathname, description = imp.find_module(modname, [ dirname ]) + return imp.load_module(modname, file, pathname, description) + +config = load_config(os.environ['config_filename']) + +with open(config.admin_file) as f: + for line in f: + nick,secret = line.split() + if sys.argv[1] == secret: + print("identified you as %s!"%nick) + with open(config.auth_file,'a+') as g: + g.write(os.environ['_prefix'] +"\n") + sys.exit(0) + +print("unable to identify you, sorry") diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/io b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/io new file mode 100755 index 00000000..eb04ae9b --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/io @@ -0,0 +1,25 @@ +#!/usr/bin/zsh +printf '%-10s %-7s %-7s %-7s %-7s\n' IFACE rxkB/s txkB/s rxTotal txTotal +sar -n DEV 1 3 | grep Average: | grep -v IFACE | grep -v ' lo ' | while read line;do + dev=$(echo $line | awk '{print $2}') + rxkb=$(echo $line | awk '{print $5}') + txkb=$(echo $line | awk '{print $6}') + total_bytes_r=$(cat /proc/net/dev | grep ${dev}: | awk '{print $2}') + total_bytes_t=$(cat /proc/net/dev | grep ${dev}: | awk '{print $10}') + + printf '%-10s %-7s %-7s %-7s %-7s\n' $dev $rxkb $txkb $((total_bytes_r / (1024*1024))) $((total_bytes_t / (1024*1024))) +done +printf "%-10s %-7s %-7s\n" "DSK" "rxkB/s" "txkB/s" +sar -p -d 1 3 | grep Average: | grep -v ' DEV ' |while read line; +do + dsk=$(echo $line | awk '{print $2}') + rd_sec=$(echo $line | awk '{print $4}') + wr_sec=$(echo $line | awk '{print $5}') + if echo $dsk | egrep -q '(sd|hd|vd)';then + # TODO for some reason 0.00 can only be interpreted correctly as arithmetic + # expession by zsh + # + # rd is counted in blocks (which is 512 bytes) + printf "%-10s %-7.2f %-7.2f\n" "/dev/$dsk" "$((rd_sec*2))" "$((wr_sec*2))" + fi +done diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ips b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ips new file mode 100755 index 00000000..17c39658 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/ips @@ -0,0 +1,2 @@ +#!/bin/sh +ip addr | grep 'inet ' | awk '{print $2}' | grep -v 127.0.0.1 | grep . diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/list_downloads b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/list_downloads new file mode 100755 index 00000000..f53067d8 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/list_downloads @@ -0,0 +1,8 @@ +#!/bin/sh +ncdc_user=hooker +count=$(sudo -u $ncdc_user /usr/bin/tmux list-windows -t dl 2>/dev/null| wc -l) + +test $count -eq 0 && echo "no downloads running" && exit 0 +for i in $(seq 0 $(($count-1)));do + sudo -u $ncdc_user /usr/bin/tmux capture-pane -t dl:$i -p | grep -v '^$' | tail -n 1 +done diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/onion b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/onion new file mode 100755 index 00000000..1a202991 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/onion @@ -0,0 +1,3 @@ +#!/bin/sh + +sudo -u tor /krebs/bin/tor-get-hidden-service.sh || echo "no hidden service configured" diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/reboot b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/reboot new file mode 100755 index 00000000..a264831a --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/reboot @@ -0,0 +1,3 @@ +#!/bin/sh +echo "system is going down" +sudo /usr/bin/reboot diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/refresh_shares b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/refresh_shares new file mode 100755 index 00000000..1005998b --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/refresh_shares @@ -0,0 +1,4 @@ +#!/bin/sh +ncdc_user=hooker +sudo /krebs/bin/refresh-shares.ship 2>&1 +sudo -u $ncdc_user /krebs/bin/update-search.sh 2>&1 diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/shares b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/shares new file mode 100755 index 00000000..1601d584 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/shares @@ -0,0 +1,2 @@ +#!/bin/sh +df -h | grep '/media/' diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/commands/update_search b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/update_search new file mode 100755 index 00000000..1db1c1b2 --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/commands/update_search @@ -0,0 +1,3 @@ +#!/bin/sh +ncdc_user=hooker +sudo -u $ncdc_user /krebs/bin/update-search.sh diff --git a/elchos/root-image/krebs/etc/Reaktor/elchos/config.py b/elchos/root-image/krebs/etc/Reaktor/elchos/config.py new file mode 100644 index 00000000..a850b7ae --- /dev/null +++ b/elchos/root-image/krebs/etc/Reaktor/elchos/config.py @@ -0,0 +1,75 @@ +import socket +name = socket.gethostname() +source = "/krebs/config.sh" + +# TODO: shell config file cannot contain variables or anything fancy +ret ={} +with open(cfg_file) as f: + for line in f: + k,v = line.split("=") + ret[k] = v + +#irc_server = 'irc.freenode.net' +irc_server = ret["IRC_SERVER"] + +debug = False + +state_dir='/krebs/painload/Reaktor' +irc_alarm_timeout = 300 +irc_hammer_interval = 10 +irc_kill_timeout = 360 +irc_nickname = name +irc_restart_timeout = 5 +irc_port = 6667 +irc_channels = [ + '#elchOS' +] + +admin_file='admin.lst' +auth_file='auth.lst' + +def default_command(cmd): + return { + 'capname': cmd, + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', + 'argv': [ 'commands/' + cmd ] } + +def elch_command(cmd): + return { + 'capname': cmd, + 'pattern': '^(?:' + name + '|\\*):\\s*' + cmd + '\\s*(?:\\s+(?P.*))?$', + 'argv': [ 'elchos/commands/' + cmd ] } + +public_commands = [ + default_command('caps'), + default_command('hello'), + default_command('uptime'), + default_command('badcommand'), + default_command('rev'), + elch_command('search'), + elch_command('list_downloads'), + elch_command('io'), + elch_command('ips'), + elch_command('shares'), + elch_command('onion'), + default_command('nocommand'), + # command not found + { 'pattern': '^(?:' + name + '|\\*):.*', + 'argv': [ 'commands/respond','You are made of stupid!'] }, + # "highlight" + { 'pattern': '.*\\b' + name + '\\b.*', + 'argv': [ 'commands/say', 'I\'m famous' ] }, + # identify via direct connect + { 'capname': 'identify', + 'pattern': 'identify' + '\\s*(?:\\s+(?P.*))?$', + 'argv' : [ 'commands/identify' ]} + +] + +commands = [ + default_command('reload'), + elch_command('update_search'), + elch_command('refresh_shares'), + elch_command('ftpget'), + elch_command('reboot') +] diff --git a/elchos/root-image/root/customize_root_image.sh b/elchos/root-image/root/customize_root_image.sh index 1c6abea0..59166853 100755 --- a/elchos/root-image/root/customize_root_image.sh +++ b/elchos/root-image/root/customize_root_image.sh @@ -52,9 +52,7 @@ echo "$reaktor_user ALL=(tor) NOPASSWD: /krebs/bin/tor-get-hidden-service.sh" >> echo "$reaktor_user ALL=(root) NOPASSWD: /krebs/bin/refresh-shares.ship" >> /etc/sudoers.d/reaktor echo "$reaktor_user ALL=($ncdc_user) NOPASSWD: ALL" >> /etc/sudoers.d/reaktor echo "$reaktor_user ALL=(root) NOPASSWD: /usr/bin/reboot" >> /etc/sudoers.d/reaktor -echo -cp /krebs/painload/Reaktor/etc/systemd/system/Reaktor@.service \ - /etc/systemd/system + # add bonus features for elch cp -a /krebs/etc/Reaktor /krebs/painload -- cgit v1.2.3