Add files via upload

master
Costas K 3 years ago committed by GitHub
parent 0727f3539d
commit e1fd91df47
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,32 @@
SELECT
json_extract(events_persisted.payload,'$.time') as 'Time',
datetime((timestamp - 116444736000000000)/10000000, 'unixepoch') as 'Payload UTC TimeStamp',
json_extract(events_persisted.payload,'$.ext.loc.tz') as 'TimeZome',
json_extract(events_persisted.payload,'$.data.Origin') as 'Origin',
json_extract(events_persisted.payload,'$.data.IsCurrentClipboardData') as 'IsCurrent',
producers.producer_id_text as 'Producer',
json_extract(events_persisted.payload,'$.data.SourceApplicationName') as 'SourceApplicationName',
json_extract(events_persisted.payload,'$.data.ItemDataCreationStatus') as 'CreationStatus',
json_extract(events_persisted.payload,'$.data.Formats') as 'Formats',
compressed_payload_size as 'size',
json_extract(events_persisted.payload,'$.ext.user.localId') as 'UserId',
json_extract(events_persisted.payload,'$.ext.os.name') as 'OS',
json_extract(events_persisted.payload,'$.ext.device.deviceClass') as 'deviceClass',
json_extract(events_persisted.payload,'$.ext.device.localId') as 'localId',
json_extract(events_persisted.payload,'$.ext.protocol.ticketKeys') as 'ticketKeys',
json_extract(events_persisted.payload,'$.ext.protocol.devMake') as 'Device Make',
json_extract(events_persisted.payload,'$.ext.protocol.devModel') as 'Device Model',
logging_binary_name
from events_persisted
join producers on events_persisted.producer_id = producers.producer_id
where full_event_name is 'Microsoft.Windows.ClipboardHistory.Service.AddItemActivity'
order by timestamp desc
Loading…
Cancel
Save