Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Chrome Autofill Profiles #33

Merged
merged 5 commits into from
May 26, 2021
Merged
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
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