-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.java
217 lines (96 loc) · 2.9 KB
/
Main.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
import java.io.Console;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
/**
* Main execution class for sql_injection exercise. Prompts user for username
* and password to lookup in the accompanying sqlite3 database.
*
* @author Joseph Eichenhofer
*
*/
public class Main {
private static final String DB_URL = "jdbc:sqlite:users.db";
/**
* Prompt user for username and password. Displays login success or failure
* based on lookup in user database.
*
* @param args
* n/a
*/
public static void main(String[] args) {
Console terminal = System.console();
if (terminal == null) {
System.out.println("Error fetching console. Are you running from an IDE?");
System.exit(-1);
}
while (true) {
// get username and password from user
String username = terminal.readLine("username: ");
if (username.toLowerCase().equals("exit"))
break;
String password = terminal.readLine("password: ");
// check username and password
boolean loginSuccess = false;
try {
loginSuccess = checkPW(username, password);
} catch (SQLException e) {
System.out.println("Database Error.");
e.printStackTrace();
}
if (loginSuccess)
System.out.println("Login Successful! Welcome " + username);
else
System.out.println("Login Failure.");
// separate iterations for repeated attempts
System.out.println();
}
}
/**
* Connect to the sample database and check the supplied username and password.
*
* @param username
* username to check
* @param password
* password to check for given username
* @return true iff the database has an entry matching username and password
* @throws SQLException
* if unable to access the database
*/
private static boolean checkPW(String username, String password) throws SQLException {
// declare database resources
Connection c = null;
Statement statement = null;
ResultSet results = null;
try {
// connect to the database
c = DriverManager.getConnection(DB_URL);
// check for the username/password in database
String sqlQuery = "SELECT COUNT(*) AS count FROM USERS WHERE username == '" + username
+ "' AND password == '" + password + "'";
statement = c.createStatement();
results = statement.executeQuery(sqlQuery);
// if no user with that username/password, return false; otherwise must be true
if (results.getInt("count") == 0)
return false;
else
return true;
} finally {
// release database resources (ignore any exceptions including null pointer)
try {
results.close();
} catch (Exception e) {
}
try {
statement.close();
} catch (Exception e) {
}
try {
c.close();
} catch (Exception e) {
}
}
}
}