Advertisement
Guest User

Sample Jscript from phony tech support scam site

a guest
Jun 2nd, 2015
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Initialize the campaign using the campaign key from your campaign page.  On the line below, nothing should ever need to change but the key
  2.                 var campaign = new Callpixels.Campaign({campaign_key: 'd7349e566d7ed03e3eb9a4a4863b582c'}); //assume we are using the US campaign
  3.                 default_number = "(888) 626-0428"; //This will be the default number to use, if function returns an error
  4.                 default_plain_number = "8886260428"; //This is the default plain version of that number (Make sure they are same
  5.  
  6.                 if (getURLParameter('country') == 'FR') { //Change over to the France campaign
  7.                     default_number = "09 75 18 62 26"; //This will be the default number to use, if function returns an error
  8.                     default_plain_number = "+33975186226"; //This is the default plain version of that number (Make sure they are same
  9.                     campaign = new Callpixels.Campaign({campaign_key: 'FUTURE'}); //assume we are using the US campaign
  10.                 }
  11.  
  12.                 if (getURLParameter('country') == 'AU') { //Change over to the Australian campaign
  13.                     default_number = "(07) 3106 8722"; //This will be the default number to use, if function returns an error
  14.                     default_plain_number = "+61731068722"; //This is the default plain version of that number (Make sure they are same
  15.                     campaign = new Callpixels.Campaign({campaign_key: 'FUTURE'}); //assume we are using the US campaign
  16.                 }
  17.  
  18.  
  19.                 if (getURLParameter('country') == 'GB' || getURLParameter('country') == 'UK') { //Change over to the United Kindom campaign
  20.                     default_number = "0113 320 5104"; //This will be the default number to use, if function returns an error
  21.                     default_plain_number = "+441133205104"; //This is the default plain version of that number (Make sure they are same
  22.                     campaign = new Callpixels.Campaign({campaign_key: 'FUTURE'}); //assume we are using the US campaign
  23.                 }
  24.  
  25.  
  26.                 if (getURLParameter('country') == 'NZ') { //Change over to the New Zealand campaign
  27.                     default_number = "06-880 3089"; //This will be the default number to use, if function returns an error
  28.                     default_plain_number = "+6468803089"; //This is the default plain version of that number (Make sure they are same
  29.                     campaign = new Callpixels.Campaign({campaign_key: 'FUTURE'}); //assume we are using the US campaign
  30.                 }
  31.  
  32.  
  33.                 if (getURLParameter('country') == 'ZA') { //Change over to the South Africa campaign
  34.                     default_number = "(08) 7550 9609"; //This will be the default number to use, if function returns an error
  35.                     default_plain_number = "+27875509609"; //This is the default plain version of that number (Make sure they are same
  36.                     campaign = new Callpixels.Campaign({campaign_key: 'FUTURE'}); //assume we are using the US campaign
  37.                 }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement