Difference between Pasting and typing?

  • Thread starter Thread starter lionely
  • Start date Start date
  • Tags Tags
    Difference
Click For Summary
When attempting to log into a website, users may encounter issues where pasting a password fails while typing it works. This can occur due to invisible characters in the copied password or restrictions set by the website's code. Password fields can be programmed to prevent pasting from the clipboard, often using JavaScript to differentiate between input methods. The web browser has mechanisms that signal the source of input, but the specifics of this functionality are not widely understood. Developers can implement features in applications to control paste functionality, such as using flags or disabling input fields temporarily. Understanding these mechanisms can help users troubleshoot login issues related to password input methods.
lionely
Messages
574
Reaction score
2
One day I was logging into my account on a website and if I copied and pasted the password it didn't work, but if I typed it out it logged me in. I was curious as to why this happens..

Could someone please elaborate for me please.
 
Computer science news on Phys.org
Usually you can paste your password, but it depends where you copied it from, there might invisible characters you can't see. I'm not aware of a method to detect a pasted password as opposed to a typed one on a website.
 
Oh I see. Thanks!
 
i've come across the same, but it won't let me paste anything in the box :confused:
 
Difference is that they come from different inputs. One comes from the operating system clipboard and another from the keyboard.

Password fields in the web, depending on the language (HTML, AS3, etc.) that the control was implemented can prevent passwords to be inserted from specific inputs. Also, if the control is from HTML it can be modified with JavaScript to reject any clipboard input.

If you are really into discovering what is preventing you from pasting a password, you can try loading the page without say the JavaScript code that is blocking the clipboard input into said field and see if it allows pasting. Just for fun. (Read the terms of use of the web page before. You don't want to or should mess with something forbidden).
 
Last edited:
But how does the program know how to differentiate between the clipboard and keyboard. Like the input from the keyboard has a different value or something? I don't really know the jargon. I don't work with these kind of things.
 
lionely said:
But how does the program know how to differentiate between the clipboard and keyboard. Like the input from the keyboard has a different value or something? I don't really know the jargon. I don't work with these kind of things.
EDIT: If it is JavaScript, then the language takes care of identifying the input source. It is inner workings that I have no knowledge of.

The web browser provides a layer that signals where the input came from. How exactly that mechanism works is unknown to me for I have never worked with web browsers source code. I really have no idea how that interface between the operating system clipboard and browser works, but it is there.

In Windows application development for example I could make a context menu for a TextBox with a button that reads "Paste" on it. If I wouldn't want my application to allow the user to paste anything in a password TextBox I would go for the onClick() event of that button and activate a flag (it can be a boolean value) so that in another event the password TextBox reads that flag and rejects any input.

Or in the very moment I activate the flag I could disable the TextBox for a few milliseconds, enough to not accept the input.

There are many ways.
 
Last edited:

Similar threads

  • · Replies 6 ·
Replies
6
Views
2K
  • · Replies 12 ·
Replies
12
Views
2K
  • · Replies 84 ·
3
Replies
84
Views
6K
  • · Replies 36 ·
2
Replies
36
Views
4K
  • · Replies 37 ·
2
Replies
37
Views
4K
  • · Replies 5 ·
Replies
5
Views
500
Replies
6
Views
9K
  • · Replies 14 ·
Replies
14
Views
2K
Replies
4
Views
4K
  • · Replies 3 ·
Replies
3
Views
4K