jQuery 1.4 duyuruldu
http://jquery.com/
http://net.tutsplus.com/tutorials/javascript-ajax/jquery-1-4-released-the-15-new-features-you-must-know/
http://jquery14.com/day-01/jquery-14
Still alive...
title LG
fallback 2
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2
# cd /downloads/qmailrocks/
# tar jxvf courier-authlib-0.55.tar.bz2
# cd courier-authlib-0.55
# ./configure --prefix=/usr/local --exec-prefix=/usr/local --with-authvchkpw --without-authldap --without-authmysql --disable-root-check --with-ssl --with-authchangepwdir=/usr/local/libexec/authlib --with-redhat
# make && make check
# apt-get install courier-imap-ssl
# cp /downloads/qmailrocks/scripts/misc/authvchkpw /usr/lib/courier/courier-authlib/authvchkpw
# cp /downloads/qmailrocks/courier-authlib-0.55/.libs/libauthvchkpw.so /usr/lib/courier-authlib/
# pico /etc/courier/authdaemonrc
authmodulelist="authvchkpw"
authmodulelistorig="authvchkpw"
# pico /etc/courier/authmodulelist
authvchkpw
#cd /etc/init.d
#./courier-imap stop ;./courier-authdaemon stop ; ./courier-imap-ssl stop
#./courier-imap start ;./courier-authdaemon start; ./courier-imap-ssl start
#telnet localhost 143a OK LOGIN ok satırını görüyorsanız problem çözülmüştür . Geçmiş olsun :)
Connected to localhost.
Escape character is '^]'.
* OK [CAPABILITY IMAP4rev1 UIDPLUS CHILDREN NAMESPACE THREAD=ORDEREDSUBJECT THREAD=REFERENCES SORT QUOTA IDLE ACL ACL2=UNION STARTTLS] Courier-IMAP ready. Copyright 1998-2005
Double Precision, Inc. See COPYING for distribution information.
a login postmaster@domain.com parola
a OK LOGIN Ok.
a logout
* BYE Courier-IMAP server shutting down
a OK LOGOUT completed
Connection closed by foreign host


Life With djbdns - Bölum 6.8
#tinydns-conf tinydns dnslog /etc/tinydns1 1.2.1.1
#tinydns-conf tinydns dnslog /etc/tinydns2 1.2.2.1
#tinydns-conf tinydns dnslog /etc/tinydns3 1.2.3.1
#echo "/etc/tinydns1/root" > /etc/tinydns2/env/ROOT
#echo "/etc/tinydns1/root" > /etc/tinydns3/env/ROOT
#ln -s /etc/tinydns[1-3] /service
#!/usr/bin/php
/*============================*/
if( $argc < 2 ) die("Kullanim: $argv[0] domain.com\n\n");
/*============================*/
$sablon = "##########################\n";
$sablon .= ".[DOMAIN]::ns1.devmach.com\n" ; // 1. Dns Sunucu
$sablon .= ".[DOMAIN]::ns2.devmach.com\n" ; // 2. Dns sunucu
$sablon .= "=[DOMAIN]:212.212.212.212\n" ; // A Kaydı 1. Sunucu
$sablon .= "=[DOMAIN]:216.216.216.216\n" ; // A Kaydı 2. Sunucu
$sablon .= "+*.[DOMAIN]:212.212.212.212\n" ; // * ( A ) Kaydı 1. Sunucu
$sablon .= "+*.[DOMAIN]:216.216.216.216\n" ; // * ( A ) Kaydı 1. Sunucu
$sablon .= "@[DOMAIN]::mail.devmach.com:5\n" ; // Mail Sunucu
$yeni_dom= str_replace('[DOMAIN]',$argv[1], $sablon);
/*============================*/
$dosya = fopen("data", "a+");
fputs($dosya, $yeni_dom);
fclose($dosya);
echo "$argv[1] Eklendi...\n";
/*============================*/
system("make");
echo "data.cdb Guncellendi...\n";
?>
Digg This: 09-f9-11-02-9d-74-e3-5b-d8-41-56-c5-63-56-88-c0Ek linkler:
Today was an insane day. And as the founder of Digg, I just wanted to post my thoughts…
In building and shaping the site I’ve always tried to stay as hands on as possible. We’ve always given site moderation (digging/burying) power to the community. Occasionally we step in to remove stories that violate our terms of use (eg. linking to pornography, illegal downloads, racial hate sites, etc.). So today was a difficult day for us. We had to decide whether to remove stories containing a single code based on a cease and desist declaration. We had to make a call, and in our desire to avoid a scenario where Digg would be interrupted or shut down, we decided to comply and remove the stories with the code.
But now, after seeing hundreds of stories and reading thousands of comments, you’ve made it clear. You’d rather see Digg go down fighting than bow down to a bigger company. We hear you, and effective immediately we won’t delete stories or comments containing the code and will deal with whatever the consequences might be.
If we lose, then what the hell, at least we died trying.
Digg on,
Kevin
Web adminler ve PHP programcıları Suhosin’i yakından tanırlar. Suhosin; PHP’nin daha güvenli çalışması için geliştirilmiş bir PHP moduludur. Hali hazırda Ubuntu depolarında henüz bulunmayan Suhosin’i aşağıdaki adımları izleyerek Ubuntu web sunucunuza kurabilirsiniz.
Öncelikle aşağıdaki depoları /etc/apt/sources.list dosyamıza ekliyoruz.
deb http://packages.dotdeb.org stable all
deb-src http://packages.dotdeb.org stable all
Daha sonra “apt-get update” komutu ile paket depolarımızı güncelliyoruz.
Ardından “apt-get install php5-suhosin” komutu ile Suhosin modulu yamanmış PHP5?imizi yüklüyoruz.
Tüm yapmanız gerekenler bu kadar…
Hemen bir örnek verelim. Aşağıdaki komutu kullanarak phpinfo’yu blacklist’e ekleyelim.
echo suhosin.executor.func.blacklist=”phpinfo” >>/etc/php5/conf.d/suhosin.ini
Daha sonra başka bir terminalden syslogu takip edelim.
$tail -f /var/log/syslog
Eklediğimiz fonksiyonun çalışması için Apache’yi restart edelim.
$/etc/init.d/apache2 force-reload
/var/www/ dizini altında içeriği aşağıdaki gibi olan info.php dosyasını oluşturalım.
phpinfo();
?>;
Şimdi tarayıcımızdan http://sunucu-adres/info.php yazarak oluşturduğumuz info.php’i çalıştıralım.
Gördüğünüz gibi info.php açılmıyacaktır ve syslog’u takip ettiğiniz diğer terminale baktığınızda aşağıdaki gibi bir uyarı mesajı göreceksiniz.
Mar 5 18:58:01 ubuntu-server suhosin[27952]: ALERT - function within blacklist called: phpinfo() (attacker ‘10.0.0.3?, file ‘/var/www/info.php’, line 2)
Suhosin hakkında daha fazla bilgi almak için aşağıdaki adrese girin.
http://www.hardened-php.net/suhosin/
Suhosin ile neler yapabileceğinizi keşfetmek için alttaki adrese girin.
http://www.hardened-php.net/suhosin/configuration.html
Almanca öğrenenler için güzel bir imkan :Deutsche-Welle , akşam 10 haberlerinin "yavaş" okunan şeklini ve haberin metnini sitesinde yayınlıyor, bir bakılmalı :
http://www.dw-world.de/dw/0,2142,8030,00.html
ek olarak Top-Thema'yada bakmakda fayda var.