0
Private KEY / Password?
When we set a Private KEY or password by setting up. <input type=âpasswordâ name=âpaypwdâ class=âpassword input-textâ placeholder=âPlease enter KEYâ autocomplete=âoffâ fdprocessedid=ânp9u1wâ> Where is the PRIVATE KEY in this code and why is the last code changing after sometimes and if there is a password or Private KEY mentioned what and where is it? If there is not mentioned then how can we find it from coding? Please teach me.
2 Respostas
+ 1
The form field stores the data in the field named "paypwd", as you called it that in the tags. The field is not encrypted. The password input field is distinct only that it uses DOTS instead of showing the letters on the displayed field. Otherwise, it's just like any text field.
You will then take that value and encode it for storing or validating in the database when you authenticate the user. You can break that line down like this:
<input
type=âpasswordâ -- forces the form field to display ****** when data is entered.
name=âpaypwdâ -- the name of the variable where the data is stored
class=âpassword input-textâ -- your CSS class that affects colors, fonts, sizes, whatever
placeholder=âPlease enter KEYâ -- the text displayed when the field is empty
autocomplete=âoffâ -- prevents the auto-complete from entering text while the user is typing
fdprocessedid=ânp9u1wâ -- no idea about this. Rumor has it that McAfee anti-virus adds this for some reason.
>
0
Thats great, thanks for your response, can we change, edit or manipulate this private KEY by using developer tool?