diff --git a/SQLMap/Maps/Windows_Chrome_AutofillProfiles.smap b/SQLMap/Maps/Windows_Chrome_AutofillProfiles.smap index f37e18f..9ea14ba 100644 --- a/SQLMap/Maps/Windows_Chrome_AutofillProfiles.smap +++ b/SQLMap/Maps/Windows_Chrome_AutofillProfiles.smap @@ -2,7 +2,7 @@ Description: Google Chrome Autofill Profiles Author: Andrew Rathbun Email: andrew.rathbun@kroll.com Id: f9d9d731-f6d3-43a6-907d-fe10ddc9e334 -Version: 1.0 +Version: 1.01 CSVPrefix: GoogleChrome FileName: Web Data IdentifyQuery: SELECT count(*) FROM sqlite_master WHERE type='table' AND (name='autofill' OR name='credit_cards' OR name='offer_data' OR name='server_addresses' OR name='keywords'); @@ -18,6 +18,7 @@ Queries: autofill_profile_names.first_name AS FirstName, autofill_profile_names.middle_name AS MiddleName, autofill_profile_names.last_name AS LastName, + autofill_profile_emails.email as EmailAddress, autofill_profile_phones.number AS PhoneNumber, autofill_profiles.company_name AS CompanyName, autofill_profiles.street_address AS StreetAddress, @@ -27,6 +28,7 @@ Queries: autofill_profiles.use_count AS UseCount FROM autofill_profiles + INNER JOIN autofill_profile_emails ON autofill_profile_emails.guid = autofill_profiles.guid INNER JOIN autofill_profile_phones ON autofill_profiles.guid = autofill_profile_phones.guid INNER JOIN autofill_profile_names ON autofill_profile_phones.guid = autofill_profile_names.guid ORDER BY