Jun 21, 2010

Firefox redirect on a google search result

The symptom also occurs in Google Chrome; Any webpage won't be loaded on Google Chrome.

If you encounter these two symptoms, you are infected Rootkit.Win32.TDSS.

Just download the tdsskiller, and that's it. Problem solved.

Firefox redirect on a search result (After removing AV Security Suite)

I've just solved a malware problem. Firefox seems to redirect to other website when I click on a Google search result.

I have used Malwarebytes'. It deleted these registry keys:

HKEY_CLASSES_ROOT\dnscache.dnscacheobj (Trojan.BHO) -> Quarantined and deleted successfully.
HKEY_CLASSES_ROOT\dnscache.dnscacheobj.1 (Trojan.BHO) -> Quarantined and deleted successfully.

And that's it. The problem is gone.

Jun 20, 2010

Clicking events on UI built with a graphic library

I have been working with my friends on an Auto-clicker program. It is used for clicking on the game. And the game is built with a graphic library. It draws everything manually.

We have found that:

In order to simulate a click on it, we have to simulate 'mouse down', wait for some time, and simulate 'mouse up'.

This is because the game draws itself every 20 ms (or longer). If we fire 'mouse down' and 'mouse up' in the same drawing round, the game will not recognize a click action.

And that's it.

PS. this does not apply for a program built with .NET standard toolkit.