Guest User

Untitled

a guest
Jul 19th, 2017
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  
  5. bWAPP, or a buggy web application, is a free and open source deliberately insecure web application.
  6. It helps security enthusiasts, developers and students to discover and to prevent web vulnerabilities.
  7. bWAPP covers all major known web vulnerabilities, including all risks from the OWASP Top 10 project!
  8. It is for security-testing and educational purposes only.
  9.  
  10. Enjoy!
  11.  
  12. Malik Mesellem
  13. Twitter: @MME_IT
  14.  
  15. bWAPP is licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License (http://creativecommons.org/licenses/by-nc-nd/4.0/). Copyright © 2014 MME BVBA. All rights reserved.
  16.  
  17. */
  18.  
  19. include("admin/settings.php");
  20.  
  21. // Connection settings
  22. $server = $db_server;
  23. $username = $db_username;
  24. $password = $db_password;
  25. $database = $db_name;
  26.  
  27. // Connection settings, used in older bWAPP versions
  28. // $server = "localhost";
  29. // $username = "root";
  30. // $password = "";
  31. // $database = "bWAPP";
  32.  
  33. ?>
Add Comment
Please, Sign In to add comment