Skip to content

Commit

Permalink
Microsoft Account Logins
Browse files Browse the repository at this point in the history
Added the ability to login to Migrated Microsoft Accounts using a checkbox.
Tweaked the reach module.
(Big thanks to Wurst for the URL and REGEX)
  • Loading branch information
coltonk9043 committed May 19, 2022
1 parent 34bd2f8 commit 71da0d6
Show file tree
Hide file tree
Showing 11 changed files with 494 additions and 66 deletions.
14 changes: 11 additions & 3 deletions altmanager/Alt.java
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,24 @@ public class Alt {
private String email;
private String username;
private String password;
private boolean microsoft = false;
private boolean isCracked = false;

public Alt(String email, String password) {


public Alt(String email, String password, boolean microsoft) {
this.email = email;
this.password = password;
this.microsoft = microsoft;
if(this.password.isEmpty()) {
this.isCracked = true;
}
}

public Alt(String email, String password, String username) {
public Alt(String email, String password, String username, boolean microsoft) {
this.email = email;
this.password = password;
this.username = username;
this.microsoft = microsoft;
if(this.password.isEmpty()) {
this.isCracked = true;
}
Expand Down Expand Up @@ -53,4 +57,8 @@ public String getPassword() {
public boolean isCracked() {
return this.isCracked;
}

public boolean isMicrosoft() {
return this.microsoft;
}
}
Loading

0 comments on commit 71da0d6

Please sign in to comment.