сряда, 14 ноември 2012 г.

Депресията - някои основни насоки за справянето с нея

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

четвъртък, 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

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

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.

петък, 27 април 2012 г.

Следене на активност при Windows процеси

Тъй като с Sir Peach днес имахме задачка да проследим една "програмка" каква активност извършва - използвани файлове, registry ключове и т.н. се наложи да си спомня за този инструмент, а той е именно - Process Monitor на SysInternals

Download

Инструмента след пускането си hookва глобално всички процеси и следи всички event-и, за да проследите поведението на точно определен процес - използвате филтри.
Филтрите са много гъвкави и позволяват филтрация по пътека на изпълняваният файл, отварян файл, че дори по използвано Windows-ко API.