Includes

Point: 100

Category

Web Exploitation

Question

Can you get the flag? Go to this website and see what you can discover.

Hint

Is there more code than what the inspector initially shows?

Solution

It's a basic website, thus I've checked the sources, there are 2 file script.js and style.css with following content. And there it is.

function greetings() {
  alert('This code is in a separate file!');
}

//  f7w_2of2_5a94a145}
body {
  background-color: lightblue;
}

/*  picoCTF{1nclu51v17y_1of2_  */

Flag

picoCTF{1nclu51v17y_1of2_f7w_2of2_5a94a145}

Last updated