Advertisement
Guest User

Untitled

a guest
Dec 16th, 2016
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. $username = 'Cuchulainn';
  4. $password = ; // Oi don't save me bleedin password in a shithole loike dis.
  5.  
  6. $salt = 'd34340968a99292fb5665e';
  7.  
  8. $tmp = $username . $password . $salt;
  9. $tmp = md5($tmp);
  10.  
  11. $flag = "SharifCTF{" . $tmp . "}";
  12.  
  13. echo $flag;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement