Mobile app version of vmapp.org
Login or Join
Sherry384

: Fake returning visitor I have a Live Support app installed on my website and I see a visitor every day, all day long for the last 3 months. This visitor has 3 or more IP addresses, but

@Sherry384

Posted in: #Security #Visitors

I have a Live Support app installed on my website and I see a visitor every day, all day long for the last 3 months. This visitor has 3 or more IP addresses, but doesn't change them too often. It seems his (or her) browser supports Flash, and definietly supports JavaScript, because that's required for the Live Support app to collect data. Any idea what it might be, why would someone do such thing?

I tried to invite the visitor for chat, but my request was ignored. I also blocked two of his addresses, but he reappeared with a third one. He never visits any other page, just the one he landed on, usually our homepage.

10.03% popularity Vote Up Vote Down


Login to follow query

More posts by @Sherry384

3 Comments

Sorted by latest first Latest Oldest Best

 

@Carla537

If you have control over your html / javascript code ...

Create two fonctions, displayLiveHelp and hideLiveHelp
And add the following javascript

function onBlur() {
hideLiveHelp();
};
function onFocus(){
displayLiveHelp();
};

if (/*@cc_on!@*/false) { // check for Internet Explorer
document.onfocusin = onFocus;
document.onfocusout = onBlur;
} else {
window.onfocus = onFocus;
window.onblur = onBlur;
}


Code inspiration: stackoverflow.com/questions/1060008/is-there-a-way-to-detect-if-a-browser-window-is-not-currently-active

10% popularity Vote Up Vote Down


 

@Candy875

They might have your website open on their browser on a tab they never look at, or looked at for a while but don't look at since.

10% popularity Vote Up Vote Down


 

@Deb1703797

Odds are it is an automated tool, possibly going to your app through misconfiguration.

However it could be deliberate - you should get more info:

What activities take place while it is logged in? I would advise checking logs to see if it is trying to access anything, or if it is using your app to carry out activities either internal to your network or external.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme