3

Is it possible to track someone by sharing a youtube link with them with a timestamp such as &t=1s if they click on it on their end?

I've recently have been told not to use timestamps because of this...

schroeder
  • 123,438
  • 55
  • 284
  • 319
  • Whose tracking them? In theory yes, if you can monitor the url from some observation point on the network (leaving aside monitoring of https traffic for a minute) . But if you mean if you sent me a link now with a time stamp on could you track me, then no. You can’t see my traffic or the endpoint at you tube. – ISMSDEV Sep 06 '19 at 15:36
  • Define "track"? And who is doing the tracking? – schroeder Sep 06 '19 at 15:37
  • 2
    YOU (and others not affiliated with YouTube) can not track links based on timestamps. YouTube can track people however they want to, regardless of timestamps in links. There is no danger in using timestamps that doesn't exist without the timestamps. – Ghedipunk Sep 06 '19 at 20:21
  • "I've recently have been told" -- by whom? – schroeder Sep 06 '19 at 21:36

3 Answers3

2

Yes, you give someone a unique timestamp, and then that URL can be tracked with the timestamp like an ID value.

But you would have to be able to track URLs, too.

schroeder
  • 123,438
  • 55
  • 284
  • 319
1

Youtube could see who originally generated the link most likely, or at least a list of people who generated that unique timestamp from the share button. The ?t= parameter on shared youtube videos is the seconds into the video, which does not disclose any information.

john doe
  • 648
  • 4
  • 15
1

Practical answer

Unless they are in YouTube's servers, there is no way for someone to track what you do if you click a link with a timestamp. If they are sniffing your HTTPS traffic, all they will see is a series of requests to YouTube.com, with none of the GET parameters included.

Tinfoil hat answer

If someone were to send you a link to a specific timestamp, it might be possible to determine that you clicked the link by seeing how many bytes of data you request from YouTube. i.e. if they send you a link with a timestamp 3 seconds from the end of a video, they could see that your requests to YouTube downloaded approximately 3 seconds worth of video (ignoring page load). This would require someone to be sniffing your network traffic, and would only allow "tracking" of whether you clicked that specific link. I can't imagine that this approach would be feasible or useful in any way.