Saturday, March 31, 2007

Крем карамел

Продукти:



  • 6 яйца

  • 1л. мляко

  • 1ч. захар


Необходими са 6-8 бр. от познатите метални чашки или иенски купички.


В купичките се слага по 1л. захар и се поставят на нагорещен котлон докато захарта не започне да се карамелизира. След това се отстраняват и в тях се сипва сместа приготвена от яйцата млякото и останалата захар. Слагат се в тава, в която се сипва вода, така че да покрие съдовете до половината (водна баня). Пекат се във фурна на 150гр. в продължение на 1 час.



WEP cracking w/ Atheros cards

The following article describes how to crack encrypted wireless networks using WEP protocol in Ubuntu with Atheros based cards.


First install the needed software - aircrack-ng cracking suite and madwifi-tools from debian package which provides the wlanconfig tool which otherwise is not included in ubuntu.


apt-get install aircrack-ng
wget http://ftp.de.debian.org/debian/pool/contrib/m/
madwifi-tools/madwifi-tools_0.9.2+dfsg-1_i386.deb
dpkg -i madwifi-tools_0.9.2+dfsg-1_i386.deb


Then we should bring any virtual access points (VAPs) down in order to create an interface in monitor mode.


ifconfig ath0 down (Take the VAP down)


wlanconfig ath0 destroy (Destroy the VAP)


wlanconfig ath0 create wlandev wifi0 wlanmode monitor (pretty self-explanatory)


Then find on which channel the targeted network is operating. You can do this with running airodump-ng without any arguments.
Now we are ready to capture initialization vectors (IVs) which are required to recover the WEP key.


airodump-ng -c -w


(You need to capture about 250.000 IVs to crack 40-bit WEP, and more than 800.000 IVs to crack a 104-bit key)


aircrack-ng


Enjoy )

Sunday, March 18, 2007

Супа с пилешки крилца

Продукти:



  • 4 пилешки крилца

  • 2-3 моркова

  • глава кромид лук

  • 1 кубче пилешки бульон

  • 0.5 супена лъжица сол

  • фиде на око

  • 1 яйце

  • 3 с.л. кис. мляко


Слагат се пилешките крилца в тенджера с около 1.5 литра кипнала и подсолена вода. След като се сварят се изваждат и се разкъсват на парченца. Прибавят се нарязаните моркови и лука и когато се сварят се прибавя бульона. Накрая се слага фидето и се разбърква докато омекне. Слага се застройка по избор. Какрая към супата може да се прибави черен пипер и магданоз.

Традиционен бял хляб

Брейй това машината за хляб била стахотна работа. След като един директор на хлебозавод се изпусна да каже какви ‘химични елементи’ използват за направата на хляба смятам да мина изцяло на домашно производство ) )


Ето класическата рецепта:



  • 1 чашa вода

  • 3 ч. брашно

  • 2 с.л. захар

  • 1.5 ч.л. сол

  • 1.75 ч.л. мая

  • 2 с.л. олио

  • 1 ч.л. оцет


По желание могат да се добавят макови семена и/или сусам.



Thursday, March 15, 2007

Windows CE pppd

Here are some instructions how to connect a Windows CE portable to a Linux box with pppd.


Windows CE:


Create a modem connection.


Connections -> Direct Connections -> Settings -> Communication -> Identification -> cebox


Linux:


Create the following files in /etc/ppp


cebox.sh:


#!/bin/bash


pppd call cebox


cebox.chat:


Timeout 3600


“CLIENT” “CLIENT\c”


” ” “SERVER\c”


peers/cebox:


/dev/ttyS1 19200 crtscts


connect ‘/usr/sbin/chat -v -t cebox.chat’


noauth


local


192.168.55.101:192.168.55.100


Don’t change the IP addresses since Windows CE seems to connect only if such network is specified. Make /etc/ppp/cebox.sh executable and start it. Then start the modem connection from the Win CE.

Gentoo Linux Mini HOWTO

This a short reference guide for installing Gentoo “the classic way”.


fdisk /dev/hda


mkswap /dev/hdaX
mkfs.ex3 /dev/hdaY


swapon /dev/hdaX
mount /dev/hdaY /mnt/gentoo


cd /mnt/gentoo
wget http://mirrors.ludost.net/gentoo/releases/
x86/current/stages/stage3-i686-2006.1.tar.bz2
tar xvjpf stage3-i686-2006.1.tar.bz2


mount -o bind /proc /mnt/gentoo/proc


cp /etc/resolv.conf /mnt/gentoo/etc/


chroot /mnt/gentoo /bin/bash


env-update
source /etc/profile


emerge –sync


nano -w /etc/make.conf


ln -sf /usr/share/zoneinfo/… /etc/localtime


emerge -sf sys-kernel/gentoo-sources
cd /usr/src/linux
make menuconfig
make bzImage modules modules_instal
cp arch/i386/boot/bzImage /boot


ufed


emerge metalog
emerge dcron


rc-update add medalog default
rc-update add dcron default


passwd


nano -w /etc/fstab


grub


etc-update


exit
cd /
umount /mnt/gentoo/proc
umount /mnt/gentoo


reboot


If you don’t know what some of the commands do or how to use them check out the original Gentoo Linux x86 Quick Install Guide and Gentoo Handbook.