What's next / Explanation

So in the websites source if u succesfully enter the password t.j.ckelburg it will make a request to a txt file https://files.thisisnotawebsitedotcom.com/is-it-time-yet/well-is-it.txt and it just says NO and in the countdown js code

we see that when the txt file will say yes that is when something new will happen

  connect() {
    fetch('https://files.thisisnotawebsitedotcom.com/is-it-time-yet/well-is-it.txt', { cache: 'no-store' })
    .then(response => response.text())
    .then(data => {
      if (data == 'NO') {
        // it is not time
        this.updateCountdown()
        setInterval(this.updateCountdown.bind(this), 1000)
      } else if (data.includes('https')) {
        window.location.replace(data)
      } else {
        this.timeValue = data
        this.updateCountdown()
        setInterval(this.updateCountdown.bind(this), 1000)
      }
    })
  }

code explanation:

  • If the response is "NO", it updates a countdown and sets an interval to update it every second.
  • If the response contains "https", it redirects the browser to the URL in the response.
  • Otherwise, it sets this.timeValue to the response and updates the countdown, repeating every second.

These are the possibilties of what alex could change the txt file to

and there are multiple password that we dont know what they do they will probably be in the next stages

!!! and notawebsite.com is not connected to this arg !!!