✅[METHOD] Adfocus + CustomHits = Big Views = Free Money

No need to let the "real" traffic-exchange to run.
I spun up a script which you can just fire-off from the dev console of your chromium browser (tested w/ brave) and it will report surfing activity and you earn minutes.

1. Login to customhits.net
2. open the dev console (for brave this is F12)
3. select the tab "Console"
4. Paste the JS code below
5. Hit enter
6. Profit

JS code:
Code:
function doSurf() {
    console.log('requesting new site...')
    fetch("https://customhits.net/system/modules/surf/process.php", {
      "headers": {
        "accept": "*/*",
        "accept-language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
        "pragma": "no-cache",
        "x-requested-with": "XMLHttpRequest"
      },
      "referrer": "https://customhits.net/?page=module&md=surf",
      "body": "get=1",
      "method": "POST"
    }).then(function(resp) {
        return resp.json()
    }).then(function(data) {
        console.log('received url ' + data.url + ' with surftime ' + data.time + ' seconds')
        window.setTimeout(function() {
            console.log('send success msg...');
            fetch("https://customhits.net/system/modules/surf/process.php", {
              "headers": {
                "accept": "*/*",
                "accept-language": "en-US,en;q=0.9",
                "cache-control": "no-cache",
                "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                "pragma": "no-cache",
                "x-requested-with": "XMLHttpRequest"
              },
              "referrer": "https://customhits.net/?page=module&md=surf",
              "body": "complete=1&sid="+data.sid+"&time=" + data.time,
              "method": "POST"
            }).then(function(resp) {
                return resp.text()
            }).then(function(data) {
                if(data.trim() == '1') {
                    console.info('hit was success')
                } else {
                    console.error('something went wrong')
                }
                doSurf()
            });
        }, data.time*1000)
    });
}
doSurf()


console.png


Some may port the code to node and let it run on a cloud infrastructure or rpi => no need to keep your computer on / browser open
 
No need to let the "real" traffic-exchange to run.
I spun up a script which you can just fire-off from the dev console of your chromium browser (tested w/ brave) and it will report surfing activity and you earn minutes.

1. Login to customhits.net
2. open the dev console (for brave this is F12)
3. select the tab "Console"
4. Paste the JS code below
5. Hit enter
6. Profit

JS code:
Code:
function doSurf() {
    console.log('requesting new site...')
    fetch("https://customhits.net/system/modules/surf/process.php", {
      "headers": {
        "accept": "*/*",
        "accept-language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
        "pragma": "no-cache",
        "x-requested-with": "XMLHttpRequest"
      },
      "referrer": "https://customhits.net/?page=module&md=surf",
      "body": "get=1",
      "method": "POST"
    }).then(function(resp) {
        return resp.json()
    }).then(function(data) {
        console.log('received url ' + data.url + ' with surftime ' + data.time + ' seconds')
        window.setTimeout(function() {
            console.log('send success msg...');
            fetch("https://customhits.net/system/modules/surf/process.php", {
              "headers": {
                "accept": "*/*",
                "accept-language": "en-US,en;q=0.9",
                "cache-control": "no-cache",
                "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                "pragma": "no-cache",
                "x-requested-with": "XMLHttpRequest"
              },
              "referrer": "https://customhits.net/?page=module&md=surf",
              "body": "complete=1&sid="+data.sid+"&time=" + data.time,
              "method": "POST"
            }).then(function(resp) {
                return resp.text()
            }).then(function(data) {
                if(data.trim() == '1') {
                    console.info('hit was success')
                } else {
                    console.error('something went wrong')
                }
                doSurf()
            });
        }, data.time*1000)
    });
}
doSurf()


View attachment 238068


Some may port the code to node and let it run on a cloud infrastructure or rpi => no need to keep your computer on / browser open
The crazy thing is it actually works

want to try to run 24/7 now

thanks man
 
No need to let the "real" traffic-exchange to run.
I spun up a script which you can just fire-off from the dev console of your chromium browser (tested w/ brave) and it will report surfing activity and you earn minutes.

1. Login to customhits.net
2. open the dev console (for brave this is F12)
3. select the tab "Console"
4. Paste the JS code below
5. Hit enter
6. Profit

JS code:
Code:
function doSurf() {
    console.log('requesting new site...')
    fetch("https://customhits.net/system/modules/surf/process.php", {
      "headers": {
        "accept": "*/*",
        "accept-language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
        "pragma": "no-cache",
        "x-requested-with": "XMLHttpRequest"
      },
      "referrer": "https://customhits.net/?page=module&md=surf",
      "body": "get=1",
      "method": "POST"
    }).then(function(resp) {
        return resp.json()
    }).then(function(data) {
        console.log('received url ' + data.url + ' with surftime ' + data.time + ' seconds')
        window.setTimeout(function() {
            console.log('send success msg...');
            fetch("https://customhits.net/system/modules/surf/process.php", {
              "headers": {
                "accept": "*/*",
                "accept-language": "en-US,en;q=0.9",
                "cache-control": "no-cache",
                "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                "pragma": "no-cache",
                "x-requested-with": "XMLHttpRequest"
              },
              "referrer": "https://customhits.net/?page=module&md=surf",
              "body": "complete=1&sid="+data.sid+"&time=" + data.time,
              "method": "POST"
            }).then(function(resp) {
                return resp.text()
            }).then(function(data) {
                if(data.trim() == '1') {
                    console.info('hit was success')
                } else {
                    console.error('something went wrong')
                }
                doSurf()
            });
        }, data.time*1000)
    });
}
doSurf()


View attachment 238068


Some may port the code to node and let it run on a cloud infrastructure or rpi => no need to keep your computer on / browser open

Can't believe this works, thanks a lot buddy
 
immagino che non l'hai mai più commentato, immagino che non abbia mai funzionato, ah?
Also if they pay... the earning is too too low... around 0.00014/link...
It's impossible earn money with this payment rate...
 
No need to let the "real" traffic-exchange to run.
I spun up a script which you can just fire-off from the dev console of your chromium browser (tested w/ brave) and it will report surfing activity and you earn minutes.

1. Login to customhits.net
2. open the dev console (for brave this is F12)
3. select the tab "Console"
4. Paste the JS code below
5. Hit enter
6. Profit

JS code:
Code:
function doSurf() {
    console.log('requesting new site...')
    fetch("https://customhits.net/system/modules/surf/process.php", {
      "headers": {
        "accept": "*/*",
        "accept-language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
        "pragma": "no-cache",
        "x-requested-with": "XMLHttpRequest"
      },
      "referrer": "https://customhits.net/?page=module&md=surf",
      "body": "get=1",
      "method": "POST"
    }).then(function(resp) {
        return resp.json()
    }).then(function(data) {
        console.log('received url ' + data.url + ' with surftime ' + data.time + ' seconds')
        window.setTimeout(function() {
            console.log('send success msg...');
            fetch("https://customhits.net/system/modules/surf/process.php", {
              "headers": {
                "accept": "*/*",
                "accept-language": "en-US,en;q=0.9",
                "cache-control": "no-cache",
                "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                "pragma": "no-cache",
                "x-requested-with": "XMLHttpRequest"
              },
              "referrer": "https://customhits.net/?page=module&md=surf",
              "body": "complete=1&sid="+data.sid+"&time=" + data.time,
              "method": "POST"
            }).then(function(resp) {
                return resp.text()
            }).then(function(data) {
                if(data.trim() == '1') {
                    console.info('hit was success')
                } else {
                    console.error('something went wrong')
                }
                doSurf()
            });
        }, data.time*1000)
    });
}
doSurf()


View attachment 238068


Some may port the code to node and let it run on a cloud infrastructure or rpi => no need to keep your computer on / browser open
Are you sure this still works? I tried this but my minutes doesn.t increase...
 
Is this currently working? If so can you tell me any worth PPV site?
 
No need to let the "real" traffic-exchange to run.
I spun up a script which you can just fire-off from the dev console of your chromium browser (tested w/ brave) and it will report surfing activity and you earn minutes.

1. Login to customhits.net
2. open the dev console (for brave this is F12)
3. select the tab "Console"
4. Paste the JS code below
5. Hit enter
6. Profit

JS code:
Code:
function doSurf() {
    console.log('requesting new site...')
    fetch("https://customhits.net/system/modules/surf/process.php", {
      "headers": {
        "accept": "*/*",
        "accept-language": "en-US,en;q=0.9",
        "cache-control": "no-cache",
        "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
        "pragma": "no-cache",
        "x-requested-with": "XMLHttpRequest"
      },
      "referrer": "https://customhits.net/?page=module&md=surf",
      "body": "get=1",
      "method": "POST"
    }).then(function(resp) {
        return resp.json()
    }).then(function(data) {
        console.log('received url ' + data.url + ' with surftime ' + data.time + ' seconds')
        window.setTimeout(function() {
            console.log('send success msg...');
            fetch("https://customhits.net/system/modules/surf/process.php", {
              "headers": {
                "accept": "*/*",
                "accept-language": "en-US,en;q=0.9",
                "cache-control": "no-cache",
                "content-type": "application/x-www-form-urlencoded; charset=UTF-8",
                "pragma": "no-cache",
                "x-requested-with": "XMLHttpRequest"
              },
              "referrer": "https://customhits.net/?page=module&md=surf",
              "body": "complete=1&sid="+data.sid+"&time=" + data.time,
              "method": "POST"
            }).then(function(resp) {
                return resp.text()
            }).then(function(data) {
                if(data.trim() == '1') {
                    console.info('hit was success')
                } else {
                    console.error('something went wrong')
                }
                doSurf()
            });
        }, data.time*1000)
    });
}
doSurf()


View attachment 238068


Some may port the code to node and let it run on a cloud infrastructure or rpi => no need to keep your computer on / browser open
Doesnt seem to add minutes to my account
 
Back
Top