RT
There is a backend management page, which displays a mobile phone number. F12 to view the source code, locate this place, and find that there is no such number
Global search, there is no such number
Where did this number come from? If it can be displayed on the page, it must come from the page. I feel that my view of the web has been challenged
During the page operation, no http request is initiated, so it is impossible to interact with the background
给我你的怀抱2017-07-05 10:49:29
input is a replaced element, just like you won’t see the image itself in the source code. This should be the value set by JS to the input.
In the console, document.getElementById('textfield-1371-inputE1').value
代言2017-07-05 10:49:29
Is there an actual link address to check? It may be JS: document.getElementById("ID").innerHTML=Mobile phone number
漂亮男人2017-07-05 10:49:29
It should be the mobile phone number retrieved from the database by the backend based on the login account, and then returned to the frontend as a variable, so you can’t see this string in the code