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.

5th Sep 2024, 9:46 PM
Saad Ahmad
Saad Ahmad - avatar
2 Answers
+ 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. >
6th Sep 2024, 3:45 PM
Jerry Hobby
Jerry Hobby - avatar
0
Thats great, thanks for your response, can we change, edit or manipulate this private KEY by using developer tool?
10th Sep 2024, 2:17 AM
Saad Ahmad
Saad Ahmad - avatar