I found the some strange <script/>
tags on a site:
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/document_iterator.js"></script>
<script src="chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/find_proxy.js"></script>
...
I haven't been able to find much information on this, but I highly doubt this is actually related to Google Chrome since this site in particular is still using <table>
s for layout, and the source in question was retrieved with curl
not a graphical web browser.
So,
- What on earth is this?
- What is
chrome-extension://
- Why is it using
lifbcibllhkdhoafpjfnlhfpfgnpldfl
as a directory name - Why is it pretending to be valid URL to a javascript file?
- Why would I need
find_proxy
ordocument_iterator
Solved. As far as I know...
chrixian
was right, It seems that only on this and a few select other pages, someone had re-saved them from Chrome's source-view with the Skype extension installed.
Thanks everyone for all your help, +1
's for all! enjoy!
tcpdump
ortcpflow
to view the HTML as it's leaving the server. Hope this helps! – Mitosis