Author
Message
Sharpsniper99
Kl00
Joined: 20 Jun 2007 Posts: 42
[INFO] The Artifact Location (206.16.223.76) this was found by superelite_30 over at abo, anyway
ok no brute forcing it was actually pretty simple:
"In Star image 4 it says the artifact location if you go to http://theartifactlocation.com/ it takes you there which may be how you are supposed to find it.
At Amazon.com In The Castaway Theory Discussions Thomas said Jonas made things much more obvious so what is any more obvious than http://theartifactlocation.com/"
so it seems we have found the site properly now, and we already knew the password , but i wonder, what now?
edit: tagged - please tag your threads -thebruce
edit2: updated title -thebruce
Posted: Fri Aug 10, 2007 12:43 pm
Ho-Musabi
Boot
Joined: 06 Aug 2007 Posts: 13
Yes! This gives us both the password and site from the pictures, we now have all the logical steps.
Posted: Fri Aug 10, 2007 12:48 pm
Sharpsniper99
Kl00
Joined: 20 Jun 2007 Posts: 42
yep were no longer missing the link to find this page, now we just have the hassle of figuring out what we do with this page
Posted: Fri Aug 10, 2007 12:49 pm
unknown v2
Greenhorn
Joined: 31 Jul 2007 Posts: 8
I found this out 20 hours ago. I thought it was already found.
It was right there in the html...
http://www.halo3forum.com/2716137-post36.html
Posted: Fri Aug 10, 2007 12:49 pm
eranmane
Veteran
Joined: 12 Jul 2007 Posts: 119
On IRC (#ci/abo) I was talking to a few people about Artifact, we believe that a greasemonkey script could replace akqa-stagings.com/topsecret.xml with a similar XML file, but with random set to false (instead of true...)
Any greasemonkey coder up to the challenge?
Posted: Sun Aug 12, 2007 1:47 pm
unknown v2
Greenhorn
Joined: 31 Jul 2007 Posts: 8
I don't think editing a file linked to a server of Microsft's studio (Bungie) that is important in their scavenger hunt in wise.
Posted: Sun Aug 12, 2007 3:51 pm
sayanything562
Guest
im up for it
eranmane wrote:
On IRC (#ci/abo) I was talking to a few people about Artifact, we believe that a greasemonkey script could replace akqa-stagings.com/topsecret.xml with a similar XML file, but with random set to false (instead of true...)
Any greasemonkey coder up to the challenge?
i have it ill have a try at it
Posted: Sun Aug 12, 2007 11:52 pm
corban
Greenhorn
Joined: 13 Aug 2007 Posts: 7
Right Ive cleared my temp internet files, refeshed the http://theartifactlocation.com, grabbed those files and placed them in a folder. Removed the [1] from each file. Created the necessary file structure and then changed the link for the xml file so it runs from within the folder. Changed true to false within topsecret.xml and the result is that it removes the random character generation after each location.
If you use something like sothink swf decompiler and look at arc.swf, you find within the actionscript a class called com.arc.Password and this has a function to check the entered password
function checkPassword()
{
if (text == "boomerang")
{
return(true);
}
else
{
return(false);
Looking more you can find another class called com.arc.Randomletters which seemingly generates the randomtext after each city if anybody would like to analyse this the codes below, im not because im finding this arg just to addictive n really need to get some work done.
#initclip
class com.arc.RandomLetters
{
var myField, intervalID, intervalID1, intervalID2;
function RandomLetters()
{
} // End of the function
function centerShuffle(targetField, textToDecrypt, speed)
{
myField = targetField;
var randomCounter = 0;
var realCounter = 0;
var textWritten = "";
if (textToDecrypt.length % 2 == 0)
{
var textPar = true;
} // end if
targetField.intervalID = setInterval(function ()
{
randomCounter++;
if (randomCounter <5>= textToDecrypt.length)
{
targetField.text = textWritten;
clearInterval(targetField.intervalID);
}
else
{
_l6 = chr(random(93) + 33);
_l1 = chr(random(93) + 33);
targetField.text = _l6 + textWritten + _l1;
} // end if
} // end if
}, speed);
} // End of the function
function textShuffle(targetField, textToDecrypt, speed, textAlignment)
{
var self = this;
var randomCounter = 0;
var realCounter = 0;
var textWritten = targetField.text;
if (textToDecrypt.length % 2 == 0)
{
var textPar = true;
} // end if
var intervalID = new Number();
intervalID = setInterval(function ()
{
randomCounter++;
if (randomCounter <5>= textToDecrypt.length)
{
targetField.text = textWritten;
clearInterval(targetField.intervalID);
}
else
{
_l8 = chr(random(93) + 33);
_l1 = chr(random(93) + 33);
targetField.text = _l8 + textWritten + _l1;
} // end if
}
else
{
var _l3 = textToDecrypt.substr(realCounter, 1);
textWritten = textWritten + _l3;
realCounter++;
randomCounter = 0;
if (targetField.length >= textToDecrypt.length)
{
targetField.text = textWritten;
clearInterval(intervalID);
self.onShuffleFinished();
}
else
{
_l2 = chr(random(93) + 33);
targetField.text = textWritten + _l2;
} // end if
} // end if
}, speed);
} // End of the function
function killCycle()
{
clearInterval(intervalID);
clearInterval(intervalID1);
clearInterval(intervalID2);
} // End of the function
} // End of Class
#endinitclip
Description
this is how it looks
Filesize
33.53KB
Viewed
209 Time(s)
Posted: Mon Aug 13, 2007 5:09 am
unknown v2
Greenhorn
Joined: 31 Jul 2007 Posts: 8
So doing that was basically pointless?
Posted: Mon Aug 13, 2007 10:07 pm
thebruce
Dances With Wikis
Joined: 16 Aug 2004 Posts: 6899 Location: Kitchener, Ontario
UPDATE
current status: this morning the city list was updated to include the 081607 before the random characters - August 16th, 2007 (Thursday)
_________________
@4DFiction /@Wikibruce /Contact
ARGFest 2013 - Seattle! ARGFest.com
Posted: Mon Aug 13, 2007 10:49 pm
corban
Greenhorn
Joined: 13 Aug 2007 Posts: 7
Yup seemingly pointless, topsecret.xml is just a feed. I guess theyll be adding to it as n when they feel. Theyve added 081607 to each location within topsecret.xml, so maybe its worth keeping n eye on though.
Posted: Tue Aug 14, 2007 4:46 am
Tapsen
Guest
Too bad I'm not in one of those cities...
Posted: Tue Aug 14, 2007 5:22 pm
nubee2010
Veteran
Joined: 01 Sep 2004 Posts: 82
Well, I'm in the Seattle area but my schedule and availability to go somewhere for the ARG is questionaable. Should someone start separate threads for each city in the prospect of a meet-up tomorrow?
Posted: Wed Aug 15, 2007 12:41 pm
Barfingkitty
Greenhorn
Joined: 13 Jul 2007 Posts: 6 Location: USA
Glyph is missing I noticed today that the glyph is missing from the background.
Posted: Wed Aug 15, 2007 3:36 pm
Vossk
Decorated
Joined: 15 Jul 2007 Posts: 260 Location: Jacksonville, FL
Its still there. Its just hard to see and only comes up when the password entry appears
Posted: Wed Aug 15, 2007 3:44 pm
Display posts from previous: All Posts 1 Day 1 Week 2 Weeks 1 Month 3 Months 6 Months 1 Year Sort by: Post Time Post Subject Author Ascending Descending