Kayıtlar

windows etiketine sahip yayınlar gösteriliyor

Getting Registered Wi-Fi Password Information via Powershell

Resim
Hello, In this article I wanted to tell you how to learn the Wi-Fi password information stored on the computer via powershell. In fact, there are many tools that do this. But it is possible to do so without driving. In Windows, open a PowerShell window to find a password that does not use third-party software. To do this, right-click the Start button or press Windows + R, and then type “powershell una in the search box and press enter. Run the following command to see a list of network profiles stored on your system: The code I used: (netsh wlan show profiles) | Select-String “\:(.+)$” | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name=”$name” key=clear)} | Select-String “Key Content\W+\:(.+)$” | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize As you can see above, I learned the Wi-Fi access information stored on my computer. By doing this you can l...

Powershell üzerinden Kayıtlı Wi-Fi Parola Bilgilerini Öğrenmek

Resim
Merhabalar, Bu yazımda sizlere powershell üzerinden bilgisayarda kayıtlı olan Wi-Fi parola bilgilerini öğrenmeyi anlatmak istedim. Aslında bunu yapan bir çok araç var. Ama araç kullanmadan bunu yapabilmek mümkün. Windows’ta üçüncü taraf yazılımı kullanmayan bir şifre bulmak için bir PowerShell penceresi açın. Bunu yapmak için, Başlat düğmesini sağ tıklayın veya Windows + R tuşlarına basın ve ardından arama kutucuğuna “powershell” yazın ve enter’a basın. Sisteminizde kayıtlı ağ profillerinin listesini görmek için aşağıdaki komutu çalıştırın: Kullanmış olduğum kod : (netsh wlan show profiles) | Select-String “\:(.+)$” | %{$name=$_.Matches.Groups[1].Value.Trim(); $_} | %{(netsh wlan show profile name=”$name” key=clear)} | Select-String “Key Content\W+\:(.+)$” | %{$pass=$_.Matches.Groups[1].Value.Trim(); $_} | %{[PSCustomObject]@{ PROFILE_NAME=$name;PASSWORD=$pass }} | Format-Table -AutoSize Yukarıda gördüğünüz üzere bilgisayarımda kayıtlı olan Wi-Fi erişim bilgile...

Windows LNK File Analysis in Forensic System Reviews

Resim
The concept of Recent Files is used to describe the most recently accessed files by the user, and in a forensics review, determining which applications were viewed by the user most recently and which documents were viewed could be of critical importance in the event resolution. In a Windows operating system, a shortcut file for files opened by the user is created under the Recent directory in the profile directory associated with that user’s account. These files can be analyzed to determine which files the user last accessed. In particular, even if files that are deleted or wiped by the user cannot be accessed, the shortcut files associated with them can be accessed and retrieved information about them. Where LNK extension link files are stored varies depending on the operating system. These files : Windows XP : \Documents and Settings\UserName\Recent \Documents and Settings\UserName\Application Data\Microsoft\Office\Recent Windows Vista and Windows 7 : ...