S2: Exploring The Input
Now we need to actually explore the program statically and see where this is happening. If you have been following most of these writeups, then you would remember the common exploration of the login system in Crippling Logins which showcased the login input and the way data was being thrown into the text functions.
Note that we also identified the text functions throughout some of the writeups, but I will leave you with a note below.
Analyzing the login
To make sure we are all on the same path, I am looking at the portion of the GUI that resembles the rendered login tab which contains the login button and text to indicate that there was a password being used. This section looks like this

Analyzing the code section
If you paid attention to the way data was looking, you would understand that the issue happened between the phrase Last password...: being outputted and the final string of text outputting the status of the value. So we can take the following code block into analysis.
See the pattern? So now we have correctly identified not only the location of the issue, but also the reason its happening.
Last updated
