-
-
Save davidsj/96ce4b0b9e0a9178afdfc63ced24c545 to your computer and use it in GitHub Desktop.
Bob's Password Brute-Forcer from Stranger Things Season 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 FOR i = 0 TO 9999 | |
20 IF checkPassswordMatch(i) THEN | |
30 PRINT i | |
40 GOTO 70 | |
50 END | |
60 NEXT i | |
70 END |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Cleaned up Bob's code.