Minggu, Juli 29, 2007

Joomla! 1.0.13 Released

Joomla! 1.0.13 [ Sunglow ] is now available for download.

Joomla! 1.0.13 features:

* Several low-risk security fixes
* Improved password storage system
* Easier control over Register Globals Emulation
* An Itemid backwards compatibility setting
* Improved administrative session security
* Improved HTTP/HTTPS switchover support

Because Joomla! 1.0.13 is a security release, it is important that you upgrade but we strongly recommend that you take extra precautions when performing this upgrade. This release features several improvements to the password storage system designed to help protect the future security of your Joomla! powered website. These changes will cause compatibility issues with some 3rd Party Extensions, especially bridges. If your Joomla! site utilizes bridges to other applications or extensions that have their own login system such as Community Builder, Virtuemart, or others you should not upgrade your site until those extensions have also been updated.

The changes to the password storage system should be transparent to your Joomla! site's users. As users login for the first time after your site has been upgraded, their passwords will automatically be converted from the old password storage system to the new system. Because of this automatic conversion of passwords, it is important that you backup your entire database before performing this upgrade. Once the process of converting passwords has started, it cannot be reversed.

Release Information

1.0.13 is available as a full package, which contains all Joomla! files or as patch packages which contain only the files that have changed since previous Joomla! 1.0.x version.

* 1.0.13 Full Package
* 1.0.13 Patch Packages
* 1.0.13 Version Information
* 1.0.13 Changelog

Improved Password Storage System

Encryption and hashing technologies are constantly evolving as new processes become known and more time and energy is invested in breaking old systems. The unforunate result of this continuous evolution is that the md5 hashing system is showing its age and has become easier to break with the introduction and rapid development of high-quality rainbow tables. To combat this problem, Joomla! 1.0.13 now features salted hashes which will automatically pad a password string with 16 randomly generated characters to make the hash exponentially more difficult to reverse-engineer or guess. As users login to your Joomla! powered website, their passwords will be automatically converted from the old password storage system, to the new system. The transition should be completely transparent to both you and your users. However, there is no way to reverse this process so it is important that you take all precautions when performing this upgrade and make sure you have a complete database backup before beginning.

Easier Control over Register Globals Emulation

Joomla! has always featured the ability to emulate PHP's register globals setting. However, controlling this feature has always been one of the more difficult aspects of configuring your Joomla! installation because it required manually editing a core file. For Joomla! 1.0.13, all that is history. Joomla!'s register globals emulating controls have been moved into the Global Configuration settings to allow for fast and easy control over this feature. The advantages of this change are two-fold: 1) it will be easier to secure your Joomla! powered website and 2) disabling register globals emulation will help you identify some extensions that will not work in Joomla! 1.5.

Itemid Backwards Compatibility Setting

With the release of Joomla! 1.0.12 came a few changes to the behavior of Joomla! infamous Itemid system. Many people were dissatisfied with the changes and insisted on reverting their Joomla! powered websites back to the previous behavior. To address this problem, Joomla! 1.0.13 now features an Itemid compatibility setting that can be found in the Global Configuration manager. The setting allows you to choose between the Itemid behavior in Joomla! 1.0.12 and the Itemid behavior found in Joomla! 1.0.11 and prior.

Improved Administrative Session Security

To address a potential issue known as "session fixation" attacks, we have implemented some small changes into Joomla! 1.0.13 to improve the security of administrative sessions. Administrative sessions will now be destroyed and recreated with each request in order to prevent session fixation and session hijacking attacks.

SSL Switchover Support

Joomla! 1.0.13 has address a few lingering bugs in the HTTP/HTTPS switchover support reintroduced in Joomla! 1.0.12. SSL switchover support should now work fluidly with seemless transitions between encrypted and unecrypted pages.

Selengkapnya...

Sabtu, Juli 28, 2007

Mereset Password User / Administrator di Joomla

Administrator juga manusia, kadang sang admin pun bisa lupa password untuk login sebagai Administrator websitenya. Anda pun mungkin akan mengalami sedikit masalah jika Anda web yang Anda kelola tersebut masih berada di localhost dan Anda tidak terhubung ke internet, karena fasilitas “Forgot Password” akan mengirim password baru Anda ke email Anda.

Kali ini saya akan coba kasih langkah-langkah untuk mereset password Administrator atau pun user di Joomla jika Anda tidak terhubung ke internet dan web Anda masih di localhost. Langkah-Langkah Mereset Password

  1. Liat tabel users Joomla di phpMyadmin
  2. Kemudian edit dan ganti password admin/user sesuai dengan yang loe mau, jangan lupa password baru yang akan loe masukin itu harus udah di MD5 dulu. Kalo ga ngerti apa itu MD5, ganti aja passwordnya dengan “226776f356d7ecf58b60bab12a05d38f” (tanpa kutip).
Kemudian coba masuk ke /administrator dan login sebagai administrator Joomla, masukkan user id yang tadi loe rubah passwordnya, kemudian di kolom password ketikkan “joomla” (tanpa kutip).

Selengkapnya...

Securing your administrator directory using .htaccess files

To protect your administrator panel a bit more against hacking attempts, you can protect your administrator directory using htaccess files.
There are a few options available: restrict access by ip address and password protection

Restrict access by IP Address

If you are in the possession of a static IP Address it might be a wise idea to only allow access to the Joomla! administrator panel from that address. This can be easily done in the following way. Create an empty .htaccess file in your administrator directory. Put the following in it:


Order Deny,Allow
Deny from all
Allow from 10.0.0.150

Change 10.0.0.150 in your static internet ip address. You can also use partial IP Addresses: 10.0.0

When you visit the admin panel from any other address than the one in here, you will see a 403 Forbidden error. You can add multiple address by separating them by comma's: 10.0.0.150,10.0.0.151

Password protection

You can also create an extra barrier by adding password protection to your administrator directory. Some admin panels like webmin and cpanel support the creation of password protected directories through their admin panel. For others, these are the steps to follow:

Create an empty file .htaccess in your Joomla! administrator directory. Put the following in it:

AuthType Basic
AuthName "Joomla Administrator"
AuthUserFile /full/path/to/joomla/administrator/.htpasswd

require valid-user


Modify the /full/path/to/joomla to match where your site is.
Then create an empty file .htpasswd in the same directory. You will have to enter the user name and encrypted password in that file. An easy tool to create this line is: http://www.flash.net/cgi-bin/pw.pl. Enter the user name and password and click encrypt.

On the next page you will see the user name and password that will have to be put in the .htpasswd file:
admin:1M8rRxU7VA6Ic

Copy and past that line in your .htpasswd file and things should work. To add another user, encrypt the user name and password and put them on the line below the first one.

Selengkapnya...

KEEPING JOOMLLA SAFER

Over the last couple of weeks we've seen quite a few components abused to hack or deface sites. A lot of those exploits could have been avoided if these servers were running register_globals off. (Read carefully, i'm not talking about all hacks, but a lot of them)
A lot of information about what register globals actually is, can be found on the php.net site.

Now, to turn register globals off:
1) locate your php.ini configuration file
2) look for this line: register_globals = On
3) change it to: register_globals = Off
4) safe the file and restart apache

That is all to keep you a bit safer.
Now, if you don't have access to your php.ini file, you can try to use a .htaccess file to change this configuration value. Add the following code anywhere in your .htaccess file:

php_value register_globals off
Then save the file.
And last,

open globals.php
Change: define( 'RG_EMULATION', 1 );
To: define( 'RG_EMULATION', 0 );
And save the file.

Selengkapnya...

Rabu, Juli 25, 2007

Opensource?

Di ruang teknologi informasi sekarang terjadi hingar-bingar mengenai perangkat lunak opensource. Apa itu opensource dan apa pula manfaatnya bagi kita?

Pada intinya yang disebut sebagai perangkat lunak opensourceadalah
perangkat lunak bagi komputer yang disebarkan sedemikian hingga
memungkinkan semua orang bisa memberikan sumbangan untuk perbaikan dan pengembangan perangkat lunak tersebut. Caranya adalah dengan menyebarkan program komputer dalam bentuk yang bisa dibaca oleh manusia disamping kode program untuk dibaca oleh komputer. Sebagai contohnya adalah program komputer Firefox, dimana kita bisa mempelajari bagaimana sebuah web browser bekerja dengan membaca instruksi komputer dalam dalam kata-kata dan kode yang bisa dipahami manusia.

Karena teknik dan cara pengendalian peralatan elektronik di dalam
komputer tidak dirahasiakan dan bisa dibaca oleh siapapun yang ingin membaca, adalah mungkin program komputer opensource ini dijiplak orang dan dimanfaatkan untuk keuntungan sepihak. Untuk menghindarinya perangkat lunak opensource ini disertai dengan dokumen mengenai ketentuan penggunaan dan ijin penggunaan (lisensi) yang membatasi kemungkinan seseorang mengambil keuntungan sepihak tanpa seijin penyusun perangkat lunak yang bersangkutan.

Akibat lisensi yang membatasi ini, umumnya perangkat lunak opensource di disebarkan dengan lisensi tanpa biaya (biaya distribusi seperti pembuatan CDROM, jaringan internet dan lainnya ditanggung pengguna). Tetapi apakah perangkat lunak opensource ini memang gratis? Memang tidak ada biaya lisensi, tetapi pengguna perangkat lunak ini diharapkan untuk memberikan suatu kontribusi pada perangkat lunak yang digunakan. Tidak dalam bentuk dana, tetapi dalam bentuk sedikit tenaga dan pikiran agar perangkat lunak yang digunakan dapat menjadi lebih baik. Ini adalah alasan utama untuk meng-opensource-kan perangkat lunak.

Bandingkan penggunaan MS Office dan OpenOffice.org sebagai contoh:

  • Dengan MS Office anda membayar lisensi (sekiranya anda adalah man of honour). Anda akan memperoleh CDROM dan buku petunjuk penggunaan. Sekiranya ada masalah dengan perangkat lunak MS Office anda bisa menghubungi afiliasi Microsoft untuk bantuan. Jika bantuan itu tak memuaskan silakan mengumpat sejadi-jadinya kepada para pemilik andil Microsoft Corp. Uang yang anda bayarkan tak mungkin dikembalikan.
Dengan OpenOffice.org anda melakukan download perangkat lunak dari server internet http://kambing.ui.edu. Bisa juga mencari CDROMnya di tempat penjualan CD. Sekiranya ada masalah dengan perangkat lunak tersebut anda diharapkan emberitahukan masalah tersebut dengan email kepada pengembangnya (alamat emailnya ada di http://www.openoffice.org) atau pendukung opensource terdekat. Sebagai balasan anda akan memperoleh solusi atau petunjuk atau ucapan terima kasih atas bantuan anda untuk menyempurnakan OpenOffice.org. Atau boleh juga anda memperbaiki perangkat lunak itu sendiri dan memberitahukan bagaimana anda memperbaikinya. Sebagai balasan anda akan memperoleh ucapan terima kasih atas kontribusi anda. Sekiranya kedua hal tersebut telah dilakukan dan anda menganggap hasilnya tidak memuaskan.

link Artikel

Selengkapnya...

Hilangnya Nilai "Ajaib" Borobudur di Mata Dunia

Jakarta (ANTARA News) - Pernahkah terpikir untuk bertanya apakah Candi Borobudur termasuk ke dalam "Tujuh Keajaiban Dunia" yang umum diakui di luar Indonesia?

Dan percaya atau tidak dari pencarian di mesin pencari Google secara sekilas ternyata jawabannya adalah tidak. Situs-situs yang mengklaim bahwa Borobudur termasuk "Tujuh Keajaiban Dunia" sebagian besar ditulis oleh orang Indonesia.

Merujuk pada situs Wikipedia, Borobudur memang tidak termasuk dalam tujuh keajaiban dunia. Pada beberapa situs lainnya pun tidak semuanya mencantumkan nama Candi Borobudur.

Bahkan pada situs wonderclub.com, Borobudur dianggap sebagai keajaiban yang terlupakan "The Forgotten Wonders". Seperti juga pada situs dari profesor teknik sipil University of South Florida, Borobudur ditempatkan pada kategori Forgotten Wonder bersama beberapa peninggalan bersejarah dunia lainnya.

Seperti diketahui, peninggalan yang masuk pada kategori "yang terlupakan" itu biasanya adalah situs yang kurang dikenal oleh para sejarawan dan arsitek dunia.

Barangkali, masyarakat di tanah air sudah saatnya menyadari fakta bahwa sedari dulu Candi Borobudur memang tidak dikenal sebagai salah satu dari tujuh keajaiban dunia pada literatur internasional.

Hanya saja sejak dulu bangsa Indonesia menyebutnya dalam buku-buku pelajaran di sekolah-sekolah sebagai "Tujuh Keajaiban Dunia" (versi indonesia).

Namun, meski begitu, Candi yang terletak di Kabupaten Magelang, Jawa Tengah (Jateng) hingga saat ini tetap masih diakui sebagai warisan budaya dunia.

Borobudur tetap dianggap "ajaib" meski hasil 'polling' sebuah lembaga swasta di Swiss tidak lagi memasukkan candi Dinasti Syailendra itu sebagai 'keajaiban dunia'.

Candi Budha paling terkenal itu dibangun pada abad ke-8 hingga abad ke-9 Masehi yang dibangun terbagi dalam tiga bagian, yaitu dasar piramida dengan teras datar konsentris, stupa yang penutupnya terdiri dari tiga platform sirkular, dan puncaknya berupa stupa monumental.

Candi Borobudur sudah mulai dibangun 300 tahun sebelum Angkor Wat di Kamboja dan 400 tahun sebelum katedral-katedral agung di Eropa. Candi itu tersusun dari kurang lebih 55.000 M3 batu yang dipahat dan bila relief-relief di Borobudur disusun berderet, maka panjangnya bisa mencapai 2900 meter.

Pantas bila kemudian "kompetisi" pemilihan keajaiban dunia yang diadakan Bernard Weber itu memunculkan banyak reaksi keras terutama dari UNESCO dan beberapa negara yang memiliki warisan budaya yang dinilai ajaib tetapi tidak termasuk dalam daftar tujuh keajabian dunia yang dihasilkan dari pemilihan tersebut, misalnya saja Mesir yang memiliki Piramid.

UNESCO secara tegas menanggapi tidak memiliki keterkaitan apapun dalam proses dan hasil pemilihan tujuh keajaiban dunia baru itu.

Banyak pihak menganggap sistem pemilihan tujuh keajaiban dunia itu tidak layak dan tidak valid karena hasil didapatkan hanya berdasarkan voting layaknya sebuah acara reality TV show.

Kebesaran peninggalan sejarah amat tidak layak bila hanya ditentukan dari sebuah voting tanpa ada kriteria-kriteria tertentu yang ilmiah dan obyektif dalam menilainya.

Seperti diketahui, UNESCO sendiri tidak terpaku pada patokan jumlah keajaiban dunia sebanyak tujuh. Organisasi dunia itu hanya memberikan istilah ?World Heritage? (peninggalan -sejarah/kebudayaan- dunia).

Dosen sejarah Universitas Gadjah Mada (UGM) Yogyakarta, Sumargono, mengatakan, kriteria 'polling' yang dilakukan melalui inisiatif pribadi Bernard Weber tersebut tidak begitu jelas dan belum bisa dijadikan patokan.

"Yang pasti, UNESCO masih mengakui Candi Borobudur sebagai warisan budaya dunia," katanya.

Kredibilitas 'polling' tersebut memang perlu dipertanyakan karena kriterianya tidak jelas.

Meski demikian, kata dia, hasil 'polling' itu setidaknya bisa menjadi tantangan bagi pemerintah dan masyarakat Indonesia untuk lebih memperhatikan Candi Borobudur sebagai warisan budaya dunia dan tetap menjaga kelestarian candi Budha tersebut.


Berbenah

Tujuh keajaiban dunia yang baru, yang diumumkan, pada awal Juli 2007 adalah Taj Mahal (India), reruntuhan Petra (Yordania), Tembok Besar (China), reruntuhan Machu Picchu (Peru), reruntuhan Chichen Itza (Meksiko), Koloseum (Roma), dan Patung Kristus Sang Penebus (Brasil).

Bangsa Indonesia boleh jadi terpana dengan hasil polling yang dilakukan sejak enam tahun silam itu.

Hilangnya predikat ajaib bagi Borobudur meskipun hanya tergusur melalui polling yang dianggap tidak valid, tetap saja layaknya tamparan bagi banyak pihak untuk kemudian membenahi candi Budha berumur ratusan tahun itu.

Pengumuman polling tujuh keajaiban dunia baru di Lisabon, Portugal, itu rupanya turut memacu pihak PT Taman Wisata Candi Borobudur (TWCD) untuk melakukan berbagai pembenahan.

"Ini justru menjadi sarana introspeksi untuk lebih berbenah, supaya orang yang berkunjung lebih mendapat kesan dan kenangan yang lebih baik selama berwisata di Borobudur," kata Wakil Kepala Unit TWCB, Pudjo Suwarno.

Pembenahan yang akan dilakukan antara lain penghijauan lanjutan untuk menambah sejuk suasana di sekitar Borobudur karena hingga kini masih terkesan panas.

Selain itu, pembenahan lanjutan juga dilakukan terhadap aktivitas para pedagang makanan, minuman, dan cinderamata di kompleks TWCB, dan perbaikan promosi baik secara nasional maupun internasional tentang wisata Borobudur.

Target kunjungan wisata Borobudur tahun 2007 sebanyak 1,384 juta dan hingga Juni 2007 telah terealisasi 831.368 orang.

Pada tahun 2006 wisatawan yang ditargetkan 2,150 juta hanya terealisasi 1,243 juta orang karena terjadi bencana alam gempa bumi dan erupsi Gunung Merapi.


Seven wonders SMS

Sementara itu, Menteri Kebudayaan dan Pariwisata Jero Wacik meminta masyarakat Indonesia untuk tetap menganggap Candi Borobudur di Magelang, Jawa Tengah, sebagai keajaiban dunia.

"Saya minta masyarakat Indonesia termasuk saya sendiri tetap menganggap Borobudur sebagai keajaiban dunia, karena itu punya kesejarahan dan kompleksitas arsitektur yang luar biasa serta tetap menjadi warisan dunia atau World Heritage oleh UNESCO," katanya.

Menurut Jero Wacik, UNESCO juga telah menyatakan untuk tidak mengakui tujuh keajaiban baru versi jajak pendapat.

"Saya menyebutnya 7 wonders SMS, jadi orang polling, kalau sistemnya polling maka mana yang terkenal dan banyak dikunjungi orang yang akan di SMS, bukan penilaian sejarah atau arsitekturnya," ujarnya.

Kembali lagi, terlepas bahwa Borobudur dinilai ajaib atau tidak di mata dunia, tetap tidak mengubah bahwa candi itu merupakan tatanan sekitar dua juta batu yang dibangun abad ke-8 masa Dinasti Syailendra, di antara aliran Kali Elo dan Progo, Kabupaten Magelang.

Ajaib kemudian bisa saja berlaku subyektif dan nilai ajaibnya Borobudur boleh jadi tidak akan pernah terenggut melalui polling ataupun cara lain di mata bangsa Indonesia.

Selengkapnya...

Kespo Part II, sekarang MSWord jadi BMP

Pembuat virus kelihatannya meniru JK Rowling, gemar membuat serial yang lebih seru dari setiap buku yang diterbitkannya. Setelah Kespo yang sukses menyebar dan merepotkan semua orang marena menginjeksi dan merubah file DOC / .XLS menjadi .EXE, kini muncul variannya Delf.ZFA atau lebih dikenal dengan nama ZulAnick. Kalau virus Kespo merubah file data korbannya menjadi .EXE, maka ZulAnick ini ibarat penjahit celana jeans di Grogol, file-file MSWord, Excel, MP3 dipermak menjadi .BMP (bitmap). Celakanya, vendor antivirus hanya mampu mendeteksi dan membersihkan virus yang menginfeksi file dan file (data) yang telah dibersihkan dari virus tetap tidak mau kembali ke jalan yang benar (tidak dapat diakses) karena sudah dipermak menjadi .BMP. Tentunya korbannya akan nangis Bombay (mungkin maksudnya nangis karena matanya kena bawang Bombay :P). Tetapi jangan khawatir, anda tidak perlu ke India untuk mengatasi masalah ini. Ada programmer Visual Basic lokal dari Yogyakarta yang baik hati dan membuatkan tools untuk mengembalikan data yang dipermak oleh ZulAnick. Dan kabar baiknya, tools ini ampuh dan gratis.

Rasanya baru kemarin kita dilanda kesengsaraan akibat ulah kespo, dimana semua data baik MS.Word maupun MS.Excel akan di injeksi/infeksi sehingga terkadang antivirus vendor akan menghapus file tersebut dan tidak berdaya untuk repair file yang sudah terinfeksi virus Kespo tersebut. Bak perlombaan, para programer lokal juga berlomba untuk membuat tools untuk menghajar sang Kespo, seiring dengan berjalannya waktu kini sudah banyak bermunculan removal tools untuk mengembalikan file yang diinjeksi Kespo tersebut, antara lain :

Setelah Kespo A-C yang merubah file DOC /XLS menjadi .EXE, kini muncul varian lain yang merubah data korbannya menjadi BMP (Bitmap). Bitmap adalah format gambar Windows yang digunakan oleh Microsoft. Jika virus lokal lain “hobi” menggunakan Visual Basic, maka virus yang baru ini yang lebih dikenal dengan nama ZulAnick (terdeteksi oleh Norman Virus Control sebagai W32/Delf.ZFA) ini menggunakan bahasa pemrograman Delphi. Pada dasarnya Delf.ZFA tidak menginfeksi tetapi hanya mengenkrip dan merubah ekstensi file target tersebut.

Hal lain yang membedakan antara Kespo dengan ZulAnick adalah, dimana untuk Kespo hanya akan menyerang data MS.Word/MS.Excel dan file DataBase [DBF] tetapi hanya terbatas di media Flash Disk, selain itu Kespo langsung bereaksi dengan menginfeksi dan merubah ekstensi file tersebut pada saat Kespo menginfeksi komputer target. Sedangkan ZulAnick akan menyerang tidak hanya di Flash Disk saja, tetapi juga di Harddisk. Dan file yang diserang adalah DOC/XLS/MP3. Delf.ZFA tidak menjalankan dirinya sebagai service Windows, selain itu Delf.ZFA tidak akan langsung merubah file target ketika dirinya menginfeksi komputer target, untuk merubah ekstensi file tersebut ia akan menggunakan timer yang akan di eksekusi pada waktu yang sudah ditentukan.

Seperti pada Kespo
yang menggunakan Bahasa Delphi, Delf.ZFA memiliki ukuran sekitar 430 KB dan akan menggunakan icon Folder, perhatikan gambar 1 diawah ini:

Gambar 1 Icon file yang sudah terinfeksi Trojan:W32/Delf.ZFA

Ketika virus ini menginfeksi komputer target ia akan berupaya untuk mempertahankan dirinya dengan membuat beberapa file induk [acak] yang akan di jalankan setiap kali komputer dinyalakan. File induk yang akan dibuat biasanya berada di direktori berikut:
  • C:\Windows\%nama file%.SCR

[Contohnya: C:\Windows\UVdSdGFXNXBjM1J5WVhSdmNnQT0=.scr]

  • C:\Windows\System32\%nama file%.com

[Contohnya : C:\Windows\System32\QWRtaW5pc3RyYXRvcgA=.com]

  • C:\Documents and Settings\%user%\Local Settings\Temp\%nama file%.bat

    • C:\Documents and Settings\%user%\Local Settings\Temp\VWxkNE1tRlhOV2hCUVQwOQ==.bat

  • C:\Documents and Settings\%user% \Start Menu\Programs

    • Cintaku kandas ditengah jalan.lnk

  • C:\Documents and Settings\Elvina\My Documents

    • My My Pictures.exe

    • My Music.exe

    • My Videos.exe

Agar dirinya dapat aktif secara otomatis setiap kali komputer di nyalakan/restart maka ia akan membuat beberapa string registry berikut:

  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run

    • Zul_Cinta_Anick = C:\WINDOWS\system32\QWRtaW5pc3RyYXRvcgA=.com

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Run

    • Cintaku = C:\WINDOWS\UVdSdGFXNXBjM1J5WVhSdmNnQT0=.sc

    • C:\DOCUME~1\Elvina\LOCALS~1\Temp\VWxkNE1tRlhOV2hCUVQwOQ==.bat

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon

    • Explorer.exe = C:\WINDOWS\Uld4MmFXNWhBQT09.scr

  • HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell

    • Explorer.exe = C:\DOCUME~1\[user]\LOCALS~1\Temp\[random].bat

Sudah pasti ia juga akan blok fungsi Windows maupun software lainnya yang sekiranya dapat menghentikan penyebarannya sebut saja, task manager, date and time properties [tidak dapat merubah tanggal dan jam pada system komputer], Disk defragment, Folder Option dengan menghilangkan opsi Show hidden file and folder merubah value “Hide extensions for known file types dan “ Hide Protected Operating System (recommended) dan tools HijackThis maupun Tune Up Registry Editor. (lihat gambar 3)

Gambar3 W32/Delf.ZFA memanipulasi Folder Options

Untuk melakukan hal tersebut, ia akan membaca setiap caption yang mempunyai nama diatas serta membuat beberapa string pada registry berikut:

  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\System

    • DisableTaskMgr

  • HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\System

    • DisableCMD

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\
    Hidden\SHOWALL

    • type = ""

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\
    SuperHidden

    • UncheckedValue = 1

  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

    • ShowSuperHidden = 1

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder

    • Bitmap = hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74,
      00,65,00,6d,00,33,00,32,00,5c,00,53,00,48,00,45,00,4c,00,4c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,
      2c,00,34,00,00,00

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden

    • Bitmap = hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,00,5c,00,73,00,79,00,73,00,74, 00,65,00,6d,00,33,00,32,00,5c,00,53,00,48,00,45,00,4c,00,4c,00,33,00,32,00,2e,00,64,00,6c,00,6c,00,
      2c,00,34,00,00,00

  • HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced

    • Hidden = 2

    • HideFileExt = 1

    • ShowSuperHidden = 0

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\
    HideFileExt\

    • UncheckedValue = 1

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\
    Hidden\SHOWALL\

    • CheckedValue = 0

  • HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\
    SuperHidden

    • UncheckedValue = 1

Tidak Cuma itu saja, W32/Delf.ZFA juga akan merubah “Type File” yang mempunyai ekstensi BATdan COM dengan membuat string berikut : (lihat gambar 4 dan gambar 5)

  • HKEY_LOCAL_MACHINE\SOFTWARE\Classes\batfile

    • Default = kabatia

  • HKEY_LOCAL_MACHINE\SOFTWARE\Classes\comfile

    • Default = Demi Allah Zul cinta kamu Anick

  • HKEY_LOCAL_MACHINE\SOFTWARE\Classes\exefile\"Default" = "File Folder"

    • Default = File Folder

Gambar 4 Delf.ZFA merubah type file *.com dari “MS-DOS Application” menjadi “Demi Allah Zul cinta kamu Anick

Gambar 5 Delf.ZFA merubah type file *.bat dari “MS-DOS Batch File” menjadi “Kabitia”

Menyembunyikan file/folder dan membuat file duplikat

Sebagai upaya untuk mengelabui user, W32/Delf.ZFA akan menyembunyikan file/folder yang dijumpai disetiap Root Drive dan membuat file duplikat sesuai dengan folder yang disembunyikan dengan ciri-ciri:

  • Mempunyai ukuran 430 KB

  • Menggunakan icon Folder

  • Mempunyai ekstensi EXE (lihat gambar 6)

Gambar 6 Delf.ZFA membuat file duplikat untuk mengelabui user

Rahasia jahat yang terselubung dari Delf.ZFA

Sebaiknya anda berhati-hati, jika komputer terinfeksi virus ini sebaiknya secepatnya bersihkan dan jangan lupa untuk backup data. Anda tentu masih ingat dengan kasus Kespo yang sampai saat ini masih bergentayangan, yang cukup merepotkan adalah dimana data DOC/XLS akan di injeksi dan diubah menjadi EXE, virus ini masih tergolong baik karena walaupun file tersebut sudah diubah menjadi EXE tetapi masih dapat di jalankan bahkan di hapus/edit isi dari dokumen tersebut.

Bom Waktu

Di dalam tubuh Delf.ZFA tersimpan bom waktu yang siap setiap saat meledak dan menghancurkan file anda dengan cara mengenkrip semua file [bukan hanya DOC/XLS saja] yang di jumpai dan merubah ekstensi file tersebut menjadi BMP. Untungnya, pembuat virus ini masih tergolong tidak jahat seperti Kamasutra yang menghancurkan file komputer korbannya. ZulAnick hanya menginjeksi file dan merubah menjadi .BMP, dengan tools yang tepat, file tersebut masih dapat dikembalikan. Jangan hapus data anda jika anda terinfeksi ZulAnick karena data tersebut masih dapat dikembalikan.

Berbeda dengan Kespo, dimana jika komputer target terinfeksi virus Kespo maka secara otomatis akan menginjeksi file DOC/XLS yang berada di Flash Disk. Tetapi untuk virus Delf.ZFA tidak akan langsung melakukan reaksi tersebut, anda tentu masih ingat dengan kasus W32/Rontokbro.EQ dimana virus ini pada tanggal yang sudah ditentukan maka ia akan menghancurkan semua file/folder/subfolder yang dijumpai sehingga begitu komputer anda booting maka akan muncul pesan bahwa file NTLDR Missing dengan demikian format/install ulang adalah cara terakhir yang harus dilakukan, begitupun dengan Delf.ZFA ini yang akan menggunakan TIMER [waktu] untuk merubah dan meng-enkrip semua file yang dijumpai dan merubah ekstensi dari file tersebut menjadi BMP sehingga file tersebut tidak dapat dibuka, perhatikan gambar 7 dan 8 dibawah ini:

Gambar 7 Delf.ZFA merubah file MP3 dan MS Word / Excel menjadi BMP, tampilan View-Detail

Gambar 8 Delf.ZFA merubah file manjadi BMP tampilan View-Thumbnai)

Kabar baiknya virus ini hanya aktif pada mode Normal saja sehinga relatif mudah untuk dibersihkan dan sebagai jembatan penyebarannya ia masih menggunakan media Flash Disk/Disket dengan menyembunyikan file/folder yang ada pada Root Flash Disk tersebut seta membuat file duplikat di dalam Flash Disk tersebut sesuai dengan nama folder yang disembunyikan.

Kabar buruknya, virus ini masih belum terdeteksi oleh bnayak antivirus dan korbannya sampai saat ini menurut catatan Vaksincom sudah mencapai ribuan komputer diseluruh Indonesia.

Cara membersihkan Trojan:W32/Delf.ZFA

  1. Jika menggunakan Windows ME/XP matikan “System restore” selama proses pembersihan
  2. Lakukan pembersihan virus pada mode “safe mode”
  3. Hapus string registry yang sudah dibuat oleh Delf.ZFA, untuk mempercepat proses pemberihan silahkan salin skrip dibawah ini pada program “Notepad” kemudian simpan dengan nama “repair.inf”, jalankan file teresebut dengan cara:
    1. Klik kanan repair.inf
    2. Klik Install

[Version]

Signature="$Chicago$"

Provider=Vaksincom - ZulAnick

[DefaultInstall]

AddReg=UnhookRegKey

DelReg=del

[UnhookRegKey]

HKLM, Software\CLASSES\batfile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\comfile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\exefile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\piffile\shell\open\command,,,"""%1"" %*"

HKLM, Software\CLASSES\regfile\shell\open\command,,,"regedit.exe "%1""

HKLM, Software\CLASSES\scrfile\shell\open\command,,,"""%1"" %*"

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, Shell,0, "Explorer.exe"

HKLM, SYSTEM\ControlSet001\Control\SafeBoot, AlternateShell,0, "cmd.exe"

HKLM, SYSTEM\ControlSet002\Control\SafeBoot, AlternateShell,0, "cmd.exe"

HKLM, SYSTEM\CurrentControlSet\Control\SafeBoot, AlternateShell,0, "cmd.exe"

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\SuperHidden, UncheckedValue,0x00010001,1

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\HideFileExt, UncheckedValue,0x00010001,0

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL, Type,0,"radio"

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder, Bitmap,0, "C:\WINDOWS\SYSTEM32\SHELL32.DLL,4"

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden, Bitmap,0, "%SystemRoot%\system32\SHELL32.dll,4"

HKLM, SOFTWARE\Classes\comfile,,, "MS-DOS Application"

HKLM, SOFTWARE\Classes\batfile,,, "MS-DOS batch file"

HKCU, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced,hidden,0x00010001,1

HKCU, Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced,HideFileExt,0x00010001,0

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced\Folder\Hidden\SHOWALL, CheckedValue,0x00010001,1

[del]

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableRegistryTools

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System,DisableTaskMgr

HKCU, Software\Policies\Microsoft\Windows\System, DisableCMD

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Explorer,NoFolderOptions

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon, explorer.exe

HKCU, Software\Microsoft\Windows\CurrentVersion\Run, Zul_Cinta_Anick

HKLM, SOFTWARE\Microsoft\Windows\CurrentVersion\Run, Cintaku

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\Msconfig.exe

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\regedit.exe

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\cmd.exe

HKLM, SOFTWARE\Microsoft\Windows NT\CurrentVersion\Image File Execution Options\taskmgr.exe

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\Run

HKCU, Software\Microsoft\Windows\CurrentVersion\Policies\System

  1. Hapus file induk dan file duplikat yang dibuta oleh virus, dengan terlebih dahulu menempilkan semua file/folder yang disembunyikan [gunakan Folder Options] untuk menampilkan file/folder yang disembunyikan. (lihat gambar 9)

Gambar 9 Menampilkan file / folder yang disembunyikan

Untuk mempercepat proses pencarian dan pembersihan, sebaiknya gunakan fungsi Search Windows.

Jangan lupa untuk menghapus file link berikut:

    • C:\Documents and Settings\%user% \Start Menu\Programs
      • Cintaku kandas ditengah jalan.lnk
  1. Tampilkan kembali file/folder yang sudah disembunyikan oleh Delf.ZFA dengan menggunakan perintah ATTRIB –s –h /s /d pada DOS PROMPT dengan memastikan posisi kursor berada di setiap Root Drive yang akan di periksa, perhatikan contoh dibawah ini : (lihat gambar 10)

Gambar 10 (menampilkan file/folder yang disembunyikan)

  1. Untuk pembersihan optimal dan mencegah infeksi ulang, lindungi komputer anda dengan Norman Virus Control yang sudah dapat mendeteksi virus ini.
  2. Untuk repair file yang sudah di enkrip dan diubah ekstensi nya menjadi BMP, anda dapat menggunakan tools yang dibuat oleh Mas Yayat [BMP 2 DOC Recovery], silahkan download di alamat http://vaksin.com/removal.htm

Tools ini dapat mengembalikan/repair semua file yang sudah di ubah menjadi BMP ke file semua, untuk versi awalnya BMP 2 DOC Recovery hanya dapat merepair file BMP tersebut per file [masih belum ada fasilitas untuk search dan repair per Drive/Folder]. Perhatikan gambar 11 dibawah ini:

Gambar11 Menjalankan tools BMP 2 DOC

Selengkapnya...

TIP-TIP Untuk Membangun WEBSITE Anda

1. Waktu untuk Loadingnya tidak lama

Biasanya orang tidak sabar kalau waktu mau buka Suatu Web Site pertama kali terbukanya lama. Lebih dari 10 detik sudah termasuk lama loo. :-)

2. Buatlah Headline yang Hebat dan Kalimat Pembuka yang Menarik

Anda mempunyai waktu 10 detik untuk menarik perhatian orang, Pastikan Awali dari Website Anda dengan sesuatu yang Hebat , berikan kesan yang menguntungkan bagi Pengunjung

3. Buatlah mereka menjadi Tertarik dan Memperhatikan Tawaran dan Kesempatan dari Anda.

Setelah Mereka membuka Website Anda dan membacanya akan dapat membayangkan Suatu saat Mereka akan bisa mencapai Impian mereka jika mau menerima kesempatan yang kita tawarkan.

4. Mudah Dibaca dan dimengerti Bahasanya

Jangan bikin kacau Website anda dengan terlalu banyak informasi sehingga bisa membuat orang bingung , Hati hati dengan penggunaan Warna text dan Background.

5. Ciptakan Perasaan kebutuhan yang mendesak bagi mereka, sehingga mempunyai alasan untuk bergabung

6. Dapatkan Perusahaan Web Hosting Yang bagus dan Bonafid

Ini suatu yang penting, jika kesan pertama waktu klik Website anda terlalu lama, yang disebabkan oleh perusahan Hosting Anda, tentu ini menimbulkan kesan yang tidak baik, sehingga kemungkinan mereka balik lagi menjadi kecil.

7. Monitor terus Traffic yang mengunjungi Web Anda

8. Selalu Update Website Anda dengan Bahan-bahan yang baru

Bikin Pengunjung punya Alasan untuk datang lagi ke Web Anda , Buat Informasi di Website Anda Up-to date dan sesuai dengan target Market Anda.

9. Pastikan Anda punya Cara Untuk mengkoleksi Alamat Email Mereka

Dengan mempunyai List Alamat Email Mereka , Anda akan dapat selalu menghubungi mereka dan dapat selalu menjalin Hubungan. Dari hubungan Yang baik ini kemungkinan besar akan dapat mendatangkan penjualan.

10. Selalu Fokus Dengan Visi dan Misi Anda Sewaktu membuat Website Anda.

Sehingga Akan tercapai Tujuan Utama Goal Anda Sampai Sukses Tercapai

Selengkapnya...

Selasa, Juli 24, 2007

Surya Saputra Punya Saudara Kembar?

JAKARTA – Saat berjalan di sebuah pusat perbelanjaan, kebetulan Anda bertemu dengan seseorang yang mengenakna pakaian dan sepatu yang sama. Apa yang Anda lakukan ? Tengok saja aksi Surya Saputra yang pernah memiliki pengalaman yang tersebut.

“Beberapa bulan lalu di sebuah mall di Jakarta gua nemuin orang yang pakai baju dan sepatu sama kayak yang gua pakai, bedanya di celana, dia pakai celana pendek dan gua celana panjang jeans,” ungkap kekasih Chintya Lamusu ini usai acara pembukaan sebuah toko mainan di pusat perbelanjaan dikawasan Pondok Indah, Jakarta Selatan, Sabtu (21/7/2007).

Menyikapi hal itu, bukannya malu atau langsung menjauh namun mantan personel Cool Colors ini malah menghampiri pria itu dan kemudian mengajaknya untuk jalan bersama-sama mengelilingi mall. Ia justru bangga, karena menurutnya baju yang ia pilih itu sangat bagus hingga orang lain memilihnya juga.

Berbicara mengenai pakaian, Surya mengaku memiliki kesulitan untuk mencari yang sesuai dengan ukuran badannya. Bahkan bukan hanya pakaian tapi juga sepatu. Sadar akan kesulitannya tersebut, mantan suami Dewi Sandra ini mencari tempat berbelanja yang menyediakan pakaian dan sepatu yang sesuai.

“Gua paling suka ke Bandung, karena buat gua selain atmosfirnya menyenangkan serta seru banget, ukuran baju dan sepatu yang sesuai sama gua cuma ada di Factory Outlet,” imbuh pria yang sangat mengidolakan Superman ini.

Selengkapnya...

Selecting effective keywords

Keywords are the words and phrases that people will search for when trying to find your type of product or service in a search engine. Selecting effective keywords should be the first step for anyone planning to build a high ranking Web site. After all, it makes no sense obtaining a good search engine placement for keywords that rarely will be used by anyone.

But how are you supposed to know what keywords to optimize for? How can you figure out which keywords are the most popular among those looking to buy your product or read your site? What exactly are all those people typing into the search box?

Understanding keywords

Before you start to brainstorm your list of keywords and keyword phrases, it is important to understand in general how people uses keywords. Here is one place where you can "spy" on people as they enter keywords into a real search engine: Meta Spy

Do you notice any patterns? One important ting to notice is that most people don't just enter single keywords into the search box. They are using keyword phrases. Instead of just searching for single keywords like "books", most people will search for keyword phrases like "search engine books", search engine optimization books" or "books about search engine placement".
This is important to understand when you select keywords for your own site. Keyword combinations can be much more effective compared to single keywords.

Finding effective keywords

Wordtracker automatically generates the best possible keyword list for you -- without you ever having to lift so much as a finger. OK, OK, you have to lift a finger... Wordtracker does more than just brainstorming. It will tell you which keywords are the most profitable -- which is where you should focus your efforts! Profitable keywords are terms that are popular (or are in fairly high demand) but return few listings at the search engines (low supply). It is the keywords with the greatest combination of high demand and low supply that will generate the best profits.

But we will also have a look at how you can do the same job manually:

Brainstorming: Sit down with pen and paper for a couple of minutes and write down all the keywords you can come up with, related to the subject of your site or the product you are going to sell. Do not be critical at this stage. Write down all the words you can think of.

Asking other people: Ask your family, friends and colleges what kind of words they would use to describe your product or the subject of your site. They will usually be able to come up with keywords and phrases you have missed.

Log file analysis: Site stats and logs will tell you exactly what keywords already has been used to find your site. Combine those words into new keyword phrases.

Surfing the Internet: Have a look at the meta keywords and text used in other Websites about the same subject. However, don't be tempted to paste the code from other sites straight into your page. You do not know if the other Webmaster has done proper research before adding his keywords. Use this method for keyword research only.

Search suggestions: When you are typing popular keywords into the search engines, you will often get suggestions for keywords or key- phrases related to the original word. Not all search engines have this feature, but some do.

Going regional: Keep in mind that people from other parts of the country, or from other English speaking countries, might be using different keywords. How are people from UK and Australia saying things? Using such additional keywords might open a completely new market for your site. If your site deals with a particular region only, remember to include that in your keywords list. Many people refine their searches by inserting regional keywords like "UK search engine optimization" versus searching for the more general phrase "search engine optimization."

Catching misspellings: Some keywords are frequently misspelled. If you can find a popular misspelling, you have a very easily ranked keyword that will bring a lot of traffic.

Using a thesaurus: This is an excellent tool for coming up with more keywords similar to those you have already found by your own. Try the Merriam-Webster's thesaurus.

Making keyword phrases

Combining single keywords into keyword phrases will make it easier to rank well, and you will be targeting your visitors more effectively. Very general and highly competitive single keywords will most likely not make it into a top #10 search engine placement.

If you have a list of single keyword, try linking some of the keywords together into phrases. The more specific your keyword phrases are, the better the chances that people who search for them will actually benefit from your site's content.

Keywords not to use

Do not worry about optimizing for ALL CAPS versions of your keywords. Most people are using lowercase only when searching, and most search engines will treat uppercase and lowercase keywords the same.

Superlatives are another group of keywords usually not suitable for our purpose. Millions of competing pages are all claiming that their sites are "best," "amazing," "fantastic," "awesome," etc. However, nobody actually searches for such keywords.

And there is one more thing... "stop words". "These are common words that are usually ignored by search engines (like: a, an, and, for, the, of, that, it, to, if, you, etc). If your keyword phrase contains "stop words", it will be ignored.
How can you tell if a word is a stop word? Go to a search engine and search for this particular keyword. If the search engine tells you "no document matches your query," (or something similar) you will know this is a stop word for that particular engine.

Using a keyword spreadsheet

If you have carefully followed all the steps outlined above you have managed to find a huge list of keywords for your site. But chances are you still have too many keywords. It's time for the final keyword optimization step.

When selecting keywords the trick is finding the balance between keyword demand and keyword supply. A spreadsheet is an excellent tool for this:
Your keywords Demand Supply

(These numbers are not accurate - For illustration purposes only)
flowers 1.000.000 100.000.000
cheap flowers 500.000 5.000
flower 500 1000

Enter all your selected keywords into the first column, one by one. In the next column, enter how many times that particular keyword has been searched for. Then you can easily see what keywords are in highest demand (most popular). In the last column you must write down how many other Websites you will have to compete with for this keyword.

To figure out the supply of Web sites for a particular keyword, go to a search engine like Google and perform a search for your keyword in quotes: "my keyword". The results will show exactly how many other sites are containing this keyword. This is the number of sites you will have to compete with for a top position.

Now have a good look at your spreadsheet and try to spot any keywords in high demand (lots of people are searching for those keywords), but in low supply (few sites are containing the keywords). These are the keywords that most likely will give you the best chance of success.

Selengkapnya...

Skandal Ferrari-McLaren

Fernando Alonso_GP AS_hl.jpgWOKING – Sesuai sumber di Spanyol, Fernando Alonso bebas meninggalkan Tim McLaren Mercedes. Itu jika McLaren dinyatakan bersalah dalam skandal spionase yang juga melibatkan Tim Scuderia Ferrari.

Masih terjadi perdebatan mengenai pihak-pihak yang bersalah dalam kasus ini. As.com memprediksi McLaren bisa terbanting dengan hukuman denda, pengurangan maupun penghapusan poin: konstruktor serta pembalap.

Padahal, duet pembalap McLaren: Alonso serta Lewis Hamilton sedang memimpin klasemen sementara. Atas dasar itulah, Alonso bisa bebas meninggalkan McLaren. Pasalnya, imej bagusnya sebagai pembalap dua kali juara dunia telah dirusak McLaren.

Bos McLaren Ron Dennis bebrepa kali mengklaim bahwa tak ada paket Ferrari yang diadopsi ke mobil MP4-22. Tapi, rumor berhembus jika Federasi Otomotif Internasional (FIA) punya cukup bukti bahwa tim asal Woking itu menggunakan beberapa panduan dari dokumen itu.

Skandal Ferrari-McLaren terungkap karena penerimaan 700 dokumen rahasia dari Nigel Stepney, Mantan Direktur Teknik Ferrari kepada Mike Coughlan, Mantan Desainer McLaren.

Selengkapnya...

Jumat, Juli 20, 2007

Secrets Of Free Blogging Web Site

For first time bloggers, a free blogging web site is a great way to get started in the blogosphere. Popular blogging web sites like blogger and eponym allow users to set up and host a blog without paying any fees at all.

This encourages people to start blogging, because the fact that one of these sites can provide you with all of the tools that you need to get your blog up and running without spending any money means that you have nothing to lose by starting a blog. The fact that it is so easy to find a way to blog for free is one of the reasons why so many people who have never had any other kind of web presence before find themselves drawn to blogging.

By signing up with a free blogging web site, you may find it easier to get listed in search engines that you would if you were starting your own blog from scratch. For example, google runs the free blog hosting site blogspot and crawls its pages very often looking for updates, so if you have your site hosted by blogspot you are almost guaranteed to be listed on google’s blog search engine.

This easy access to search engines can take some of the work out of promoting your blog, and can help you gain a following with a minimum of marketing effort. Setting up AdSense on your Blog is a breeze, and you can complete the whole process in less then an hour. Free $97 Adsense Secret Ebook on Adsense Tips here.

If your blog attracts a large readership, you may want to consider moving your site. Many people feel that being hosted by a free blogging web site gives a blog a kind of amateur flavor that is fine for a new member of the blogosphere, but is not appropriate for a high-profile blog.

Having your own domain can help you make your blog feel professional, and finding a company that will host your domain is not difficult or expensive. Once your blog takes off, you will probably be able to sell enough advertising space to be able to afford to buy a domain and pay for a hosting package, and still have money left over. However, it does not make sense in most cases to invest in these glossy luxuries before you have a sizable readership.

Starting your blog on a free blogging web site is a great way to build a following before you spend any money on your blog. If and when your blog becomes popular and you are ready to take the next step and purchase your own domain, your readers will follow you to your new home. Most people can make their AdSense Blog sites veritable cash cows! Free $97 Secret Adsense Book at http://www.honestreview.info/adsense/index.html

The fact that it is possible to use a free blog host like blogspost, blogger, or eponym as a kind of incubator for your blog is great news for bloggers everywhere.

This entry was posted on Wednesday, June 6th, 2007 at 8:49 pm and is filed under Computer Dan IT. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Selengkapnya...

Joomla! 1.5 Beta-2 — The Developers’ and Designers’ Revolution!

Joomla! proudly presents its most important coding adrenaline surge to the development and designer community. With today’s release of Joomla! 1.5 Beta-2, we’re shifting gears into turbo mode; an entirely re-factored core, internationalisation, FTP layering, next-generation API and framework that’s so flexible and powerful and, of course, a designer’s dream for unparalleled templating flexibility.

The Red Barchetta — Beta-2

We’ve dubbed Beta-2 ‘Red Barchetta’, in keeping with the spirit of freedom, power, simplicity and flexibility unknown in an Open Source framework. Besides Red Barchetta conjuring up triumph through coding revolution, this baby provides developers and designers with unequaled tools. This makes Joomla! 1.5 Beta-2 the ultimate enabler for your projects. Now is the time for you to take it for a serious drive to help our team refine the software for our release candidate goals. It’s also probably the best time for you to start learning the nuances of the new system to enable you to migrate your extensions and templates to the next generation CMS.
How you can Fuel the Red Barchetta?

Thowing real energy at 1.5 by jumping into the codebase — making your current extenstions and templates compatible, creating new extensions, new templates and making use of all the wonderful features in 1.5. Joomla! 1.5 Beta-2 is feature complete so dive in under the hood and lets see what you can create. There never has been a better time to get motivated as this is the last beta prior to release candidate.
What’s the best way community users can contribute?

While our primary focus on this release is for developers and designers, if users have questions or want to report a bug, our forum is the place to be. We want to move forward to the release candidate as soon as possible. For this it is important to be as specific as you can be if you file a bug report, and before you file a report please take the time to check whether this problem has been reported before.
What is the difference between a beta and a release candidate?

The difference between a beta version and a release candidate is best described in terms of code maturity. A beta version is not considered to be ready for production sites. With a release candidate out the development workgroup says that they are almost done, and consider it production ready.

Why should I use Joomla! 1.5?

With Joomla! 1.5 the Joomla! project really starts firing on all cylinders. The difference between our current 1.0.12 and the forthcoming 1.5 Beta-2 are not easy to describe, but in essence Joomla! 1.0.x was based upon the Mambo codebase, whereas Joomla! 1.5 has been completely rewritten from scratch. Joomla! 1.0.x was written with “freedom of use” in mind; with Joomla! 1.5 we expanded on this and added “ease of use”. This all sounds very nice, but what does it mean? Freedom of use refers to the unlimited possibilities you have when building web-sites, and with ease of use we have tried to make life simpler for the end user, the web administrator and of course the third party developers.
How do 3PD developers get to learn how to develop for 1.5?

This is the moment you all have been waiting for to dive into Joomla! 1.5 and discover the new framework. The code is fully feature complete and feedback from early adopters has been very positive. If you’re interested in developing extensions on the new Joomla! Framework this is the time to jump on board!

Developer Resources:

* Developer Network Wiki
* Joomla! 1.5 API Reference


Where do I find information on templating for Joomla! 1.5?

Before we point to an excellent piece of documentation it is important to realise that all templates for Joomla! 1.0.x can be used in Joomla! 1.5. A lot of features have been added to the templating system in Joomla! 1.5, but all 1.0.x templates can be used within Joomla! 1.5. There are several resources that describe the new template features, a great resource is the template tutorial and of course the BEEZ template that we included in Beta-2.
The Red Barchetta

And the Red Barchetta? A catchy code name for Beta-2 with a hint of metaphor about open source.

The “Red Barchetta” is a futuristic song about a wise uncle who keeps a Red Barchetta in his barn long after automobiles are outlawed (Before the Motor Law). A kid takes the car for a ride and ends up being chased by a Gleaming Alloy Air car. He outruns and ditches the law and returns to the barn, hides the car and goes off to dream about freedom with his uncle by the fireside. The Red Barchetta symbolises the spirit of freedom and freewill. Stories like this manifest in true open source spirit. But what has it to do with Joomla? Quite simply, we are one step closer to celebrating the new levels of freedom, by offering the second beta of Joomla!

Official Beta Testers For many of us, participating in open source is about as close as we’ll ever get to being revolutionaries. Go on, we dare you … jump in the Red Barchetta and take it for a serious spin. Be part of something that creates dramatic, wide-reaching change.

Let the revolution begin and show your spirit by displaying our Beta-2 Badges .
One More Thing …

We feel it’s fitting to pay tribute to ‘an old friend’, Joomla! 1.0+, whereby this video showcases some of the amazingly creative developers and designers who make Joomla! sing. A special thanks to Julian of Georgia Wonder for allowing us to use ‘Genius’ for this videocast.

Joomla! Beta-2 Tribute Videocast
Click here to play

This entry was posted on Friday, June 8th, 2007 at 7:51 pm and is filed under joomla. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.

Selengkapnya...

Your Website to Profit With the Best Affiliate Programs Available

The Internet is one of the most frequently used tools for communication today. There are over millions of people who log on to the Internet every single day. Besides, with the benefits that the Internet gives, who would not want to be a part of this information superhighway.
With the Internet, you can communicate with your family and friends through emails and instant messengers, you can purchase goods and services without leaving your own home, and the Internet is one of the most promising income generating tools that everyone can use today.

In the past, you needed products or services in order to make money through the Internet. Today however, you can make money through the Internet by using affiliate programs. This program will allow you to make a substantial amount of money out of your website and is a very good home business that you would want to get in to.

First of all, you need to know what an affiliate program is and how it works in order to fully understand how you can make some money out of it. Affiliate programs is like a joint venture where you or your website becomes a partner with another website that have already developed a product or service that they are already selling in the Internet. As a partner, your job is to direct the visitors of your website to your partner website and hope that they will purchase the products or services being offered. Your website will be like the company’s marketing arm, among several.

The company you plan on being affiliated to will be providing all the necessary tools that you need in order to start the affiliate program. They will be providing the links, and some companies will provide free e-books on how you can effectively earn from affiliate programs.

The best way to profit from your website through affiliate programs is by promoting your website in the Internet. The key to success in affiliate programs is targeted traffic. This is why you should think of a product or service that you would want to promote and also a product or service that you are knowledgeable about. Think about your hobby. For example, if you like fixing cars, you want an affiliate program that promotes cars, or car parts.

In your website, you will then discuss about your hobby. Make some articles and post it in article publishing websites and also in your own site. Since your affiliate program is selling cars or car parts or even car accessories, the traffic you generate in your website will have a greater chance of clicking the link or banner of your affiliate website and buy from that website. You will then earn a commission out of the sold product.

As you can see, it is very simple to earn money from affiliate programs. However, when you are just starting out in the business of affiliate programs, you have to work hard to establish your reputation as an expert in the product or service you are promoting. The best way to do this is publish your articles about a particular product frequently. This will build your reputation in the Internet and soon, you will get that targeted traffic you have been always wanting. It is also a good idea to update your website once in a while (once a week) with tips and tricks on a particular product.

The best thing about affiliate programs is that you do not have to be in front of your computer 24 hours a day 7 days a week. All you need is a few minutes of checking up in your website and also check out your earnings in your affiliate programs. Always remember to update your website frequently in order to keep your readers and keep them buying from your affiliate website.

This entry was posted on Monday, June 11th, 2007 at 7:27 pm and is filed under Web Development. You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response, or trackback from your own site.
Leave a Reply

You must be logged in to post a comment.

Selengkapnya...

Fibrilasi Atrium, Risiko Stroke Mengintai

JANTUNG normal berdenyut 60–100 kali per menit dengan irama teratur. Ini bisa diketahui dengan menyentuh urat nadi pada pergelangan tangan.

Irama jantung terkadang ada yang tidak mengikuti irama normalnya, berdetak lebih cepat, disertai sesak napas, pusing, letih, ataupun nyeri dada. Denyut nadi di bawah 60–100 per menit pun perlu diwaspadai juga. Sebab, bisa jadi merupakan indikasi gangguan fibrilasi atrium (FA).


FA merupakan salah satu gangguan irama jantung yang paling sering ditemukan. Diagnosis penyakit ini mudah diketahui bahkan dengan pemeriksaan fisik sederhana oleh seorang dokter umum sekalipun. Gangguan ini timbul karena adanya impuls listrik sangat cepat dan tak teratur.

Akibatnya, denyut atrium maupun ventrikel (bilik utama jantung) menjadi sangat cepat dan tidak teratur. Para lanjut usia yang berusia 65–85 tahun merupakan kelompok berisiko tinggi fibrilasi atrium. Pada usia ini biasanya penyakit-penyakit, seperti diabetes melitus, hipertensi, jantung koroner, kelainan katup jantung, gagal jantung sering dijumpai. Penyakit-penyakit tersebut merupakan salah satu faktor penyebab terjadinya gangguan irama jantung.

”Untuk penyebab dasarnya sendiri hingga saat ini belum bisa dipastikan,” ungkap Ketua Divisi Kardiologi Departemen Ilmu Penyakit Dalam RSCM Prof Dr Sjaharuddin Harun SpPD di Jakarta, baru-baru ini.

Hal senada diungkapkan mantan Direktur Pusat Jantung Nasional Dr Aulia Sani SpJP. Dia mengungkapkan, salah satu penyebab fibrilasi atrium adalah adanya pembesaran pada serambi kiri ataupun serambi kanan sehingga mengganggu hantaran dari serambi ke bilik.

”Mereka yang menderita gangguan irama jantung biasanya memiliki penyakit yang sudah menahun. Sebut saja gangguan jantung atau hipertensi. Penyakit tersebut bisa menyebabkan gangguan irama jantung karena semakin lama, atrium semakin membesar,” tuturnya.

Ada beberapa terapi yang bisa dilakukan pasien FA, meliputi kendali irama atau usaha mengembalikan irama jantung ke irama normal, penggunaan obat-obatan, seperti sotalol, disopiramid, amiodaron, yang saat ini paling banyak digunakan. Selain itu, ada kendali laju. Terapi ini merupakan kendali usaha untuk mengendalikan laju irama jantung yang tidak normal tersebut agar berada di antara 60–100 kali per menit. Selain itu, bisa dengan obat-obatan dan tanpa obat-obatan.

”Selain terapi tersebut, hal yang bisa dilakukan adalah mengobati penyakit dasarnya dulu. Kalau dia menderita hipertensi, ya hipertensinya dulu yang diobati,” tandas Aulia. Risiko yang ditimbulkan dari gangguan irama jantung ini adalah stroke tromboemboli. Pasien dengan gangguan irama jantung FA memiliki kejadian stroke lima kali lipat dibandingkan mereka yang memiliki irama jantung normal.

”Akibatnya, terjadi perlambatan aliran darah di atrium kiri (serambi kiri jantung), yang dapat menyebabkan terbentuknya bekuan darah (trombus) di rongga jantung,” paparnya. Jika aliran darah melambat, otomatis darah yang mengalir ke otak akan terhambat sehingga memicu terjadinya stroke.

Kaum Muda pun Bisa

Hasil penelitian yang dilakukan di negara-negara Barat menunjukkan, gangguan irama jantung diderita 2,1 persen pria dan 1,7 persen wanita. Sementara data di ruang perawatan koroner intensif (ICCU) RSUPN Dr Cipto Mangunkusumo (RSCM) terdapat 6,72 persen pasien yang mengalami FA, di antaranya 4,72 persen dengan infark miokard akut (serangan jantung).

Secara umum, FA memang rentan dialami oleh para usia lanjut. Namun, bukan berarti kaum muda terhindar dari gangguan ini. Apalagi jika sering merasa berdebar-debar, disertai pusing, rasa letih, maupun nyeri dada.

”Ya, usia muda pun bisa terkena fibrilasi atrium. Jika memang katupnya sudah rusak. Atau dari kecil dia sudah memiliki penyakit jantung,” ungkap Staf Rehabilitasi Pusat Jantung Nasional/RS Jantung Harapan Kita Dr Aulia Sani SpJP.

Dia menambahkan, biasanya, penderita FA berusia muda dipicu oleh faktor stres, rokok, maupun alkohol. Hanya yang perlu diingat, tidak semua debaran jantung bisa dikatakan menderita gangguan irama jantung. ”Kalau dia berdebar-debar karena kaget, itu hal yang wajar. Denyut jantung menjadi lebih cepat dari biasanya, nanti juga akan kembali normal lagi,” tandasnya.

Selengkapnya...