I use a mobile broadband USB drive and paste the script into my pages. How can I stop him?

I recently started using a 3G mobile broadband USB drive. This is from T-Mobile, a British mobile network. Everything looked good until I tried to test a site that I developed locally by uploading it to my live server.

When I look at the code of my site, I see that two things are happening:

  • A script is inserted at the head of my docs: <script src="http://1.2.3.8/bmi-int-js/bmi.js" language="javascript"></script>

    Is there something I can add to my code to prevent the script from being inserted?

  • Usually my css is included in my page, for example:

    <link href="style.css" rel="stylesheet" type="text/css" />

however now, when I look in my source, css has been inserted directly into the page between script tags, for example:

<style type="text/css" style="display:none">div.calendar{color:#000;font-family:Verdana,Geneva,Arial,Helvetica,sans-serif;-moz-box-shadow:0px.....

This also happens for some javascript files.

What's happening?

+5
4

, , . . , T-Mobile "" , , . :

, T-Mobile ( Vodafone UK) Javascript , , , . - script Firefox Opera XHTML 1.1 XML.

head, :

<head> 
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> 
<title>The Smile Zone | Home</title> 
<link rel="stylesheet" type="text/css" href="manager/templates/smiletemplate/css/style.css" /> 
<link type="text/css" rel="stylesheet" href="http://www.jotform.com/css/styles/form.css?v3"/> 
<link href="manager/templates/smiletemplate/css/calendarview.css" rel="stylesheet" type="text/css" /> 

, , , .

+11

- SSL VPN ( Tor), - . .

+1

-, , script?

HTTP- Content-Security-Policy -, script .

, . " html5rocks: ". , , -. Google, CDN .., , .

, HTTP- -, BMI script:

Content-Security-Policy: default-src 'self';
0

All Articles