L
L
LoonTiG2016-04-23 14:51:37
PHP
LoonTiG, 2016-04-23 14:51:37

Is it possible to get $flag?

There is a page source:

<?php
  include('flag.php');
  if(strcmp($_POST['password'], $password) == 0) {
    echo $flag;
  }
?>

<form method="post">
  <input type="password" name="password" placeholder="Enter password">
  <input type="submit" value="Enter">
</form>

How can I get $flag? There is access to this page, there is access to the flag.php page, but, of course, there are no flag.php sources.
What could be the ways to get the value of this variable?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
M
metallix, 2016-04-23
@metallix

Variable value or file sources?
if variable then justvar_dump($flag);

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question