Skip to content

Commit 4d55754

Browse files
committed
Connected Login event to the Event Receiver
1 parent 4d84c45 commit 4d55754

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cSploit/src/org/csploit/android/tools/Hydra.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,9 @@ public void onEvent(Event e) {
5959
Logger.error("Unknown event: " + e);
6060
}
6161
} else if(e instanceof Login) {
62-
//TODO
62+
Login login = (Login) e;
63+
64+
onAccountFound(login.login, login.password);
6365
} else {
6466
Logger.error("Unknown event: " + e);
6567
}

0 commit comments

Comments
 (0)