Iazer 180 Posted March 27, 2019 Oh boy i havent been over here for a while. This looks busy Quote Share this post Link to post Share on other sites
Warflame 7 Posted March 27, 2019 (edited) I noticed that on marketplace in the redeem menu tab, i see this message: "Thank you for participating in the RedHill Institute ARG! We are collecting entries in the order they are submitted and we will send out the rewards and announcement on Friday." (Might be because i redeemed that 5-digit code which was on the bill board.) Edited March 27, 2019 by noxuous Quote Share this post Link to post Share on other sites
Saxtus 466 Posted March 27, 2019 Indeed, however there is no real verification if we submitted something correctly or not. Quote Share this post Link to post Share on other sites
Zolerox 547 Posted March 27, 2019 (edited) Nothing else i could find so.... Here's every email from "cpritcher - g@ngs1gns" https://imgur.com/a/xKPYNkQ Edited March 27, 2019 by Zolerox Quote Share this post Link to post Share on other sites
jesus007 2 Posted March 27, 2019 jejejeje bit.ly/2OzOHxD 1 Quote Share this post Link to post Share on other sites
Saxtus 466 Posted March 27, 2019 @jesus007 I suggest you read the original post of this thread first. Quote Share this post Link to post Share on other sites
jesus007 2 Posted March 27, 2019 8 minutes ago, Saxtus said: @jesus007 I suggest you read the original post of this thread first. Thank you. I had not seen that I was already. Quote Share this post Link to post Share on other sites
MsRaccooN 7 Posted March 27, 2019 (edited) Mhmmmmmmmmmm Edited March 27, 2019 by MsRaccooN Quote Share this post Link to post Share on other sites
VickyFox 334 Posted March 27, 2019 9 hours ago, Yood said: I don't even understand how they edit it. nothing to say . children grew up with computers . websites, letters, riddles ..... when will we start playing normally ? Forgive me for enjoying something different. Variety is the spice of life. 9 hours ago, Kewlin said: Prediction: nobody is going to complete the ARG Think that might just be the case, I'll very interested what Little Orbit will do if so! Can I just take a moment to say not only good work on making RedHill a intriguing challenge for the community, but also taking the time to know APB's lore and then adding something new to it! 1 Quote Share this post Link to post Share on other sites
sneekface 85 Posted March 27, 2019 On 3/18/2019 at 9:34 PM, Wewhoo said: Since none's posted anything yet, Username is "cpritcher" and password is "g@ngs1gns". You login to an email client, and one of the emails has an attached picture. The code thus far is 6ac20d50-_ _ _ _-4f0f-_ _ _ _-3ec51de745d7 I know im really late for this one, but how exactly did you find that password? Quote Share this post Link to post Share on other sites
IronicTerror 28 Posted March 27, 2019 (edited) High res unstretched version ENHANCE Made a dark version so you don't get eyecancer while working on it Edited March 27, 2019 by IronicTerror 1 1 Quote Share this post Link to post Share on other sites
iMiss 48 Posted March 27, 2019 33 minutes ago, IronicTerror said: High res unstretched version copy-paste for those who think they know the format. 6D554 77043 81496 93131 769C4 87849 117R0 39652 51028 49952 97X77 89257 0370J 12456 L3670 96369 02998 77685 13652 94418 79872 59000 58890 16148 67341 63610 69011 38935 64532 00383 98P59 55094 25747 12659 99060 67195 7452D 36066 44587 08373 42718 81327 84318 87643 34521 42076 18600 60213 15568 27669 00613 22791 269C9 20999 62932 33904 24424 61305 69089 L120A 42187 A1987 90134 41802 82226 93417 06200 97533 28240 40753 33066 35321 84726 86749 73715 0G461 41046 69571 94901 54940 60V87 05607 287E2 52751 94326 47280 I9128 80200 2V888 65861 73586 91226 09613 59281 39543 79706 10116 84942 06040 74771 66253 17535 30260 61Y21 55176 31844 69093 2W333 51404 10568 Quote Share this post Link to post Share on other sites
Inquitoria 108 Posted March 27, 2019 Please, someone pick up where I left off. I need a break. Notes: WECAN'TDOTHISALONE. was the morse code, punctuation included. DCRXJLPDCLAAGVEIVYW are the letters in the spectrogram code, numbers excluded. Notice that these two line up perfectly. Notice also that both of these letter strings contains the letters for CLAWDIA, the name of A.Partridge's cat, which is likely what her password hint refers to. 2 Quote Share this post Link to post Share on other sites
lolmort/tenyearsmadrus 0 Posted March 27, 2019 (edited) Someone tried to do something with the newsletter form ? Pretty sure there something to get from it like using cypher mailbox to get a mail from the newsletter But currently i can't get the other error that are in the .js (seem like it dosen't care) and there's a newsletter.php file so it as do to something Edit the server currently redirect to the home page so i guess it's intended Edited March 27, 2019 by lolmort/tenyearsmadrus Quote Share this post Link to post Share on other sites
Eyepop 21 Posted March 27, 2019 Have built a script to brute-force the password with the letters from the spectragraph // ==UserScript== // @name New Userscript // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.redhillinstitute.com/login/ // @grant GM_addStyle // ==/UserScript== var run = false; var timeout = 10; var block1 = ['W','E','C','N','T','D','O','H','I','S','A','L','R','X','J','P','G','V','Y']; var zNode = document.createElement ('div'); zNode.innerHTML = '<button id="myButton" type="button">' + 'For Pete\'s sake, don\'t click me!</button>' ; zNode.setAttribute ('id', 'myContainer'); document.body.appendChild (zNode); //--- Activate the newly added button. document.getElementById ("myButton").addEventListener ( "click", ButtonClickAction, false ); function ButtonClickAction (zEvent) { /*--- For our dummy action, we'll just add a line of text to the top of the screen. */ if (run == true){ run = false; }else{ run = true; onStart(); } } function attempt(password){ let username = document.getElementById('username'); if (username){ username.value= 'apartridge'; let passwordform = document.getElementById('password'); if (passwordform){ passwordform.value = password; console.log(password); document.getElementById('submit_login').click(); } } } //--- Style our newly added elements using CSS. GM_addStyle ( ` #myContainer { position: absolute; top: 0; left: 0; font-size: 20px; background: orange; border: 3px outset black; margin: 5px; opacity: 0.9; z-index: 1100; padding: 5px 20px; } #myButton { cursor: pointer; } #myContainer p { color: red; background: white; } ` ); function RecursiveGuy(outputstring, depth, inputdepth){ setTimeout(function(){ var outputstrings = []; block1.forEach(function(entry){ if (!run) {return;} outputstrings.push(outputstring + entry); }); if (depth + 1 < inputdepth){ outputstrings.forEach(function(entry){ if (!run) {return;} RecursiveGuy(entry, depth+1, inputdepth); }); } outputstrings.forEach(function(entry){ if (!run) {return;} attempt(entry); }); },timeout); timeout += 300; } function onStart() { 'use strict'; let username = document.getElementById('username'); let passwordform = document.getElementById('password'); if (username && passwordform && run){ RecursiveGuy('',0,8); } console.log('Did it'); } onStart(); Will report back if it comes up with anything. Quote Share this post Link to post Share on other sites
HotteHü 2 Posted March 27, 2019 Holy cow, this is impressive. Who needs Engine Update, this is far more entertaining... 2 Quote Share this post Link to post Share on other sites
DraggiRussia 8 Posted March 27, 2019 (edited) The End? P.S. I used this code in Armas (maybe first) My English very bad Зайдя в эту учётку, было неотправленное письмо, я его отправил и в ответ получил этот код, который ввел в Армас. Получил в награду ARG Token, что это такое пока не знаю. Edited March 27, 2019 by DraggiRussia 1 Quote Share this post Link to post Share on other sites
Nemn 0 Posted March 27, 2019 9 minutes ago, DraggiRussia said: The End? P.S. I used this code in Armas (maybe first) My English very bad Зайдя в эту учётку, было неотправленное письмо, я его отправил и в ответ получил этот код, который ввел в Армас. Получил в награду ARG Token, что это такое пока не знаю. fake. Quote Share this post Link to post Share on other sites
iMiss 48 Posted March 27, 2019 9 minutes ago, DraggiRussia said: The End? what is password? Quote Share this post Link to post Share on other sites
mogge27 4 Posted March 27, 2019 6ac20d5025734f0f88453ec51de745d7 2 Quote Share this post Link to post Share on other sites
7GX 5 Posted March 27, 2019 Just now, mogge27 said: 6ac20d5025734f0f88453ec51de745d7 thx soo much bro, I appreciate it. Quote Share this post Link to post Share on other sites
iRawwwN 193 Posted March 27, 2019 (edited) Quote Hi, My name is Anne Partridge, I am an employee at Redhill Institute of Technology. I know that you guys focus on fashion, but this is bigger than that and I don't know who to turn to right now. Redhill is not the saintly organization it is pretending to be. All these community services they are providing are just ways for the institute to dig its claws into the communities of San Paro so that they are easier to divide and conquer when the time is right. I think that time is coming real soon... Do you know the mysterious flu that took two lives and sent the city into paranoid chaos? I developed the vaccine for it - except the vaccine I developed is different from the vaccine Redhill is planning to distribute. It is NOT the same. Redhill has been working with the government, possibly the mayor herself, to get these vaccines out before they've been given proper testing time. With my help, they convinced the courts that the chemical makeup of the vaccine is nearly identical to previous vaccines distributed to the general populace. I argued that the potential ramifications of bypassing the clinical trial process was nearly zero risk... That was before I uncovered that my vaccine was developed for the sheer goal of tricking the courts. The vaccine that you, and many other citizens would be receiving is literally a lobotomy in a syringe - a vaccine that would make the population easier to control and hypothetically will make it easier for you to be controlled. Numb and unwilling to fight - unwilling to stand up for yourselves - voices that will never cry for change when really bad shit is going down. It doesn't matter if someone is the good buy or the bad guy once this gets set off - you will be mentally neutered... or spayed.. take your pick. This is what I know right now as of this email: The government will work with Redhill to enforce a mandatory vaccination for all citizens of San Paro in the coming weeks. Memorial park is going to be set up as a pop-up medical outpost for people to receive the vaccination, you will be encouraged to go yourself, or you will get a knock at your door by the police to drag you there. For the people they don't get, they have a backup method that they are going to plant throughout Financial, block by block - massive bombs (I have attached the image below) If you get too close to these bombs once they have been activated, the amount of chemicals it is going to pump out will kill you. Redhill has enlisted the help of certain gangs - both enforcers and criminals - but it is starting to cause in-fighting between the gang members. Some don't care about the morality of this "vaccine", preferring a dumbed-down easier to rob or control the populace. Some look past that and know that they will be forced to get "treated" after Redhill is done using them. Either way - get the hell out of financial. That is their first target. If you see one of these machines, RUN: <image of bomb> I will try to sync up with you guys when I get back into town to give you more information. I am boarding my flight home now. Thanks, A. Partridge Edited March 27, 2019 by iRawwwN 3 Quote Share this post Link to post Share on other sites
AX4TEM 0 Posted March 27, 2019 Which last password??? Quote Share this post Link to post Share on other sites
7GX 5 Posted March 27, 2019 Can someone please explain me the initials of ARG. Quote Share this post Link to post Share on other sites