Skip to content

Commit

Permalink
Merge pull request #33 from stark4n6/master
Browse files Browse the repository at this point in the history
Update Chrome Autofill Profiles
  • Loading branch information
AndrewRathbun authored May 26, 2021
2 parents dac041d + 46d96e5 commit 15601a1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion SQLMap/Maps/Windows_Chrome_AutofillProfiles.smap
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -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,
Expand All @@ -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
Expand Down

0 comments on commit 15601a1

Please sign in to comment.