C
c676228
Hi all,
I have a question.
I use a cookie to track where our sales come from so we can credit our sales
agents. We assign a specific link to each of our agents like this and the
number 123456 represent a specific agent and then we pass the following link
to our agents.
www.mydomain.com/sales.asp?pcn=123456
I will write the value 123456 to a cookie called mycookie.
What I am worry about is this cookie's security.
If a programmer from one of our agents office knows how we credit our agent,
is it possible that their programmer immitate our program and even write his
agent code on their customers' computers when those customers visit any pages
on their site(domain) and look for some products similar to ours.
Say when a customer visit www.theirdomain.com/products.asp and just
browsing, not purchasing, but they wrote the exactly same cookie and value,
our domain name to this customer's computer like this. This cookie set never
expire.
Response.Cookies("mycookie").Domain = ".mydomain.com"
Response.Cookies("mycookie").Value="123456"
Let's say two weeks later, this customer visit our site ourdomain.com.
and try to purchase one of our products. This cookie value will be picked up
since it was written on his/her computer two weeks ago. So the sales credit
goes to this agent. Is it possible?
Thanks,
I have a question.
I use a cookie to track where our sales come from so we can credit our sales
agents. We assign a specific link to each of our agents like this and the
number 123456 represent a specific agent and then we pass the following link
to our agents.
www.mydomain.com/sales.asp?pcn=123456
I will write the value 123456 to a cookie called mycookie.
What I am worry about is this cookie's security.
If a programmer from one of our agents office knows how we credit our agent,
is it possible that their programmer immitate our program and even write his
agent code on their customers' computers when those customers visit any pages
on their site(domain) and look for some products similar to ours.
Say when a customer visit www.theirdomain.com/products.asp and just
browsing, not purchasing, but they wrote the exactly same cookie and value,
our domain name to this customer's computer like this. This cookie set never
expire.
Response.Cookies("mycookie").Domain = ".mydomain.com"
Response.Cookies("mycookie").Value="123456"
Let's say two weeks later, this customer visit our site ourdomain.com.
and try to purchase one of our products. This cookie value will be picked up
since it was written on his/her computer two weeks ago. So the sales credit
goes to this agent. Is it possible?
Thanks,