From a3cf13aefa75f3c4f969875b5a3f4ca66e4b38f6 Mon Sep 17 00:00:00 2001 From: shobikaramasubbarayalu Date: Tue, 22 Feb 2022 11:55:24 -0500 Subject: [PATCH 1/8] New change --- .github/workflows/build.yml | 1 + SQL/sql1.php | 1 + 2 files changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 11b12a3..6cd2c47 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,7 @@ on: branches: - master - test + - release-* pull_request: types: [opened, synchronize, reopened] jobs: diff --git a/SQL/sql1.php b/SQL/sql1.php index 4d78ef8..8308634 100644 --- a/SQL/sql1.php +++ b/SQL/sql1.php @@ -30,6 +30,7 @@ $conn = mysqli_connect($servername,$username,$password,$db); $conn = mysqli_connect($servername,$username,$password,$db); + // Check connection if (!$conn) { die("Connection failed: " . mysqli_connect_error()); From 8c5b5039bb37c4ea7c70d4d254b1d159168f1259 Mon Sep 17 00:00:00 2001 From: iamdhil Date: Tue, 22 Feb 2022 12:20:11 -0500 Subject: [PATCH 2/8] added change --- SQL/sql2.php | 1 + 1 file changed, 1 insertion(+) diff --git a/SQL/sql2.php b/SQL/sql2.php index 0023712..d01c76c 100644 --- a/SQL/sql2.php +++ b/SQL/sql2.php @@ -28,6 +28,7 @@ // Create connection $conn = new mysqli($servername, $username, $password,$db); + // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); From a8ea5abb08ee1ad1bc6629a7181bf7efadb7a33d Mon Sep 17 00:00:00 2001 From: iamdhil Date: Tue, 22 Feb 2022 12:28:23 -0500 Subject: [PATCH 3/8] added change --- .idea/.gitignore | 3 +++ .idea/Vulnerable-Web-Application.iml | 9 +++++++++ .idea/misc.xml | 6 ++++++ .idea/modules.xml | 8 ++++++++ .idea/vcs.xml | 6 ++++++ SQL/sql3.php | 2 ++ 6 files changed, 34 insertions(+) create mode 100644 .idea/.gitignore create mode 100644 .idea/Vulnerable-Web-Application.iml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/.idea/Vulnerable-Web-Application.iml b/.idea/Vulnerable-Web-Application.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/Vulnerable-Web-Application.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..639900d --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..2882444 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/SQL/sql3.php b/SQL/sql3.php index 773619f..d73dba7 100644 --- a/SQL/sql3.php +++ b/SQL/sql3.php @@ -20,6 +20,8 @@ + + Date: Tue, 22 Feb 2022 12:34:00 -0500 Subject: [PATCH 4/8] added change --- SQL/sql2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQL/sql2.php b/SQL/sql2.php index d01c76c..f844b93 100644 --- a/SQL/sql2.php +++ b/SQL/sql2.php @@ -27,7 +27,7 @@ // Create connection $conn = new mysqli($servername, $username, $password,$db); - + $conn = mysqli_connect($servername,$username,$password,$db); // Check connection if ($conn->connect_error) { From 91935c07afdcaf25ad85a4fbde6970cbbfb67f7e Mon Sep 17 00:00:00 2001 From: shobikaramasubbarayalu Date: Tue, 22 Feb 2022 12:46:33 -0500 Subject: [PATCH 5/8] New change --- SQL/sql6.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SQL/sql6.php b/SQL/sql6.php index 26a2292..b723583 100644 --- a/SQL/sql6.php +++ b/SQL/sql6.php @@ -16,7 +16,7 @@ - + connect_error) { die("Connection failed: " . $conn->connect_error); - } + } //echo "Connected successfully"; $source = ""; if(isset($_GET["submit"])){ @@ -44,6 +44,6 @@ } } -?> +?> From c5b1dc090e729d2069eaeed07021b3eaa35ddd79 Mon Sep 17 00:00:00 2001 From: shobikaramasubbarayalu Date: Tue, 22 Feb 2022 12:47:09 -0500 Subject: [PATCH 6/8] New change --- composer.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 composer.json diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..b1db492 --- /dev/null +++ b/composer.json @@ -0,0 +1,5 @@ +{ + "require": { + "phpunit/phpunit": "4.3.*" + } +} \ No newline at end of file From b12f101d91e4cda3dde57e4469db7df70ab7dacc Mon Sep 17 00:00:00 2001 From: shobikaramasubbarayalu Date: Tue, 22 Feb 2022 12:49:05 -0500 Subject: [PATCH 7/8] New change --- SQL/sql6.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SQL/sql6.php b/SQL/sql6.php index b723583..f666560 100644 --- a/SQL/sql6.php +++ b/SQL/sql6.php @@ -16,7 +16,7 @@ - + Date: Tue, 22 Feb 2022 12:49:30 -0500 Subject: [PATCH 8/8] New change --- .idea/Vulnerable-Web-Application.iml | 9 + .idea/modules.xml | 8 + .idea/vcs.xml | 6 + .idea/workspace.xml | 278 +++++++++++++++++++++++++++ 4 files changed, 301 insertions(+) create mode 100644 .idea/Vulnerable-Web-Application.iml create mode 100644 .idea/modules.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/Vulnerable-Web-Application.iml b/.idea/Vulnerable-Web-Application.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/Vulnerable-Web-Application.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..2882444 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..ae7a367 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,278 @@ + + + + + + + + + + + + + + + + + + + + + + + + + 1645149159021 + + + 1645149212473 + + + 1645149663335 + + + 1645149917618 + + + 1645207967412 + + + 1645208602592 + + + 1645208848636 + + + 1645211480802 + + + 1645213997297 + + + 1645215290283 + + + 1645216066659 + + + 1645216088872 + + + 1645216166909 + + + 1645216653317 + + + 1645216824768 + + + 1645217051424 + + + 1645544310739 + + + 1645544803941 + + + 1645544896484 + + + 1645545435448 + + + 1645546040245 + + + 1645546194007 + + + 1645546719917 + + + 1645547139336 + + + 1645547427177 + + + 1645547654309 + + + 1645548186657 + + + 1645548924931 + + + 1645551993758 + + + 1645552029033 + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file