6

I am running an application server and logging all requests for analysis purposes later. One interesting trend I noticed last night was, I had a visitor from Texas on FIOS share identical traffic with bluecoat in California.

What would cause the traffic to be identical? For every request the visitor made, bluecoat made one subsequently within milliseconds of his request. If it is caching, why would there be identical requests? Wouldn't it go through the cache / proxy on their end, and I would only see the proxied request?

I'm just curious, this is an interesting pattern that shows similarities of a DDoS attack, but with far fewer resources. Is it possible that the visitor had malware on their computer?

Any other ideas?

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109

5 Answers5

4

This is most likely BlueCoat's "WebPulse" service.

When a user accesses a URL through a BlueCoat Proxy and BlueCoat doesn't have any information on that URL, it can be reported back to "WebPulse", which then scans the URL looking for malware, etc.

The first request will be the user accessing the URL, the second is WebPulse doing its scan on the same URL.

pjmorse
  • 1,550
  • 1
  • 17
  • 34
  • +1 You can find some documentation at https://kb.bluecoat.com/index?page=content&id=KB3400 – pehrs May 01 '11 at 12:30
2

It might be due to various issues: 1 - An attacker is trying to confuse App. server caching using tunneled connections.

2 - A regular user is connecting through a mis-configured VPN+proxy which duplicates the traffic by sending a copy from each site.

3 - A S-NAT issue.

4 - or may be an issue with your own proxy (I don't know whther you have)

Hosm
  • 53
  • 1
  • 9
1

This sounds like a replay attack

Wikipedia:

A replay attack is a form of network attack in which a valid data transmission is maliciously or fraudulently repeated or delayed. This is carried out either by the originator or by an adversary who intercepts the data and retransmits it, possibly as part of a masquerade attack by IP packet substitution (such as stream cipher attack).

JeffG
  • 1,194
  • 6
  • 18
0

They're using a web page sharing service, that allows people to 'surf together'.

Essobi
  • 901
  • 6
  • 9
0

I'm not too familiar with BlueCoat, but they do offer caching and filtering services. They could be grabbing your content for that purpose.

Xenoactive
  • 26
  • 1