One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| --[[ | |
| -- BY MrCl0wnLab & r00t-3xp10it | |
| -- https://gist.github.com/MrCl0wnLab | |
| axis-network-camera-http-authentication-bypass | |
| https://www.coresecurity.com/content/axis-network-camera-http-authentication-bypass | |
| CVE: CVE-2003-0240 | |
| Vulnerability Description: |
| //main関数内 | |
| if(player1 == player2){ | |
| judge = 3;//あいこの場合 | |
| }else{ | |
| player1 = player % 3;//相手との差を求める | |
| if(player1 + 1 == player2){ | |
| judge = 1;//P1が勝ち | |
| }else{ | |
| judge = 2;//あいこは条件から外れているのでP2の勝ち | |
| } |
| <?php | |
| /* | |
| * Class DBConnection | |
| * Create a database connection using PDO | |
| * @author jonahlyn@unm.edu | |
| * | |
| * Instructions for use: | |
| * | |
| * require_once('settings.config.php'); // Define db configuration arrays here | |
| * require_once('DBConnection.php'); // Include this file |