,
Get paid To Promote at any Location

free counters

  • Web
  • Remo xp
  • cahyo. Powered by Blogger.
    RSS
    Showing posts with label Anti Virus. Show all posts
    Showing posts with label Anti Virus. Show all posts

    Microsoft Security Essentials 2.0.657.0

    License:                                                                                      
    Free
    Language:
    English
    Developer:
    Microsoft | More programs (155) 
    OS:
    WinXP/Vista/7
                                                                                                                                     download


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Cara membuat AntiVirus

    Sekarang kehadiran para virus maker (–selanjutnya disingkat jadi VM
    saja) lokal telah membuat gerah para user komputer tanah air. Bisa
    dibayangkan bila dari sekian banyak virus lokal tidak satu-dua yang
    menghancurkan data (terutama bagi file office; word, excel, dll…). Bagi
    para vendor Anti Virus (–selanjutnya disingkat menjadi AV saja)
    fenomena ini adalah lahan bisnis untuk produk mereka. Sebut saja
    NORMAN, yang kini men-support perusahaan konsultan virus lokal
    (–VAKSIN.COM) , Symantec, McAffe, NOD32, dan sebagainya. Dengan
    menawarkan update definisi software AV tercepat, engine scanner paling
    sensitif, dan lain-lain merupakan kiat untuk memancing para korban
    virus membeli dan menggunakan software AV mereka. Bagi penulis sendiri
    hal ini memang agak memberatkan mengingat update file definisi atau
    engine AV tsb haruslah melalui koneksi internet. Lalu bagaimana yang
    tidak mempunyai akses sama sekali? Konsekuensinya iyalah tertinggal
    dalam hal pengenalan varian virus baru yang pada ujung-ujungnya membuat
    AV yang sudah terinstall bagai 'Macan Ompong'. Kalau kita membuat AV
    sendiri bagaimana? dengan database definisi yang bisa diupdate oleh
    kita bahkan dapat saling tukar dengan teman? Bisa saja, dengan syarat
    mau mempelajari sedikit teknik pemograman.

    Pertama kita harus mengerti bagaimana cara kerja
    sebuah AV sederhana, pada dasarnya sebuah software AV mempunyai
    komponen-komponen :


    1. Engine scanner, ini merupakan komponen utama AV
    dalam mengenali sebuah pattern virus. Engine ini dapat dikelompokkan
    menjadi statis dan dinamis. Statis dalam hal ini dapat disebut menjadi
    spesifik terhadap pattern tertentu dari sebuah file virus. Checksum
    merupakan salah satu contoh dari engine statis ini. Dinamis dalam
    artian dia mengenali perilaku 'umum' sebuah virus. Heuristic menjadi
    salah satu contohnya.

    2. Database definition, menjadi sebuah referensi dari sebuah pattern
    file virus. Engine statis sangat bergantung kepada komponen ini.

    3. Decompress atau unpacking engine, khusus untuk pengecekan file-file
    yang terkompresi (*.rar, *.zip, dll) atau kompresi atau packing untuk
    file PE seperti UPX, MeW , dll.

    Tidak jarang hasil dari pengecekan terhadap file
    suspect virus menghasilkan false-positive bahkan false-negative (–
    false-positive berarti file yang bersih dianggap thread oleh AV, dan
    false-negative berarti file yang 100% thread akan dianggap bersih).
    Semua itu dapat diakibatkan oleh ketidak-sempurnaan dari engine scanner
    itu sendiri. Misal

    pada contoh kasus Engine String scanner (–Engine scanner yang
    menyeleksi string-string dari file text-based), bila diterapkan rule 3
    out of 5 (– bila AV menemukan 3 dari daftar 5 string kategori
    malicious) maka AV akan memberikan bahwa file terindikasi sebuah thread
    yang positif. Padahal file tsb nyatanya tidak menimbulkan efek
    berbahaya bila dijalankan atau dieksekusi. Kesalahan scanning macam ini
    lazim ditemukan untuk file-file *.VBS, *.HTML, dll. Untuk penggunaan
    engine checksum sangat banyak ditemui di beberapa software AV lokal.
    Checksum yang lazim digunakan diantaranya CRC16, CRC32, MD5, dll.
    Dikarenakan mudah untuk diimplementasikan. Engine ini sendiri bukannya
    tanpa cacat, Checksum bekerja dengan memproses byte demi byte dari
    sebuah file dengan sebuah algoritma tertenu (– tergantung dari jenis
    checksum yang digunakan) sehingga menghasilkan sebuah format tertentu
    dari file tsb. Contoh checksum menggunakan CRC32 dan MD5 :

    * calCrc = CRC32(file_name_and_path)

    * calMD5 = MD5(file_name_and_path)

    Maka isi dari string calCrc adalah 7AF9E376,
    sedangkan untuk MD5nya adalah 529CA8050A00180790CF88B63468826A. Perlu
    diketahui bila virus menerapkan rutin yang mengubah byte tertentu dari
    badan virus tsb setiap kali maka penggunaan engine checksum ini akan
    kurang optimal karena bila 1 byte berubah dari file maka checksum juga
    akan berubah.

    Mari kita belajar membuat sebuah AV sederhana, yang diperlukan :


    1. Software Visual Basic 6.0

    2. Sedikit pemahaman akan pemograman Visual Basic 6.0

    3. Sampel file bersih atau virus (– opsional)

    First#

    Sekarang kita akan belajar membuat sebuah rutin sederhana untuk :

    - Memilih file yang akan dicek

    - Membuka file tersebut dalam mode binary

    - Memproses byte demi byte untuk menghasilkan Checksum

    Buka MS-Visual Basic 6.0 anda, lalu buatlah sebuah
    class module dan Form dengan menambahkan sebuah objek Textbox,
    CommonDialog dan Command Button. (Objek CommonDialog dapat ditambahkan
    dengan memilih Project -> COmponent atau Ctrl-T dan memilih
    Microsoft Common Dialog Control 6.0) Ketikkan kode berikut pada class
    module (kita beri nama class module tsb clsCrc) :


    ================= START HERE ====================

    Private crcTable(0 To 255) As Long 'crc32

    Public Function CRC32(ByRef bArrayIn() As Byte, ByVal lLen As Long, Optional ByVal lcrc As Long = 0) As Long

    'bArrayIn adalah array byte dari file yang dibaca, lLen adalah ukuran atau size file

    Dim lCurPos As Long 'Current position untuk iterasi proses array bArrayIn

    Dim lTemp As Long 'variabel temp hasil perhitungan

    If lLen = 0 Then Exit Function 'keluar fungsi apabila ukuran file = 0

    lTemp = lcrc Xor &HFFFFFFFF


    For lCurPos = 0 To lLen

    lTemp = (((lTemp And &HFFFFFF00) \\ &H100) And &HFFFFFF) Xor (crcTable((lTemp And 255) Xor bArrayIn(lCurPos)))

    Next lCurPos

    CRC32 = lTemp Xor &HFFFFFFFF

    End Function

    Private Function BuildTable() As Boolean

    Dim i As Long, x As Long, crc As Long


    Const Limit = &HEDB88320

    For i = 0 To 255

    crc = i

    For x = 0 To 7

    If crc And 1 Then

    crc = (((crc And &HFFFFFFFE) \\ 2) And &H7FFFFFFF) Xor Limit

    Else


    crc = ((crc And &HFFFFFFFE) \\ 2) And &H7FFFFFFF

    End If

    Next x

    crcTable(i) = crc

    Next i

    End Function

    Private Sub Class_Initialize()

    BuildTable


    End Sub

    ================= END HERE ====================

    Lalu ketikkan kode berikut dalam event Command1_Click :

    ================= START HERE ====================

    Dim namaFileBuka As String, HasilCrc As String

    Dim CCrc As New clsCrc 'bikin objek baru dari class ClsCrc

    Dim calCrc As Long

    Dim tmp() As Byte 'array buat file yang dibaca

    Private Sub Command1_Click()


    CommonDialog1.CancelError = True 'error bila user mengklik cancel pada CommonDialog

    CommonDialog1.DialogTitle = "Baca File" 'Caption commondialog

    On Error GoTo erorhandle 'label error handle

    CommonDialog1.ShowOpen

    namafilbuka = CommonDialog1.FileName

    Open namafilbuka For Binary Access Read As #1 'buka file yang dipilih dengan akses baca pada mode binary

    ReDim tmp(LOF(1) - 1) As Byte 'deklarasi ulang untuk array, # Bugs Fixed #

    Get #1, , tmp()

    Close #1


    calCrc = UBound(tmp) 'mengambil ukuran file dari array

    calCrc = CCrc.CRC32(tmp, calCrc) 'hitung CRC

    HasilCrc = Hex(calCrc) 'diubah ke format hexadesimal, karena hasil perhitungan dari class CRC masih berupa numeric

    Text1.Text = HasilCrc 'tampilkan hasilnya

    Exit Sub

    erorhandle:

    If Err.Number <> 32755 Then MsgBox Err.Description 'error number
    32755 dalah bila user mengklik tombol cancel pada saat memilih file

    ================= END HERE ====================


    COba anda jalankan program diatas dengan memencet
    tombol F5, lalu klik Command1 untuk memilih dan membuka file. Maka
    program akan menampilkan CRC32nya.

    Second#

    Kode diatas dapat kita buat menjadi sebuah rutin pengecekan file
    suspect virus dengan antara membandingkan hasil CRC32nya dan database
    CRC kita sendiri. Algoritmanya adalah :

    - Memilih file yang akan dicek

    - Membuka file tersebut dalam mode binary

    - Memproses byte demi byte untuk menghasilkan Checksum

    - Buka file database

    - Ambil isi file baris demi baris

    - Samakan Checksum hasil perhitungan dengan checksum dari file


    Format file database dapat kita tentukan sendiri, misal :

    - FluBurung.A=ABCDEFGH

    - Diary.A=12345678

    Dimana FluBurung.A adalah nama virus dan ABCDEFGH dalah Crc32nya. Jika
    kita mempunyai format file seperti diatas, maka kita perlu membaca file
    secara sekuensial per baris serta memisahkan antara nama virus dan
    Crc32nya. Dalam hal ini yang menjadi pemisah adalah karakter '='.

    Buat 1 module baru (– diberi nama module1) lalu isi dengan kode :

    ================= START HERE ====================

    Public namaVirus As String, CrcVirus As String
    'deklarasi variabel global untuk nama dan CRC virus Public pathExe as
    String 'deklarasi variabel penyimpan lokasi file EXE AV kita

    Public Function cariDatabase(Crc As String, namaFileDB As String) As Boolean

    Dim lineStr As String, tmp() As String 'variabel penampung untuk isi file


    Open namaFileDB For Input As #1 'buka file dengan mode input

    Do

    Line Input #1, lineStr

    tmp = Split(lineStr, "=") 'pisahkan isi file bedasarkan pemisah karakter '='

    namaVirus = tmp(0) 'masukkan namavirus ke variabel dari array

    CrcVirus = tmp(1) 'masukkan Crcvirus ke variabel dari array

    If CrcVirus = Crc Then 'bila CRC perhitungan cocok/match dengan database

    cariDatabase = True 'kembalikan nilai TRUE

    Exit Do 'keluar dari perulangan


    End If

    Loop Until EOF(1)

    Close #1

    End Function

    ================= END HERE ====================

    Lalu tambahkan 1 objek baru kedalam Form, yaitu
    Command button2. lalu ketikkan listing kode berikut kedalam event
    Command2_Click :

    ================= START HERE ====================

    If Len(App.Path) <= 3 Then 'bila direktori kita adalah root direktori


    pathEXE = App.Path

    Else

    pathEXE = App.Path & "\\"

    End If

    CommonDialog1.CancelError = True 'error bila user mengklik cancel pada CommonDialog

    CommonDialog1.DialogTitle = "Baca File" 'Caption commondialog

    On Error GoTo erorhandle 'label error handle

    CommonDialog1.ShowOpen


    namafilbuka = CommonDialog1.FileName

    Open namafilbuka For Binary Access Read As #1 'buka file yang dipilih dengan akses baca pada mode binary

    ReDim tmp(LOF(1) - 1) As Byte 'deklarasi ulang untuk array # Bugs Fixed #

    Get #1, , tmp()

    Close #1

    calCrc = UBound(tmp) 'mengambil ukuran file dari array

    calCrc = CCrc.CRC32(tmp, calCrc) 'hitung CRC

    HasilCrc = Hex(calCrc) 'diubah ke format hexadesimal, karena hasil perhitungan dari class CRC masih berupa numeric

    If cariDatabase(HasilCrc, pathEXE & "DB.txt") Then 'bila fungsi bernilai TRUE


    MsgBox "Virus ditemukan : " & namaVirus 'tampilkan message Box

    End If

    Exit Sub

    erorhandle:

    If Err.Number <> 32755 Then MsgBox Err.Description 'error number
    32755 dalah bila user mengklik tombol cancel pada saat memilih file

    ================= END HERE ====================

    Fitur AV sederhana ini dapat ditambahkan dengan
    fitur process scanner, akses registry, real-time protection (RTP) dan
    lain lain. Untuk process scanner pada dasarnya adalah teknik enumerasi
    seluruh proses yang sedang berjalan pada Sistem Operasi, lalu mencari
    letak atau lokasi file dan melakukan proses scanning. Fitur akses
    registry memungkinkan kita untuk mengedit secara langsung registry
    windows apabila akses terhadap registry (–Regedit) diblok oleh virus.
    Sedangkan fitur RTP memungkinkan AV kita berjalan secara simultan
    dengan windows explorer untuk mengscan direktori atau file yang sedang
    kita browse atau lihat. Untuk ketiga fitur lanjutan ini akan dibahas
    pada artikel selanjutnya.


    Kesimpulan#

    Tidak harus membeli software AV yang mahal untuk menjaga komputer kita
    dari ancaman virus, kita bisa membuatnya sendiri dengan fitur-fitur
    yang tak kalah bagusnya. Memang terdapat ketidaksempurnaan dalam AV
    buatan sendiri ini, tetapi setidaknya dapat dijadikan pencegah dari
    infeksi virus komputer yang semakin merajalela. Software AV sederhana
    ini dilengkapi oleh engine scanner statis dan database definisi. Tidak
    tertutup kemungkinan software AV ini ditingkatkan lebih advanced dalam
    hal engine scannernya.


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Avast Internet Security v5.0.396 Final

    avast internet, avast 5Kemarin saya baru saja menulis tentang Avast Internet Security 5.0.377 With Key. Tetapi ketika di jalankan atau sehabis menginstal Avast Internet Security 5.0.377 komputer jadi terasa lemot dan suka hang. Setelah saya selidiki, ternyata bukan saya aja yang mengalami hal seperti itu, hampir semua pengguna avast versi 5.0.377 pun mengalaminya. Solusinya bagaimana??

    Untuk mengatasi masalah tersebut, pihak avast telah mengupdate Avast Internet Security 5.0.377 menjadi Avast Internet Security v5.0.396 Final. Setelah saya lakukan uji coba, ternyata Avast Internet Security v5.0.396 Final ini dapat berjalan dengan normal dan lebih stabil untuk digunakan. Untuk key nya, silahkan gunakan key buat Avast Internet Security 5.0.377.

    Download Avast Internet Security v5.0.396


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Avira Antivir Personal 10 Free Edition

    Avira Antivirus baru saja merilis versi terbaru untuk produknya. peluncuran resmi pada tanggal 23 maret 2010 tersebut menamakan produk terbarunya dengan nama Avira 10 yang disebut-sebut menjadi penerus Avira 9 yang telah lama beredar. seperti biasa Avira Antivirus menbagi produknya menjadi tiga macam yaitu Antivir Premium, Antivir Security Suite, dan tentunya Avira Antivir Personal – Free Antivirus versi 10 yang menjadi versi
    gratisannya.
    Avira Antivir 10 ini menyertakan beberapa fitur baru dibanding pendahulunya. Berdasarkan berbagai test antivirus, Avira Antivir merupakan salah satu antivirus yang relatif cepat dan tidak banyak memakan memori. Bahkan dalam hasil uji anti virus oleh AV-Comparatives disebutkan baha avira menjadi salah satu Antivirus terbaik.

    Beberapa fitur baru Avira Antivir 10 adalah sebagai berikut :

    • Proteksi berdasarkan tingkah laku file/virus dengan Antivir ProActiv ( di versi Premium dan Professional)

    • Peningkatan keamanan, dengan memanfaatkan komunitas penggunanya yang mencapai 100 juta

    • Perbaikan Umum data registry dan file yang terinfeksi

    • Express Installation, antarmuka pengguna transparant, dan informasi virus dengan fitur one-click removal

    • Fitur Parental Control untuk Avira Antivir Suite



    Fitur baru Generic-repair mode disertakan dalam versi gratis, meskipun fitur ini lebih mengarah pada bagaimana keputusan yang akan kita ambil ketika ada ancaman yang ditemukan. Proses unpacking intallasi versi baru ini lebih cepat dan tidak perlu restart komputer sesudah installasi selesai (kecuali upgrade dari versi sebelumnya).

    Pengamanan terhadap file-file avira dari pengubahan yang mungkin dilakukan virus juga ditingkatkan. Jika komputer anda membutuhkan antivirus gratis yang bagus (terutama dari segi kemampuan deteksi virus dan penggunaan memori yang ringan), maka Avira Antivir bisa menjadi salah satu pilihan terbaik.

    NB :
    Untuk versi premiumnya, ditunggu aja yah,, okei

    Download Avira Antivirus Personal (Windows : 40,32 MB)
    Download Avira Antivirus Personal (Linux : 54,46 MB)


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    BitDefender Internet Security 2010 13.0






    BitDefender Internet Security 2010 13.0 merupakan sebuah tool yang mempunyai fungsi untuk melindungi komputer/notebook kita dari ancaman-ancaman pihak yang tidak bertanggung jawab, seperti virus, hacker dan spam, saat kita melakukan koneksi internet (browsing).


    Key features of BitDefender Internet Security 2010 :

    Confidently download, share and open files from friends, family, co-workers - and even total strangers :
    • Protects against viruses and other malware using industry-leading technologyNEW
    • Scans all Web, e-mail and instant messaging traffic in real-time
    • Provides an unmatched detection rate of new threats based on two different proactive technologies
    • Blocks spyware programs that track your online activities
    Protect your identity: shop, bank, listen and watch, privately and securely:
    • Blocks web pages that attempt to steal your credit card data
    • Prevents personal information from leaking via e-mail, Web or instant messagingNEW
    Guard your files and conversations with top-of-the line encryption:
    • Instant Messaging Encryption keeps your conversations private on Yahoo! and MSN Messenger
    • File Vault securely stores personal information or sensitive files
    Connect securely to any network at home, at the office, or away:
    • The two-way firewall automatically secures your Internet connection wherever you are
    • Wi-Fi monitor helps prevent unauthorized access to your Wi-Fi network
    Protect your family and their computers:
    • Parental Control blocks access to inappropriate websites and e-mail
    • Limits kids’ access the Internet, games, etc. to specific times
    • Makes it easy for you to manage the security of your network from a single location

    Play safely, play seamlessly:
    • Reduces the system load and avoids requesting user
    • interaction during game play
    Get fine-tuned performance from your computer:
    • Optimized scanning technology skips safe files for better scan speed and lower system load
    • Antispam stops unwanted e-mail from reaching your Inbox
    • Laptop Mode prolongs battery life
    Let professionals solve any security issues:
    • Assistance with common issues built directly into the product
    • Free technical support for the entire duration of the product license
    NB : Link download ini belum sempet saya uji coba, karena keterbatasan koneksi yang saya miliki dan besarnya file mencapai 119 MB. 


      Download BitDefender Internet Security 2010 (via rapidshare)
     


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Free Avast Professional 4.8.1356

    ALWIL Software offers specialized security solutions designed for personal use on individual machines - either at home or in your office. These products combine high performance with exceptional ease of use and outstanding design. avast! antivirus has been awarded the highest "Advanced+" rating following tests carried out by AV-Comparatives.

    is a full-featured antivirus package designed exclusively for non-commercial & home use only. Both of these conditions should be met!
    avast 4 Professional Edition is a collection of award winning, high-end technologies that work in perfect synergy, having one common goal: to protect your system and valuable data against computer viruses, spyware and rootkits. It represents a best-in-class solution for any Windows-based workstation. This page demonstrates its most important features and provides links to further resources.

     


    Features:
    • Antivirus kernel
    • Anti-spyware built-in
    • Anti-rootkit built-in
    • Strong self-protection
    • Simple User Interface
    • Enhanced User Interface
    • Resident protection
    • Script Blocker (Professional Edition only)
    • P2P and IM Shields
    • Network Shield
    • Web Shield
    • Automatic updates
    • PUSH updates
    • Virus Chest
    • System integration
    • Command-line scanner
    • Integrated Virus Cleaner
    • Support for 64-bit Windows / Vista
    • Internationalization

      Download Now avast.exe


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Norton 2010

    Norton hari ini (8 Oktober 2009) merilis produk Norton 2010 yang diwakili oleh Norton Internet Security 2010 dan Norton AntiVirus 2010. Kedua produk tersebut telah menggunakan model keamanan baru yang diberi nama sandi Quorum. Untuk menjelaskan kedua produk Norton 2010 tersebut, Norton mendatangkan David Hall yang menjabat sebagai Regional Consumer Product Marketing Manager Symantec, Asia Pacific. Beliau ditemani oleh Albert Lay, Technical Consultant Symantec dan Effendy Ibrahim, Consumer Business Lead Asia South Region. Peluncuran Norton 2010 kali ini diadakan di Hotel Grand Hyatt, Jakarta.

    David Hall menjelaskan kalau Quorum sudah dikembangkan selama tiga tahun oleh para ahli Symantec. Dengan adanya teknologi baru ini, Norton 2010 mulai meninggalkan teknik signature yang selama ini telah digunakan pada produk sebelumnya. Hal tersebut karena para penjahat cyber cenderung menggunakan file-file yang selama ini dianggap baik oleh antivirus tertentu. Kemudian mereka memodifikasi beberapa bagian tertentu sehingga file tersebut berubah menjadi malware.

    Metode Quorum bergantung pada komunitas yang dimiliki oleh Symantec. Hal tersebut dimungkinkan karena antivirus ini menggunakan sistem reputasi. Quorum melacak berbagai file dan aplikasi serta sejumlah atribut seperti usia, sumber download, signature digital dan tingkat penyebaran mereka. Atribut-atribut ini kemudian dikombinasikan dengan menggunakan algoritma yang kompleks untuk menentukan reputasi dari file dan aplikasi yang bersangkutan. Apabila sebuah file dianggap memiliki reputasi yang buruk, maka program akan mencegah Anda untuk membuka file tersebut.

    Produk Norton 2010 saat ini telah tersedia di pasaran. Untuk NIS 2010 dibanderol dengan harga Rp 448.000 untuk lisensi tiga PC dan Rp 268.000 untuk lisensi satu PC. Sedangkan untuk Norton AntiVirus 2010 dibanderol Rp 388.000 untuk lisensi tiga PC dan Rp 218.000 untuk lisensi satu PC. Bagi Anda yang telah menggunakan produk Norton 2009 resmi (atau produk sebelumnya yang juga resmi) dan masih ada waktu aktivasi, Anda bisa menggunakan program upgrade gratis. Caranya Anda tinggal mengunjungi pusat Update Norton di http://updatecenter.norton.com.

    Download Norton Antivirus 2010 
    Download Norton Internet Security 2010 

    Note : Untuk patch/crack nya klik disini
     


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    McAfee Internet Security 2010 With Serial



    Semalam ada salah satu sobat blogger yang request McAfee Internet Security 2010, padahal baru aja saya mau nulis tentang tool McAfee Internet Security 2010 ini, eh udah ada yang request aja, jadi semangat kan nulisnya. Hehehe
    Oiya, buat sobat blogger yang request avast 5, di tunggu aja yah, soalnya saya belum dapet yang full versi nya. Masih susah,, huhu

    McAfee Internet Security 2010 merupakan salah satu program keamanan yang dapat melindungi komputer/notebook sobat blogger ketika sedang melakukan aktivitas online. McAfee Internet Security 2010 juga menyediakan kontrol buat orang tua untuk membatasi kegiatan anak-anak mereka sewaktu mereka berselancar di dunia maya.

    Features of McAfee Internet Security 2010:
    • Detects, blocks, and removes viruses, spyware, and adware
    • Enterprise-class Anti-spam
    • QuickScan
    • Web Site Safety Ratings
    • Identity Protection
    • Data Backup
    • Age Appropriate Searching
    • Parental Controls support for Google Chrome
    • Alerts you to websites that may try to steal your identity
    • Confidently use the Internet 24/7 knowing hackers can’t get access to your PCs
    • Simplified Set-up
    • Power optimization
    PERHATIAN : Sofware McAfee Internet Security 2010 ini belum saya uji coba, jadi saya tidak bertanggung jawab, apabila serial nya tidak aktif/tidak dapat di gunakan. Makasih,,

    UPDATE :
    Serial Number sudah di blacklist.

    UPDATE (mei 2010) : Link download file instalsi sudah saya hapus, karena file nya juga sudah di hapus oleh hotfile. Thx,,


    Download McAfee Internet Security 2010 Serial  


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Cara Memasukan Key Kaspersky

    banyaknya pertanyaan yang saya terima tentang bagaimana cara memasukan key kaspersky?? Terus terang saya sedikit lelah menjawabnya sob, ketika ada yang bertanya seperti ini di komentar, lalu saya ketik ulang jawabannya, dan begitu seterusnya.

    Saya harap, dengan di buatnya halaman ini, tidak ada lagi yang bertanya "Mas cara memasukan atau menggunakan key kaspersky gimana yah??" Jadi,, Buat yang sudah bertanya, silahkan di praktekan yah,, okeh

    Cara Memasukan Key Kaspersky :

    1. Sebelum mengaktivasi kaspersky menggunakan key file, pastikan koneksi internet sobat blogger dalam keadaan mati.
    2. Klik License (terletak pada bagian bawah).
    3. Klik Active New license
    4. klik option Activate trial license. Maka akan muncul pesar error.
    5. Kalau tidak muncul pesan error, masukan serial berikut : 44UEA-CYRAJ-NMAV3-YXX4V
    6. Klik Ok aja, lalu klik Browse
    7. Cari key file yang sudah sobat blogger download dan ekstrak
    8. Klik Next
    9. Finish.
    Selamat Mencoba..


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Download Vipre 4.0.3904 Antivirus Premium

    iihttp://www.sunbeltsoftware.com/Home-Home-Office/VIPRE-Antivirus-Premium/Definitions/ antivirus, mungkin bagi sebagian orang jarang yang tahu tentang antivirus yang satu ini. Padahal (menurut informasi yang saya baca) katanya ini merupakan antivirus teringan serta terbaik tahun 2010 ini. Saya pun jadi tertarik untuk mencoba Vipre 4.0.3904 Antivirus Premium ini. Cekidot,,

    Vipre 4.0.3904 Antivirus Premium sudah termasuk Antivirus, Antispyware, Firewall didalamnya merupakan antivirus yang memiliki kualitas yang sangat bagus. Hal ini berdasarkan hasil uji coba yang di adakan oleh pcantivirusreviews.com. Vipre antivirus juga sudah memperoleh sertifikat VB100 dan ICSA certified.
    Vipre 4.0.3904 Antivirus Premium
    Beberapa screenshot tentang kemampuan Vipre :
    test vipre
    vipre rating
    vipre test rating
    Cara aktivasi Vipre 4.0.3904 Antivirus Premium :

    • Buka vipre antivirus
    • Klik help, pilih registrasi.
    • Masukan key "00000-00000-00000-00000-00000" Klik Ok.
    • registrasi vipre
    • Maka akan muncul pop-up untuk memasukan registration password.
    • Jalankan keygen, masukan tahun kadaluarsanya, lalu klik generate password.
    • vipre keygen
    • Copy n paste password yang di hasilkan di kotak pop-up registration password.
    • Selesai
    Setelah kita berhasil mengaktivasi Vipre Antivirus, kini saatnya kita update database nya. Ketika saya menulis artikel ini, Definitions Vipre antivirus premium nya sudah mencapai versi 6887 dan di rilis pada Sep 17, 2010, 6:36AM.

    System Requirements :
    • At least an IBM Compatible 400MHZ computer with minimum 512MB RAM
    • At least 150MB of available free space on your hard drive
    • All Internet browsers are supported for Active Protection, scanning, and removal of threats. Internet Explorer 6 or higher must be installed for VIPRE to function properly; however IE does not have to be your default browser.
    Supported Operating Systems:
    Windows 2000 SP4 RU1, Windows XP and higher (32 and 64-bit), Windows Vista and higher (32 and 64-bit), Windows 7 (32bit & 64-bit)

    Supported Email Applications:
    Outlook 2000 and higher, Outlook Express 5.0 and higher, Windows Mail on Vista, and SMTP and POP3 (Thunderbird, IncrediMail, Eudora, etc.)

    UPDATE (20092010): Berhubung banyak yang bingung dengan link download di bawah, maka saya jelaskan kembali. Untuk mendownload installer Vipre antivirus dan keygen nya, silahkan download di link "Download Vipre 4.0.3904 Antivirus Premium With Keygen" sedangkan untuk download file update (definitions) vipre nya, silahkan klik link "Download VIPRE Antivirus Premium Definitions".
     Download VIPRE Antivirus Premium Definitions


    Download VIPRE Antivirus Premium Definitions


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Smadav 8.4 Pro With Key

    Setelah lama ditunggu-tunggu oleh kita semua, akhirnya antivirus lokal kesayangan kita melakukan update juga. Kini smadav sudah menjadi versi Smadav 2011 Rev 8.4. Kira-kira, apa yah yang baru di Smadav 8.4 ini??

    Yang Baru Di Smadav 2011 Rev. 8.4 :
    Pendeteksian khusus untuk beberapa virus shortcut terbaru (MSO-sys, fanny-bmp),penambahan database 40 virus baru, penyempurnaan deteksi semua varian virus shortcut, penambahan teknik heuristik, dsb.

    Oiya, saya ada sedikit permainan buat mengasah otak sobat blogger. Disini saya tidak (belum akan share) cara/tips n trik mengubah smadav 8.4 jadi pro (mungkin nanti,, hehe). Gampang kok caranya, tapi di butuhkan sedikit waktu dan keringat,, hehehe
    smadav 8.4 pro
    Sekedar informasi aja, untuk aktivasi smadav 8.4 ini, dibutuhkan sedikit perpaduan trik yang sudah pernah bahas di smadav versi sebelumnya, ada kata kunci untuk menghilangkan tanda bajakan, dll. Masih ingat kan?? Jadi, selamat mencoba merubah smadav 8.4 menjadi pro. Ingat, jangan gampang putus asa. Saya yakin anda bisa. :D

    UPDATE : Berhubung banyak yang bingung, disini saya akan sedikit memberi pencerahan kepada sobat blogger. Untuk menghilangkan tanda bajakan, sobat blogger bisa menggunakan kata kunci "anti-pembajakan" atau "anti-bajakan" (tanpa tanda kutip). Tapi ingat, kalau sobat blogger sebelumnya sudah pernah menginstal Smadav pro bajakan, cara ini akan kurang ampuh. Berhasil memang, tapi coba masukan key registrasi atau closes smadav lalu buka lagi?? Apa yang terjadi?? Jadi hitam lagi kan?? Jadi, selamat bereksperimen,, hehehee

    UPDATE (26012011) : Ternyata sudah banyak yang bisa yah?? Lain kali saya kasih yang lebih sulit lagi yah,, hehehe
    Buat yang blm bisa, silahkan di baca komen di bawah, banyak yang share caranya kok. Terima kasih,,

    INFO : Buat sobat blogger yang ingin download keygen smadav, bisa langsung kesini (download keygen smadav pro 2011).


    Password : www.remo-xp.com
    Download Smadav 8.4 Pro With KeySize : N/A


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Software ThreatFire


    Tidak seperti software antivirus yang telah ada saat ini, tool ini lebih fokus dalam menawarkan perlindungan atau bisa disebut sebagai 'benteng pertahanan' sebelum virus dan sejenisnya menyerang komputer.

    ThreatFire merupakan program antivirus gratis yang dapat menjadi program tambahan bagi program antivirus yang sudah ada secara efektif dengan cara menganalisis tingkah laku dan melindungi dari tindak kejahatan, seperti virus, malware, trojan, spyware, adware, keyloggers, dan masih banyak lagi.

    Pengguna dapat memilih cara yang terbaik dalam melindungi komputer dari berbagai bentuk tindak kejahatan terhadap komputer yang disediakan oleh ThreatFire.

    File size: 8.6 MB (freeware)
    Sistem operasi: Windows XP/Vista/Server 2003/08/07

    Download



    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Free download Smadav PRO



    Tanggal 5 Maret 2010 yang lalu SMADAV telah merilih yang baru yakni SMADAV 8.1 semakin lengkap fitur fitur yang disediakan dan semakin yahud dech buat scaning virus virus lokal.

    Nah bagaimana klo web-by kasih kepada sobat sobat Smadav Pro 8.1 Cracked ==>> Free 100%?? mau gak neh????

    heheheh....

    Sok atuh di download


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Norton SystemWorks 2009 Premier Edition 12.0.0.52





    Norton SystemWorks Premier Edition provides fast, continuous protection against malicious threats, backs up everything on your PC, and boosts your computer’s performance.

    Working quickly and quietly in the background, the included full version of Norton AntiVirus 2009 software has been completely re-engineered and sets a new standard for speed in its defense against viruses, spyware, worms, bots, and other malicious threats. Norton Systemworks Premier has rapid pulse updates and new Norton Insight utilize extensive online intelligence to target only those processes at risk, resulting in faster, fewer, and shorter scans. And the new Norton Protection System employs a multi-layered set of security technologies that work in concert to detect, identify, and block attacks.

    The included full version of Norton Save & Restore 2.0 uses powerful disk imaging technology from Norton Ghost to create full system and file backups. If disaster strikes, you can quickly restore from system failures and recover lost or damaged files. Incremental and differential backups reduce system slowdown by backing up only files that have changed. And advanced compression and encryption minimize storage space and help keep sensitive documents safe.

    Norton SystemWorks Premier Edition utilities boost your PC’s performance and keep it running at an optimized level. The utilities tools diagnose and fix Windows® errors; defragment, clean, and repair hard drives; and remove unwanted Internet clutter such as cookies and Web files. System Optimizer allows you to customize Windows settings according to the way you use your PC, and Process Viewer shows applications that are running to help you identify programs that are affecting performance.

    Key Benefits of Norton SystemWorks Premier
    * Stops viruses, worms, spyware, bots, and more — Keeps your system protected against malicious threats.
    * Provides Norton Insight — Delivers innovative, intelligence-driven technology for faster, fewer, shorter scans.
    * Delivers rapid pulse updates every 5 to 15 minutes — Provides up-to-the minute protection against new threats.
    * Blocks browser exploits and protects against infected Web sites — Allows you to surf the Internet with confidence.
    * Creates full system and file backups — Keeps all of your system files, application settings, and important data safeguarded from PC disaster.
    * Restores from system failure — Recovers your system and data even when you can’t restart your operating system.
    * Defragments, cleans, and repairs the hard drive — Keeps your computer clean and running at peak level.
    * Diagnoses and fixes PC problems — Automatically detects and fixes Windows® issues.
    * Removes Internet clutter — Cleans up unwanted cookies, cache files, and temporary files that slow your computer’s performance.
    * Recovers deleted files — Searches disks for deleted files and restores them to their original state [Available on Windows XP only].
    * Deletes securely — Securely and permanently removes sensitive files from your PC.
    * Maintains your PC with one click — Defragments and optimizes your hard drive for better performance.

    Norton SystemWorks Premier - Key Features
    * Norton AntiVirus™ 2009 — Provides fast, continuous protection against viruses, spyware, worms, bots, and other threats.
    * Rapid pulse updates — Deliver up-to-the-minute protection against new threats.
    * Norton Insight — Offers innovative, intelligence-driven technology for faster, fewer, shorter scans.
    * Norton Protection System — Provides multi-layered protection working in concert to stop threats before they impact you.
    * Norton Save & Restore 2.0 — Backs up everything on your computer and recovers from system failure.
    * Incremental and differential backups — Help to reduce system slowdown by backing up only files that have changed.
    * Norton Disk Doctor™ — Diagnoses and fixes hard drive problems.
    * Norton Speed Disk™ — Defragments, cleans, and repairs the hard drive for enhanced performance.
    * Norton Cleanup — Quickly and permanently removes Internet cookies, cache files, and temporary files that slow your computer’s performance.
    * Norton UnErase™ Wizard — Searches disks for accidentally deleted files and recovers them to their original state [Available on Windows XP only].
    * Process Viewer — Allows you to easily see which software processes are running on your system and which ones are affecting its overall performance.
    * System Optimizer — Puts you in charge of Windows® by allowing you to control access to your Windows settings.
    * CheckIt™ Diagnostics — Performs a physical examination of your PC’s hardware to determine its stability and capability.
    * One-Button Checkup — Maintains your PC with the click of a button.
    * Norton WipeInfo™ — Safely and permanently removes unwanted files from your computer.



    System Requirements:
    Windows Vista® and Windows Vista SP1 Home Basic/Home Premium/Business/Ultimate, Windows® XP SP2/SP3 Home Edition/Professional
    * 400 MHz or faster processor
    * 512 MB of RAM
    * 500 MB of available hard disk space

    Required for all installations:
    * CD-ROM or DVD drive for software installation on media
    * Microsoft Internet Explorer® 6.0 or later
    * Mozilla Firefox® 2.0 or later
    * Super VGA (800×600) or higher resolution video adapter and monitor
    * DirectX 8.0 or later for Performance Test™ by PassMark™ software**

    Email scanning supported for standard POP3 and SMTP compatible email clients.

    Supported instant messaging clients:
    * AOL® 4.7 or later
    * Yahoo!® 5.x and 6.x or later
    * Microsoft 6.0 or later
    * Trillian™ 3.1 or later

    Supported file system and devices:
    * FAT16, FAT16X, FAT32, FAT32X
    * NTFS
    * Dynamic Disks
    * Linux® EXT2/3 and Linux Swap Partitions

    Supported hard drives and removable media:
    * CDR/RW and DVD+/-R/RW drives
    * USB and FireWire® (IEEE 1394) devices
    * Iomega® Zip® and Jaz® drives

    Size: 215 MB
    DOWNLOAD + CRACK by BOX (read nfo):

    http://rapidshare.com/files/174928364/NSW2009.PremEd.12.0.0.52.incl.crack-BOX_FreeFullSoft.Net.part1.rar
    http://rapidshare.com/files/174927881/N … .part2.rar
    http://rapidshare.com/files/174927443/N … .part3.rar


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Tips Remove AVG untuk Install Kaspersky


    kaspersky logoTips Remove AVG untuk Install Kaspersky
    Untuk para pengguna Anti Virus yang ingin menggantinya dengan Kaspersky Anti Virus, biasanya akan mendapatkan sedikit masalah pada proses installisasi Kaspersky. Proses instal tidak dapat berjalan karena akan muncul pesan “incompatible software – installed error” .


    Hal ini terjadi karena Anti Virus AVG yang sebelumnya anda gunakan telah mempunyai dan membuat data Registry. Dan ketika anda meremove/uninstall melalui Control Panel maka Data Registry ini belum terhapus.


    Untuk mengatasi masalah ini anda dapat melakukannya dengan menggunakan software seperti CCleaner ataupun TuneUP Utilities.. Atau juga dapat melakukannya melalui cara manual melalui Registry Editor.



    incompatible softwareTips Remove AVG untuk Install Kaspersky


    Dengan cara manual dibawah ini kita bisa menghapus entry registry AVG sebelumnya, sehingga nantinya kita bisa menginstall Kaspersky Anti Virus 2009.


    Pertama anda buka start menu -> run lalu ketikkan -> regedit -> enter . Pada halaman Registry Editor, arahkan pada entri yang saya sebutkan dibawah ini ;



    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AVG7Uninstall

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AVG6INSTALL

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\AVG8Uninstall

    HKEY_LOCAL_MACHINE\SOFTWARE\AVG\Avg8


    Klik kanan pada entri tersebut lalu hapus / delete. Jika anda menggunakan 64 bit maka entri yang harus dihapus seperti dibawah ini ;


    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\AVG7Uninstall


    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\AVG6INSTALL

    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\AVG8Uninstall

    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\AVG\Avg8


    Setelah anda melakukan seperti petunjuk yang diatas, baru bisa berikutnya anda install Kaspersky Anti Virus 2009. Sebelumnya permasalahan seperti ini sudah pernah ada yang menanyakan melalui pesan komentar dan juga ada beberapa teman yang menjawabnya (avicenna). Jadi dengan tips pada postingan ini akan lebih mudah untuk anda yang mengalami permasalahan seperti ini



    Sumber : d60pc


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    avast! antivirus freeware terbaik dengan 90 juta user



    avast! antivirus Home Edition merupakan antivirus gratis terbaik yang memberikan perlindungan untuk komputer terbaik saat ini yang tersedia di pasaran. avast! antivirus Home Edition memberikan perlindungan PC ataupun jaringan dengan perisai pemindai file-file executable. Antarmuka yang efisien dapat digunakan untuk men-tweak pengaturannya sesuai keinginan dari tingkat pemula hingga tingkat mahir. Yuk, mari bergabung dengan avast! antivirus, antivirus gratis terbaik dengan 90 juta user di seluruh dunia.


    avast!-antivirus-Home-Editi


    Link dibawah adalah versi non-komersial rumahan yang baru-baru ini dirilis (26 Nov 2009) yang dapat diunduh secara gratis di:


    http://www.avast.com/eng/download-avast-home.html (39.29MB)




    Sumber : rudytarigan


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Kaspersky Anti-Virus & Internet Security 2010 9.0.0.736 - Final



    Kaspersky Anti-Virus & Internet Security 2010 9.0.0.736 - Final
    Kaspersky Internet Security 2010 9.0.0.736 - Final | 70.14 MB
    Kaspersky Anti-Virus 2010 9.0.0.736 - Final | 64.17 MB


    WHAT'S NEW IN KASPERSKY INTERNET SECURITY 2010:
    Kaspersky Internet Security 2010 is a comprehensive data protection tool, which provides not only anti-virus protection but also protection against spam and network attacks. The application's components also enable users to protect their computers against currently unknown threats and phishing, and to restrict users' access to the Internet. The multifaceted protection covers all channels for data transfer and exchange. All components can be flexibly configured, allowing users to tailor Kaspersky Internet Security to their specific needs.

    New in protection:
    * Improved HIPS (Host-based Intrusion Prevention System) technology assigns a danger rating to unknown programs. The Application Control component uses HIPS to define rules for new and already known applications, which may restrict their access to the file and operating systems.
    * Innovative Sandbox technology has been implemented, which uses virtualization to create a secure environment for program execution. New software can be tested in this environment, which isolates the host operating system from all changes. There is no limit to the number ofInternet browsers and other applications which can run simultaneously in a sandbox.
    * Increased use of Kaspersky Security Network considerably decreases the threat response time, due to information received from other users. The service aims to minimize the time necessary to detect and neutralize new types of threats. When a user starts a program, the service checks it against white lists and Urgent Detection System lists on Kaspersky Lab's servers.
    * The protection of personal user data has been extended and enhanced. For instance, Kaspersky Internet Security automatically prevents inadvertent users from accessing known phishing web sites, and blocks keylogger programs, which are designed to steal passwords and access codes.
    * The new Script Emulator analyzes the behavior of scripts, to assess their potential harmfulness. It simulates the operation of the Java Script and Visual Basic Script engines, which are supported by default in Microsoft Internet Explorer and are built in to Microsoft Windows.
    * The new IM Anti-Virus component ensures the safe operation of most instant messaging applications. The component scans messages for the presence of malicious objects.
    * Improvements to the Virtual keyboard component provide safer entry of personal information, by protecting data from being intercepted by spyware and preventing screenshot capture.
    * Significant improvements to the Anti-Spam component now provide two methods for detecting spam: exact and expert. Exact methods apply strict filtering criteria to a message, which determine unambiguously whether or not a message is spam. Expert methods investigate email messages that have passed strict filtering criteria. As such messages cannot be unambiguously considered spam, the component calculates the probability that they are spam.
    * Components of Kaspersky Internet Security can be temporarily disabled, to improve computer performance. This can be useful during the use of resource-hungry applications such as network games.
    * Monitoring access to phishing websites and protection against phishing attacks are performed by scanning links in messages and on web pages, and also by using the database of phishing addresses when an attempt to access websites is detected. You can check whether a web address is included in the phishing database, using the Web Anti-Virus, IM Anti-Virus or Anti-Spam component.
    * Improvements have been made to all the application's existing components, including the Firewall, Parental Control, and Anti-Spam components, and particularly the Heuristic analyzer.
    * The anti-virus kernel of Kaspersky Internet Security 2010 has been significantly improved, to provide more efficient malware detection. The application shows higher performance on Windows Vista operating systems, as compared to previous versions of Kaspersky Internet Security.
    * Kaspersky Internet Security includes the URL scanning module managed by Web Anti-Virus. This module scans links on the web page, comparing the website addresses against its database of suspicious and phishing websites. This module is provided for Microsoft Internet Explorer and Mozilla Firefox browsers as a plug-in.
    * The update procedure has been improved. Kaspersky Internet Security's databases are now updated not only according to their schedule, but also when new security threats appear.
    * The creation of Rescue Disks has been improved. The service should be used when the infection reaches a level at which the computer cannot be disinfected using either anti-virus applications, or malware removal utilities such as Kaspersky AVPTool. The improved Rescue Disks provide more efficient disinfection because malware programs do not gain control when the operating system is being loaded.

    New in the application interface:
    * The application interface has been completely redesigned, to make Kaspersky Internet Security significantly more accessible to first-time users.
    * Kaspersky Internet Security features an automatic mode in which the application automatically makes optimal decisions, so avoiding excessive requests to the user.


    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Antivirus Removal 2010





    A collection of uninstall antivius tools that do a complete & clean uninstall
    even for those antivirus that u can remove it from your windows!

    Remove (include 2010 products):
    -Norton all products
    -Kaspersky AV all antivirus versions
    -Avast all products
    _Avg all versions
    -BitDefender all versions
    -ESET all versions

    including a direct links for antivirus webpage & another links for download
    the offline setup update.

    Also Include athe best clean tools used to clean the your windows from unusedfiles,
    errors files, quick access,clean registry
    & fix it.

    fix tools:
    -TaskManager Fix: system utility to fix task manager disabled by spywares, trojans and displays
    error message : “Task Manager has been disabled by your administrator“, which blocks
    access to Windows Task Manager.
    -Registry Fix: system utility to fix registry disabled by spywares, trojans and displays
    error message : “Regedit has been disabled by your administrator“, which blocks access
    to Windows Registry.
    -Process Explorer: Process Explorer shows you information about which handles and DLLs processes have
    opened or loaded.
    -AutoRun Fix: Remove AutoRun Viruse from your windows
    -CCleaner: CCleaner is a freeware system optimization, privacy and cleaning tool. It removes unused files
    from your system - allowing Windows to run faster
    -MSConfig CleanUp : clean unused file startup


    http://r*a*p*i*d*s*h*a*r*e*.com/files/296877267/AntiVirus_Removal_2010-kd.rar



    http://rapidshare.com/files/296877267/AntiVirus_Removal_2010-kd.rar


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Antivirus Lokal


    Morphost Accords adalah antivirus yang keenam produksi MorphostLab. Antivirus ini sengaja dibuat untuk bekerja sama dengan antivirus-antivirus lokal lainnya dalam memberantas virus-virus lokal maupun virus-virus asing yang membandel di Indonesia.

    Morphost Antivirus versi keenam ini diselesaikan dalam waktu 4 bulan. Tentunya dengan banyak halangan saat pembuatan. Dan baru diluncurkan pada tanggal 31 Agustus 2009

    Pada Morphost Antivirus versi kali ini, ada penambahan fitur-fitur baru, pembaharuan inti pendeteksian, pembaharuan ulang susunan database, pemerbaikan pada metode heuristic.

    Tampilan Morphost sudah diubah (meskipun tidak 100%). Warna morphost masih hijau. Dan warna ini tidak akan pernah diubah. Bahasa pengantar Morphost versi keenam juga sudah diubah menjadi bahasa Indonesia, supaya lebih bersahabat dengan penggunanya.

    Pendeteksian dilakukan pada:
    -virus Executable
    -Virus Macro dan Virus Script
    -Semua file yang terinfeksi
    -semua file pemicu / pengeksekusi virus
    -semua file pendukung / component virus

    Pendeteksian dilakukan dengan:
    -Perbandingan nilai checksum virus dengan checksum yang ada di database.
    -Perbandingan string-string sensitif yang dimiliki virus dengan string yang tersimpan di dalam database
    -Metode Heuristik
    -Perbandingan checksum icon
    -pemeriksaan string yang lebih mendalam
    -Perbandingan atribut virus
    -perbandingan tingkah laku virus.

    Plus Morphost Antivirus keenam [Morphost Accords]:
    -Tampilan sudah diperbaharui.
    -Dilengkapi Fitur AutoDetect (RealTimeProtector) yang siap mendeteksi virus di komputer anda setiap saat.
    -Pendeteksian terhadap virus semakin diperbarui.
    -Bengkel Registry semakin canggih.
    -Pengaturan Karantina (Kandang Virus) semakin baik dibanding Morphost yang lalu.
    -Adanya Fitur VirusBlocker yang mampu memblokir virus-virus tertentu. (Fitur ini masih sederhana)
    -Dilengkapi Editor PesanPembuka untuk Windows XP.
    -Dilengkapi Editor untuk System Properties
    -Penambahan Dua Fitur baru yang belum ada di versi sebelumnya. QuickRevealer dan FileProtector.
    -dll


    Update Database Morphost akan dirilis setiap 2 minggu sekali

    Info lebih lanjut mengenai Antivirus Morphost bisa didapat di blognya:
    http://www.morphostlab.co.nr

    DONLOTNYA JANGAN SINI TAPI SINI


    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS

    Avira Premium Security Suite 2009 with Keys ( 2009 - 2015)





    Avira Premium Security Suite 2009 with Keys ( 2009 - 2015)




    download here




    Free Template Blogger collection template Hot Deals SEO
    • Digg
    • Del.icio.us
    • StumbleUpon
    • Reddit
    • RSS
    Free Doll 18 Glitter MySpace Cursors at www.totallyfreecursors.com