Return to Unfiction unforum
 a.r.g.b.b 
FAQ FAQ   Search Search 
 
Welcome!
New users, PLEASE read these forum guidelines. New posters, SEARCH before posting and read these rules before posting your killer new campaign. New players may also wish to peruse the ARG Player Tutorial.

All users must abide by the Terms of Service.
Website Restoration Project
This archiving project is a collaboration between Unfiction and Sean Stacey (SpaceBass), Brian Enigma (BrianEnigma), and Laura E. Hall (lehall) with
the Center for Immersive Arts.
Announcements
This is a static snapshot of the
Unfiction forums, as of
July 23, 2017.
This site is intended as an archive to chronicle the history of Alternate Reality Games.
 
The time now is Wed Nov 13, 2024 12:56 pm
All times are UTC - 4 (DST in action)
View posts in this forum since last visit
View unanswered posts in this forum
Calendar
 Forum index » Archive » Archive: General » ARG: Iris (Halo 3)
[INFO] The Artifact Location (206.16.223.76)
View previous topicView next topic
Page 1 of 3 [34 Posts]   Goto page: 1, 2, 3 Next
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 Very Happy, but i wonder, what now?


edit: tagged - please tag your threads -thebruce
edit2: updated title -thebruce


PostPosted: Fri Aug 10, 2007 12:43 pm
 View user's profile
 Back to top 
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.

PostPosted: Fri Aug 10, 2007 12:48 pm
 View user's profile
 Back to top 
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 Confused

PostPosted: Fri Aug 10, 2007 12:49 pm
 View user's profile
 Back to top 
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

PostPosted: Fri Aug 10, 2007 12:49 pm
 View user's profile
 Back to top 
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?

PostPosted: Sun Aug 12, 2007 1:47 pm
 View user's profile
 Back to top 
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.

PostPosted: Sun Aug 12, 2007 3:51 pm
 View user's profile
 Back to top 
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

PostPosted: Sun Aug 12, 2007 11:52 pm
 Back to top 
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
tada.jpg
 Description   this is how it looks
 Filesize   33.53KB
 Viewed   209 Time(s)

tada.jpg


PostPosted: Mon Aug 13, 2007 5:09 am
 View user's profile
 Back to top 
unknown v2
Greenhorn

Joined: 31 Jul 2007
Posts: 8

So doing that was basically pointless?

PostPosted: Mon Aug 13, 2007 10:07 pm
 View user's profile
 Back to top 
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


PostPosted: Mon Aug 13, 2007 10:49 pm
 View user's profile Visit poster's website AIM Address
 Back to top 
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. Wink

PostPosted: Tue Aug 14, 2007 4:46 am
 View user's profile
 Back to top 
Tapsen
Guest


Too bad I'm not in one of those cities...

PostPosted: Tue Aug 14, 2007 5:22 pm
 Back to top 
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?
_________________
Xbox Live GamerTag: NuBee2010

PostPosted: Wed Aug 15, 2007 12:41 pm
 View user's profile
 Back to top 
Barfingkitty
Greenhorn


Joined: 13 Jul 2007
Posts: 6
Location: USA

Glyph is missing

I noticed today that the glyph is missing from the background.

PostPosted: Wed Aug 15, 2007 3:36 pm
 View user's profile
 Back to top 
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

PostPosted: Wed Aug 15, 2007 3:44 pm
 View user's profile Visit poster's website AIM Address Yahoo Messenger MSN Messenger
 Back to top 
Display posts from previous:   Sort by:   
Page 1 of 3 [34 Posts]   Goto page: 1, 2, 3 Next
View previous topicView next topic
 Forum index » Archive » Archive: General » ARG: Iris (Halo 3)
Jump to:  

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You can download files in this forum
You cannot post calendar events in this forum



Powered by phpBB © 2001, 2005 phpBB Group