You are not alone. I only see 2
If you came here after watching a youtube video, just know that the influencers are wrong about âsomehow making all the dots red to access the website.â I donât know where this rumor started but itâs not true.
Look to the right ![]()
Welcome to the forum @Blue .
didnt hear that rumor, just explaining what I meant by nodes as the dots that turn red when highlighted : p
Appreciate the warm welcome :3
Lmao thank you! I was pulling my hair out.
Worth noting though that those strings never actually appear as the red text.
Which does make the code more noteworthy.
To be clear, these nodes you can tap
These, we cannot yet do anything with
Each one of the nodes on the pages will take you out to the page we cannot yet do anything with
Oh ok! I had seen a couple YouTubers say (for some reason) that we must turn every node red to access the website.
So anyway, (apologies) to answer your question, the âinsideâ of the site was discovered when Skyscraper-prj posted a link to the first âwakingâ post within the blog.
From here, we just started going ham, both Googling for more subdirectories and crawling the site for more pages/posts.
So the front page is more cosmetic for the time being.
Oh ty, I never found the security logs, lol tysm ^^, the webâd nodes were the ones I was at,
The security logs are all important and update regularly so bookmark that. You will be using it a lot
There is also a link in the top post
Any idea why the live version wouldnât appear in the same way as the seemingly intentional placeholder text?
could you give me a quick tldr for all the sub directories and what yâall think of them?
Tyvm again, will do :3
We have an awesome user here, @Ekimo1920 who built this site to maintain a timeline of everything that has been happening and itâs a highly recommended read.
In regards to the differing types of capitalisation it may be worth taking note of :
All Caps is usually an attention-getter like yelling.
A standard sentence or phrase typically only has a Capital letter at the begining.
Proper nouns (names) use a capitals for each word (usually).
All lower case is a more modern thing commonly used in digital language.
Edit: Iâm now only getting 2 versions but others are getting 4 & the source files do seem to have 4 variations.
Iâll get reading then lol
The js block @ L266 of the page source (I have commented to explain) performs a randomisation (Fisher-Yates) on them in the live wp-block for cosmetics:
<script>
function scrambleWord(el) {
const original = el.dataset.word; // Get original from data-word attr
let letters = original.split(''); // Split into char array
for (let i = letters.length - 1; i > 0; i--) {
const j = Math.floor(Math.random() * (i + 1));
[letters[i], letters[j]] = [letters[j], letters[i]]; // Swap
}
el.textContent = letters.join(''); // Replace displayed text
}
document.querySelectorAll('.scramble-text').forEach(el => {
scrambleWord(el); // Scramble immediately
setInterval(() => scrambleWord(el), 1000); // Re-scramble every 1 sec
});
</script>
If there is intent, itâs in the original two instances (the meta description and the href text before cosmetics).
Appreciate your insights my friend.

