Erceis.com

Colossal Confusion

Dec
22
activexdebugger is a virus spreading through flash drives and other external storage devices. It embeds itself into the system and infects every device connected to that computer.

It enables sharing of your local drives to network abuse.
Also it messes up with the double click on the devices infected.

There is a virus removal tool. it's turkish but you will get the idea. hit the large button only. afterward it will ask if you wish to restart. If you minimize the application to tray it will silently seek for the virus, scanning every external drive.

Here it is

Dracula Virüs Temizleyici V 3.0.exe (136 KB)

P.S.: It requires .net v2.0

Tags: activexdebugger.exe, dracula, virus, removal, security, clean

Posted At Saturday, December 22, 2007 11:52:00 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
22

activexdebugger flash diskler ve diğer harici sürücülerle bulaşan bir virüstür. Kendini sisteme bağlayıp, sistemde bulunan bütün disklere bulaşır.


Yerel disklerinizi paylaşıma açarak dışarıdan gelecek ziyaretçiler için açık kapılar bırakır. Ayrıca harici disklere çift tıklanıldığında yapılan işlemlerle oynadığından çeşitli hatalar da doğurabilir.

Aşağıda bu virüsü temizlemek için küçük bir uygulama var. Programı açıp "Virüsten Kurtul" tuşuna basmanız yeterlidir. Bundan sonra da bilgisayarı baştan başlatmak isteyip istemediğinizi soracaktır. Eğer uygulamayı minimize ederseniz uygulamam takılacak olan flash diskleri ve harici diskleri bağlantı sırasında kontrol edip virüsün bulaşmasını da engelleyecektir.


Dracula Virüs Temizleyici V 3.0.exe (136 KB)

P.S.: Uygulamanın çalışması için .Net 2.0 gereklidir. Windows Update de bulunabilinir.

Tags: activexdebugger.exe, dracula, virüs, temizleme, güvenlik, silme

Posted At Saturday, December 22, 2007 12:59:34 PM (GTB Standard Time, UTC+02:00)
Comments [1] | | Permalink |       |  
Dec
12
Note: For v2.1 only don't know if it exists on other versions

1. Open DasBlog All Solution File from source Directory
2. Open SharedBasePage.cs from newtelligence.DasBlog.Web.Core project
3. Search for private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode) method
4. Change From:
private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode)
{
    EntryIdCache cacheToCopy = DataService.GetEntryIdCache();

    //Shallow copy as we're going to modify it...and we don't want to modify THE cache.
    EntryIdCacheEntryCollection cache = (EntryIdCacheEntryCollection)cacheToCopy.Entries.Clone();

    if (pageIndex * entriesPerPage < cache.Count)
    {
        // Remove all entries before the page's first entry.
        for (int i = 0; i < pageIndex * entriesPerPage; i++)
        {
            cache.RemoveAt(0);
        }
        // Remove all entries after the page's last entry.
        if (cache.Count - entriesPerPage > 0)
        {
            cache.RemoveRange(entriesPerPage, cache.Count - entriesPerPage);
        }

        return DataService.GetEntries(null, EntryCollectionFilter.DefaultFilters.IsInEntryIdCacheEntryCollection(cache),
                                      Int32.MaxValue,
                                      Int32.MaxValue);
    }  

    // The page index is out of range (i.e. too large).
    return new EntryCollection();
}
To:
private EntryCollection GetEntriesForPage(int pageIndex, int entriesPerPage, string langCode)
{
    EntryCollection toClone = DataService.GetEntries(null, null, int.MaxValue, int.MaxValue);
    EntryCollection allEntries = (EntryCollection)toClone.Clone();

    if (pageIndex * entriesPerPage < allEntries.Count)
    {
        // Remove all entries before the page's first entry.
        for (int i = 0; i < pageIndex * entriesPerPage; i++)
        {
            allEntries.RemoveAt(0);
        }
        // Remove all entries after the page's last entry.
        if (allEntries.Count - entriesPerPage > 0)
        {
            allEntries.RemoveRange(entriesPerPage, allEntries.Count - entriesPerPage);
        }

        return allEntries;
    }

    // The page index is out of range (i.e. too large).
    return new EntryCollection();
}
5. Update newtelligence.DasBlog.Web.Core.dll in your bin folder

now frontpage paging should work on v2.1

Posted At Wednesday, December 12, 2007 12:07:31 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
12
1. Open DasBlog All Solution File from source Directory
2. Open Macros.cs from newtelligence.DasBlog.Web.Core project
3. Search for public virtual Control DrawTagCloud() method
4. Change From:
foreach(CategoryCacheEntry category in categories)
{
     EntryCollection entries = requestPage.DataService.GetEntriesForCategory(category.Name,languageFilter);
     catEntryCount.Add(category.Name,entries.Count);
     minCount = Math.Min(minCount,entries.Count);
     maxCount = Math.Max(maxCount,entries.Count);
}
To:
foreach(CategoryCacheEntry category in categories)
{
     //EntryCollection entries = requestPage.DataService.GetEntriesForCategory(category.Name,languageFilter);
     catEntryCount.Add(category.Name, category.EntryDetails.Count);
     minCount = Math.Min(minCount, category.EntryDetails.Count);
     maxCount = Math.Max(maxCount, category.EntryDetails.Count);
}
5. Update newtelligence.DasBlog.Web.Core.dll in your bin folder

now the categories are counted the way they should

Posted At Wednesday, December 12, 2007 11:19:01 AM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
12
First, make sure you have the settings to make it work; 1. With MPC open click...file\options\output...set the DirectShow Video to VMR9 (DirectX9 Video Mixing Renderer) as below (don't know if it works with VMR 7) 2. Open the video, Click....file\save thumbnails 3. Then select the number of columns and rows as you desire and save 4. Final Result.......DONE!! This post content is taken from http://www.asian4ever.net/forum/tips-guides-587/46425-tip-how-make-screenshots-using-media-player-classic.html

Blogged with Flock

Posted At Wednesday, December 12, 2007 9:05:26 AM (GTB Standard Time, UTC+02:00)
Comments [1] | | Permalink |       |  
Dec
12
Today I'm going to represent a Audio/Video Player called Media Player Classic. It's a source-forge project. It can play nearly every Media Format. It's simple as the original Media Player but more powerful in use. Can be Downloaded From

Features (from Wiki)

MPEG-1, MPEG-2 and MPEG-4 playback

This player is capable of VCD, SVCD and DVD playback, without the need to install any additional software or codecs. Media Player Classic has built-in codecs for MPEG-2 video with support for subtitles and codecs for LPCM, MP2, AC3 and DTS audio. It also contains an improved MPEG splitter that supports subtitles on SVCDs and supports direct playback of VCDs and SVCDs using its VCD/SVCD/XCD Reader. On October 30, 2005 Gabest added *.mp4 and MPEG-4 Timed Text support. [1] An AAC decoding filter has been present in MPC for a while, which makes MPC suitable for AAC playback in mp4, and an alternative to Winamp and iTunes.

DirectShow, QuickTime and RealPlayer architectures

Media Player Classic is primarily based on the DirectShow architecture, and therefore automatically uses installed DirectShow decoding filters. For instance, after the open source DirectShow decoding filter ffdshow has been installed, fast and high quality decoding and postprocessing of the DivX, Xvid and H.264 formats is available in MPC.

In addition to DirectShow, MPC can also use the QuickTime and the RealPlayer architectures (if installed on the computer) to play their native files.

Matroska and Ogg containers

Media Player Classic supports native playback of OGM and Matroska container formats. However, OGM audio playback is limited by a lack of support for the CoreVorbis DirectShow filter, which mainly affects newer OGM files (c. 2006). The crux of this problem is that MPC is hard-coded to use an older Vorbis filter, so even if one installs newer filters, MPC is unable to use them.[1]

TV tuners

MPC supports playback and recording of television if a supported TV tuner is installed.

Blogged with Flock

Posted At Wednesday, December 12, 2007 8:45:14 AM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
10
Posted In : About Me
Evet Bir doğumgünü daha geçti ve bir sene daha yaşlandım. Ama hatıralar yenilendi daha güzelleri yapıldı. Doğumgünümde benimle beraber olan arkadaşlarıma teşekkür ediyorum beni yalnız bırakmadıkları için =)

Blogged with Flock

Posted At Monday, December 10, 2007 6:07:26 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
Dec
03
Posted At Monday, December 03, 2007 1:16:21 PM (GTB Standard Time, UTC+02:00)
Comments [0] | | Permalink |       |  
      

Navigation

Search


Calendar

<August 2008>
SunMonTueWedThuFriSat
272829303112
3456789
10111213141516
17181920212223
24252627282930
31123456

Categories


On this page

How to Remove activexdebugger.exe?
activexdebugger.exe yi kaldırmak / temizlemek / silmek
dasBlog Front Page Paging Fix
dasBlog DrawTagCloud Fix
How to Make Screencaps with Media Player Classic (MPC)
Media Player Classic
Doğumgünüm
Italian guy who went to malta

Be 	a Flockstar

Tag Cloud

About Me (1) Applications (6) dasBlog (2) Download (1) İlişkiler (1) Media (4) MPC (2) Oyun (1) Programming Languages (1) Tv Shows (1) Virus (2)

Archive


Blogroll

RSS 2.0 Atom 1.0 CDF

Send mail to the author(s) E-mail

Sign In

Disclaimer
The opinions expressed herein are my own personal opinions and do not represent my employer's view in any way.

© Copyright 2008, Gürel Erceiş. | The YUI Grid CSS
Page rendered at  Thursday, August 28, 2008 8:48:54 PM (GTB Standard Time, UTC+02:00)