로그인 세부 정보가 브라우저에 저장되어 있는 웹사이트에 있을 때 브라우저는 자동으로 사용자 이름과 비밀번호 필드(automatically fills-in both the username and password fields) 를 모두 채웁니다. 계정을 보유하고 있는 웹사이트를 방문하는 동안 이 동작을 발견했을 수 있습니다. 사용자 이름은 명확하게 보이지만 암호는 별표 뒤에 숨겨져 있습니다.
브라우저가 귀하의 비밀번호를 공개하지 않는 것이 일반적입니다. 그렇지 않으면 옆에 앉아 있는 사람이 비밀번호가 무엇인지 알게 될 것입니다. 그러나 주변에 아무도 없는지 확인하고 별표 뒤에 있는 암호를 보려면 다음과 같이 브라우저에서 암호를 수행할 수 있습니다.
검사 요소를 사용하여 별표(Asterisks Using Inspect Element) 뒤에 암호 공개
HTML 코딩 의 초보자이든 , 웹 개발 전문가 이든, (an expert at web development)HTML 에 대한 zip을 알고 있든 관계없이 검사 요소(inspect element) 도구를 사용 하여 암호를 표시할 수 있습니다.
이 도구는 브라우저에서 선택한 요소의 소스 코드를 표시하여 코드를 변경할 수 있도록 도와줍니다. 코드에 대한 모든 변경 사항은 실시간으로 사이트에 반영됩니다.
이 실시간 변경 기능 덕분에 검사 요소(inspect element) 를 사용 하여 별표 뒤에 숨겨진 내용을 찾을 수 있습니다. 방법은 다음과 같습니다.
- 별표 뒤에 있는 암호를 공개하려는 웹사이트를 시작합니다.
- (Right-click)별표가 있는 비밀번호 필드를 마우스 오른쪽 버튼으로 클릭 하고 검사(Inspect) 를 선택 합니다. 검사 요소 도구를 트리거합니다.
- 비밀번호 필드의 코드는 콘솔에서 강조 표시됩니다. <input type=”password” > 태그 에서 비밀번호(password) 를 두 번 클릭하고 이름을 text 로 변경하고 Enter 키를 누르 십시오(Enter) .
- 비밀번호 필드의 별표는 실제 비밀번호로 빠르게 바뀝니다. 원하는 경우 다른 텍스트와 마찬가지로 복사할 수 있습니다.
이것은 Chrome(Chrome) 및 Firefox 를 포함한 모든 인기 있는 브라우저에서 작동합니다 .
JavaScript를 사용 (Use JavaScript)하여 별표 뒤에 있는 암호(Passwords Behind Asterisks) 보기
암호를 공개할 때마다 코드를 변경하고 싶지 않다면 한 번의 클릭으로 작업을 수행하는 JavaScript를 사용할(use JavaScript that’ll do the job for you in a single-click) 수 있습니다 .
암호를 표시 하는 JavaScript 는 주소 표시줄에서 수동으로 실행할 수 있지만 책갈피 표시줄에 추가하여 한 번만 클릭하면 실행할 수 있습니다.
- (Click)책갈피를 추가하려면 브라우저의 주소 표시줄 옆에 있는 별표 아이콘을 클릭하십시오 .
- 책갈피를 저장하기 전에 편집해야 하므로 다음 화면 에서 더보기(More) 를 클릭 합니다.
- 다음 화면에서 이름(Name) 필드 에 원하는 이름을 입력합니다 . URL 필드에 다음 (URL)JavaScript 코드 를 복사하여 붙여넣습니다 .
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Here are your passwords:\n\n" + s); else alert("No passwords were found on the page.");})();
- 이제 암호 대신 별표가 표시되는 웹사이트로 이동합니다. 새로 추가된 책갈피를 클릭(Click) 하면 별표 뒤에 있는 암호가 화면에 나타납니다.
JavaScript 이기 때문에 Java 를 지원하는 모든 브라우저에서 작동해야 합니다 .
브라우저 확장(Use Browser Extensions) 을 사용하여 암호 보기(View Passwords)
브라우저에서 별표 뒤에 있는 암호를 볼 수 있는 확장 기능도 있습니다. 이는 다른 어떤 방법보다 사용하기 쉽고 브라우저에 설치하기만 하면 됩니다.
Chrome 사용자는 비밀번호 표시(Show Password) 확장 프로그램을 사용하여 비밀번호를 표시할 수 있습니다. Opera 사용자는 암호 표시(Show Password) 확장을 사용할 수 있습니다. Mozilla Firefox 에는 Show/hide passwords 확장 프로그램이 있어 비밀번호를 빠르게 표시하고 숨길 수 있습니다.
(View Saved Passwords)Chrome 및 Firefox 에서 저장된 비밀번호 보기
이미 알고 계시겠지만 별표 뒤에 있는 것은 브라우저에 저장된 비밀번호입니다. 브라우저 자체에서 이러한 비밀번호를 공개할 수 있다면 별표를 비밀번호로 바꾸는 방법을 사용할 필요가 없습니다.
Chrome 및 Firefox 에서 저장된 비밀번호를 보는 방법은 다음과 같습니다.
Chrome에 저장된 비밀번호에 액세스
- (Click)오른쪽 상단의 점 3개를 클릭 하고 설정(Settings) 을 선택 하여 Chrome 설정 메뉴를 엽니다.
- 다음 화면 에서 비밀번호(Passwords) 를 클릭한 다음 확인하려는 비밀번호 옆에 있는 눈 모양 아이콘을 클릭합니다.
- 컴퓨터의 비밀번호를 입력하라는 메시지가 표시되면 저장된 모든 비밀번호를 볼(view all of your saved passwords) 수 있습니다 .
Firefox에서 저장된 비밀번호 보기
- (Click)오른쪽 상단 모서리에 있는 세 개의 수평선을 클릭하고 기본 설정 을 선택 합니다(Preferences) .
- 왼쪽 사이드바에서 개인 정보 및 보안(Privacy & Security) 을 선택 하고 오른쪽 창에서 저장된 로그인 을 클릭합니다.(Saved Logins)
- 목록에 있는 모든 암호(Show Passwords) 를 표시하려면 암호 표시를 클릭하십시오 .
이 패널을 사용하여 브라우저에서 특정 또는 모든 암호를 제거할 수도 있습니다.
How To View A Password Behind The Asterisks In a Browser
When you’re оn a website whose login details are saved in your browser, the browser automatically fills-in both the username and password fields for you. You may have noticed this behavior while visiting a website where you hold an account. While the username is clearly visible, the password is hidden behind asterisks.
It’s common for browsers not to reveal your passwords, otherwise the person sitting next to you will find out what the password is. However, if you’ve made sure no one’s around you and you want to see the password behind the asterisks, here are several ways to do it in your browser.
Reveal Passwords
Behind Asterisks Using Inspect Element
Whether you’re a beginner in HTML coding, an expert at web development, or you know zip about HTML, you can still use the inspect element tool to reveal your passwords.
The tool helps reveal the source code of the selected elements in your browser so you can make changes to the code. Any changes made to the code will reflect on the site in real-time.
Thanks to this real-time change feature, you can use inspect element to find out what’s hiding behind the asterisks. Here’s how you do it.
- Launch the website where you want to reveal the passwords behind asterisks.
- Right-click on the password field where you see asterisks and select Inspect. It’ll trigger the inspect element tool.
- The code for the password field will be highlighted in the console. Double-click on password in the <input type=”password”> tag, rename it to text, and hit Enter.
- Asterisks in the password field will quickly turn into your real and actual password. You may copy it as you would any other text if you want.
This
should work in all the popular browsers including Chrome and Firefox.
Use JavaScript To View The Passwords Behind Asterisks
If you don’t want to make changes to a code each time you want to reveal a password, you can use JavaScript that’ll do the job for you in a single-click.
Although the JavaScript to reveal passwords can be run manually from the address bar, you may want to add it to the bookmarks bar so it’s then just a matter of a single-click to execute it.
- Click on the star icon next to the address bar in your browser to add a bookmark.
- Click on More on the following screen as you need to edit the bookmark before you save it.
- On the following screen, enter any name you want in the Name field. For the URL field, copy and paste the following JavaScript code:
javascript:(function(){var s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) { f = F[j]; for (i=0; i<f.length; ++i) { if (f[i].type.toLowerCase() == "password") s += f[i].value + "\n"; } } if (s) alert("Here are your passwords:\n\n" + s); else alert("No passwords were found on the page.");})();
- Now go to any website where you see asterisks in place of a password. Click on the newly added bookmark and the password behind the asterisks will appear on your screen.
Since it’s JavaScript, it should work in all browsers that support Java.
Use Browser Extensions To View Passwords
There
are extensions as well that let you view the passwords behind
asterisks in your browsers. These are easier to use than any other
methods and all you need to do is install them in your browser.
Chrome users can use the Show Password extension to reveal the passwords. Opera users have the Show Password extension available for them. Mozilla Firefox has Show/hide passwords extension to quickly show and hide your passwords.
View Saved Passwords In Chrome And Firefox
As you may already know, what you’ve got behind the asterisks are the passwords saved in your browsers. If you could reveal these passwords in the browser itself, you won’t have to use any methods to turn asterisks into passwords.
Here’s how you view your saved passwords in Chrome and Firefox:
Access Saved Passwords In Chrome
- Click on the three-dots at the top-right corner and select Settings to open Chrome settings menu.
- Click on Passwords on the following screen and then click on the eye icon next to the password you want to view.
View Saved Passwords In Firefox
- Click on the three horizontal-lines at the top-right corner and select Preferences.
- Choose Privacy & Security from the left sidebar and click on Saved Logins in the right pane.
- Click on Show Passwords to reveal all the passwords in the list.
You
can also remove specific or all the passwords from your browser using
this panel.