Openfest 2012:
"Депресията, проблемите в главата ни и какво може да направим" - Васил Колев и Яна Петрова:
http://www.youtube.com/watch?v=RTcxydBxFjA&feature=plcp
http://www.youtube.com/watch?v=ZHrz7CJ-nUA&feature=plcp
28th Chaos Communication Congress:
"Geeks and depression panel" - daravinne, Jimmie P. Rodgers, Meredith L. Patterson, Michael Zeltner, Mitch Altman
https://www.youtube.com/watch?v=QnfOOoTOrDE
http://saizai.com/suicide.shtml
сряда, 14 ноември 2012 г.
петък, 9 ноември 2012 г.
Show numerical values of all bash colors
for code in {0..255}; do echo -e "\e[38;05;${code}m $code: Test"; done
Show linux kernel modules graph
lsmod | perl -e 'print "digraph \"lsmod\" {";<>;while(<>){@_=split/\s+/; print "\"$_[0]\" -> \"$_\"\n" for split/,/,$_[3]}print "}"' | dot -Tpng | display -
четвъртък, 8 ноември 2012 г.
Cool articles and blogposts [will be constantly updated]
Solving problems with /proc
https://blogs.oracle.com/ksplice/entry/solving_problems_with_proc
Hosting backdoors in hardware
https://blogs.oracle.com/ksplice/entry/hosting_backdoors_in_hardware
Well explained restrictions in sockets and differences compared to pipes
http://unix.stackexchange.com/questions/33924/write-inside-a-socket-open-by-another-process-in-linux
Example of passing File Descriptors in Unix (+application)
http://hans.liss.pp.se/node/711
https://blogs.oracle.com/ksplice/entry/solving_problems_with_proc
Hosting backdoors in hardware
https://blogs.oracle.com/ksplice/entry/hosting_backdoors_in_hardware
Well explained restrictions in sockets and differences compared to pipes
http://unix.stackexchange.com/questions/33924/write-inside-a-socket-open-by-another-process-in-linux
Example of passing File Descriptors in Unix (+application)
http://hans.liss.pp.se/node/711
Check Google mail from terminal
curl -u username --silent "https://mail.google.com/mail/feed/atom" | perl -ne 'print "\t" if /<name>/; print "$2\n" if /<(title|name)>(.*)<\/\1>/;'
Fast search in Wikipedia
#!/bin/bash
if [ $# -lt 1 ]; then
echo "usage: $0 keyword"
exit 1
fi
dig +short txt $1.wp.dg.cx || exit 2
exit 0
if [ $# -lt 1 ]; then
echo "usage: $0 keyword"
exit 1
fi
dig +short txt $1.wp.dg.cx || exit 2
exit 0
How to record your linux desktop on video
ffmpeg -f x11grab -s <resolution> -r 25 -i :0.0 -sameq /tmp/out.mpg
set <resolution> to your current.
You can find out your current resolution using 'xrandr' command.
set <resolution> to your current.
You can find out your current resolution using 'xrandr' command.
понеделник, 5 ноември 2012 г.
How to get a key code (very helpful for media keys + shortcuts)
xev | grep -A2 --line-buffered '^KeyRelease' | grep -o -e 'keycode.\([0-9]*\).'
източник http://wiki.xfce.org/faq#keyboard
източник http://wiki.xfce.org/faq#keyboard
петък, 27 април 2012 г.
Следене на активност при Windows процеси
Тъй като с Sir Peach днес имахме задачка да проследим една "програмка" каква активност извършва - използвани файлове, registry ключове и т.н. се наложи да си спомня за този инструмент, а той е именно - Process Monitor на SysInternals
Download
Инструмента след пускането си hookва глобално всички процеси и следи всички event-и, за да проследите поведението на точно определен процес - използвате филтри.
Филтрите са много гъвкави и позволяват филтрация по пътека на изпълняваният файл, отварян файл, че дори по използвано Windows-ко API.
Download
Инструмента след пускането си hookва глобално всички процеси и следи всички event-и, за да проследите поведението на точно определен процес - използвате филтри.
Филтрите са много гъвкави и позволяват филтрация по пътека на изпълняваният файл, отварян файл, че дори по използвано Windows-ко API.
Абонамент за:
Публикации (Atom)