Jump to content
🛡️FORUMS ARE IN READ-ONLY MODE Read more... ×
Sign in to follow this  
ArmAriffic

ArmA 2 site hacked

Recommended Posts

Oh right. I'm a bit sleepy right now. I think I recall you mentioning that already.

Could you set FRAPS or something similar to work if you have it? That way you could record it and play it back whilst getting on with whatever you need to do?

Very creative suggestion!

Share this post


Link to post
Share on other sites
Could you set FRAPS or something similar to work if you have it? That way you could record it and play it back whilst getting on with whatever you need to do?

Wow, that's not a bad idea. Not FRAPS - that won't work - but some free desktop recording tool.

Make it take a screeny of the program every minute or so.

Share this post


Link to post
Share on other sites
P.s. Have to say, most of the people here had already worn off by the brainstorming in the pass 10 days.

from my last mental strength (brainstorming)

Barel - bug - hebrew name Ba-rel(Barel) "son of god" ...rubbish

Tahlo - flower - meaning??

Roamer - cat - meaning "tramp, roggue.." make sense with cat or other meaning "plan" ??

Exorcist - water, drop - http://en.wikipedia.org/wiki/Exorcist ..make sense with orange devil color ... rubbish

maybe its nothing, but all the pics are in orange color.

according to wikipedia, orange color is a Mediterranean color.

result?? :biggrin_o:

Share this post


Link to post
Share on other sites

I note my prog :

XXXXXXXZDEC08

where XXXX are numbers ...

strange ?

edit

from my last mental strength (brainstorming)

Barel - bug - hebrew name Ba-rel(Barel) "son of god" ...rubbish

Tahlo - flower - meaning??

Roamer - cat - meaning "tramp, roggue.." make sense with cat or other meaning "plan" ??

Exorcist - water, drop - http://en.wikipedia.org/wiki/Exorcist ..make sense with orange devil color ... rubbish

Sion have more sense ! :D

Share this post


Link to post
Share on other sites

I believe AutoIt also has a feature allowing it to read texts and such from arbitrary windows that are open. In theory, an AutoIt script could be made to monitor that text at the bottom and log it to a file whenever it changes.

Share this post


Link to post
Share on other sites

APR10 here, Ten rules of War found... trying to debug it with radare but no success :(

Share this post


Link to post
Share on other sites
Wow, that's not a bad idea. Not FRAPS - that won't work - but some free desktop recording tool.

Make it take a screeny of the program every minute or so.

Fraps can take a ScreenShot every nth second as long as you have free space. one each 5 mins would do i guess

Share this post


Link to post
Share on other sites

I through it into resource hacker and see only one dialogue, and its not very big, I think that's the only message.

Share this post


Link to post
Share on other sites
I note my prog :

where XXXX are numbers ...

strange ?

edit

Sion have more sense ! :D

ddHHmmZMMMYY

*dd -day

*HH -hour

*mm -minute

*MMM -month

*YY -year

Share this post


Link to post
Share on other sites
well then we should try to work with the result we already have

^^ i also think there wont come much in the future

but sb should still let it run for security

Share this post


Link to post
Share on other sites

string "cord found" exists within the executable.

Share this post


Link to post
Share on other sites

im in SEptember october december January 2010 1911

:(

Edited by Yegor

Share this post


Link to post
Share on other sites

"This file has a non-standard resource layout... it has probably been compressed with an "EXE compressor"."

That's the Res Hack error message when you try and view the dialog in the .exe.

Share this post


Link to post
Share on other sites

So I managed to find the memory values with cheat engine that change DD/MM/YYYY in seeker.exe.

No idea what countermeasures BIS used for changing values.

Any idea what kind of date I should search for?

Edited by TonyGrunt

Share this post


Link to post
Share on other sites
So I managed to find the memory values with cheat engine that change DD/MM/YYYY in seeker.exe.

No idea what countermeasures BIS used for changing values.

Any idea what kind of date I should search for?

exactly what kinf of file search ...

Share this post


Link to post
Share on other sites
So I managed to find the memory values with cheat engine that change DD/MM/YYYY in seeker.exe.

No idea what countermeasures BIS used for changing values.

Any idea what kind of date I should search for?

June 8th 2011.

Share this post


Link to post
Share on other sites

I now have a simple AutoIt script monitoring the lower text part in the window for new messages. I'll leave this computer running over the next few days and see if anything pops up.

For anyone else who wants to try it, install AutoIt and run this script:

$oldtxt = ""

While True
$txt = ControlGetText("Searching.", "", "Static2")
If $txt <> $oldtxt Then
	$fh = FileOpen("D:\log.txt", 1)
	FileWrite($fh, $txt & @CRLF)
	FileClose($fh)
	TrayTip("New message!", $txt, 10)
	$oldtxt = $txt
EndIf
Sleep(1)
WEnd

Make sure to modify the "D:\log.txt" part to something that suits you. The script should find the running window (no need to restart the time seeker) and will note any changes, starting with the initial value, to the log file.

Edited by MadDogX
added sleep

Share this post


Link to post
Share on other sites

@TonyGrunt

change it to 1st May 2011 if possible and see if it drops new messages when continuing

Share this post


Link to post
Share on other sites
So I managed to find the memory values with cheat engine that change DD/MM/YYYY in seeker.exe.

No idea what countermeasures BIS used for changing values.

Any idea what kind of date I should search for?

try june 16, after Ivan's presentation.

Share this post


Link to post
Share on other sites
im in SEptember october 2010

No you aren't, not unless you hacked it. XX/XX/10 means the year 1910

Share this post


Link to post
Share on other sites
No you aren't, not unless you hacked it. XX/XX/10 means the year 1910

ah....Thanks) I've left it today in the morning and went to work...I missed couple of thread pages..

=(

Share this post


Link to post
Share on other sites

Not sure if it's working but I searched all of jun 2011 and nothing.

Maybe BIS used some anticheating :).

Now I am opening many instances of seeker.exe and searching simultaneously different years.

Share this post


Link to post
Share on other sites

Something tells me any further messages will be in the next 40-50 years, if at all. Getting to 2011 normally would require leaving the exe running until Sunday.

Share this post


Link to post
Share on other sites
Guest
This topic is now closed to further replies.
Sign in to follow this  

×