Log in

View Full Version : List of functions


malikah
December 9th, 2009, 20:38
Was just wondering if anyone knows of a list of functions that have to do with time. For example if I wanted to find all the possible places in some code that relate to time functions I may look for the following: GetProcessTimes, GetSystemTimeAsFileTime, etc... Anyone know of a full list? Or even lists of other types of functions for that matter? Cheers.

drizz
December 9th, 2009, 21:42
idaficator for ollydbg might be exactly what you want.

malikah
December 9th, 2009, 21:58
Quote:
[Originally Posted by drizz;83964]idaficator for ollydbg might be exactly what you want.


Looks like a good tool but I ran into the usual problems after getting a lead:

1. The website is down.
2. The only copies I've found elsewhere have trojans attached.

But thanks.

Kayaker
December 9th, 2009, 22:46
It looks like at4re is moving sites, so I guess our CRCETL link will be down as well until then.

Why don't you download it from here (note the avast false positive comment by the author):

http://www.tuts4you.com/download.php?view.2058

Indy
December 10th, 2009, 11:07
"Time" broad concept. For example duration, etc. Assume that there is a view of the current date, the one that is in the CMOS.
1. NT Services.
o Information not directly containing the current time(performance etc.).
o NtQuerySystemInformation(SystemTimeOfDayInformation)
o NtQuerySystemInformation(SystemCurrentTimeZoneInformation)
o NtQuerySystemTime
o NtSetSystemTime
2. 0x2A interrupt gate(-> KeTickCount).
3. UserSharedData(seg. 0x7FFE0000 in usermode.)
4. Third-party/remote requests(LPC, Shadow, time of last access to related objects, or their lifetime, etc).