✈️ Scaling up to $20,000 month using free traffic | ⛔ Passive income on autopilot

Can you tell some more about it...maybe it will more helpful for everyone..like which bot you are using and do you drive comment traffic if yt or insta or Twitter... thanks
I write my own bots, if you want to learn doing it too - you can start with software like BAS or if you want to learn directly how to automate stuff, look into node.js and puppeteer(or playwright).

How can I check how Many subnet I have ?
Restart your modem 10 times and check how various IP's you got.

You can working on:

[Journey] passive income $1000/day with dead youtube method | autopilot?

Maybe it can be more easy to Start earning Money online ? Or its dead ?
It's still doable as you can see there are still tons of spam comments in comments sections and live videos. I did not continue this journey tho and Im not sure if you should take this as your first one because it might be quite hard to crack it.


but I didn't get results (maybe one of the flaws was the inconstancy), however you are killing it. I wish you the best!
It's all in clicks and targeting, really.

I would like to know your opinion about CEF for web automation. I used it years ago and it worked fine.
I recently discovered Playwright, but I haven't tried it yet so I don't know what the anti-bot systems will think.
Every case differs, some sites will be impossible to automate using those tools, some will be easy.

I have a question about your AI, when you send the link (to the landing page) to your potential client, is this also determined by the AI or do you do it programmatically? For example: The A.I sends 4 messages and then the link to the landing.
programmatically, a lot of logic is done by simple if/else statements.

By the way, I have read 4 of your threads (the one on YouTube and the 3 about your "dead" traffic source). There is a lot of information in them, thanks for share it.
Hit em like buttons so I know which posts were helpful to you and I could write more of them.
 
Use puppeteer and fly under the radar

For some this is common knowledge, feel free to skip this then. :)

If you don't want to pay for a stealth browser(just like me, I'm cheap af) but you want to automate your tasks, what can you do?

You can use puppeteer and still have a good stealth,

1. avoid basic fingerprinting, use mac m1 machines, which can be rented from hetzner for as low as $55/month
2. important to have a custom remote-debugging-port instead of 0 (which is set by the puppeteer)
3. disable default pptr/playwright args and set your own, my example could be not enough for your use case
4. do not use headless mode, only headful. headless is too hard to spoof and its not worth the hussle
5. do not try to emulate windows user agent on mac machine and vice-versa. (or windows on linux, etc). if you use windows os, you must stay with windows useragents.

These settings are not meant for massive scale, for that, you will need to work on more fingerprinting evasions but to run a few dozen of accounts, this is completely enough.

Simplified examples with puppeteer and playwright:

JavaScript:
const puppeteer = require('puppeteer-core');

(async () => {

  const browser = await puppeteer.launch({
    headless: false,
    executablePath: '/usr/bin/google-chrome-stable',
    ignoreDefaultArgs: true,
    args: [
      '--remote-debugging-port=9444',            
      '--user-data-dir=~/chrome-profiles/test-account-1',
      '--no-first-run',
      '--no-default-browser-check',
    ]
  });

  await new Promise(r => setTimeout(r, 2000));


  const pages = await browser.pages();
  const page = pages[0];

  await page.goto('https://www.google.com/');

})();

})();


const { chromium } = require('playwright');

(async () => {
  const browserServer = await chromium.launchServer({
    executablePath: '/usr/bin/google-chrome-stable',
    port: 9444,
    headless: false,
    ignoreDefaultArgs: true,
    args: [
      '--no-first-run',
      '--no-default-browser-check',
      '--user-data-dir=~/chrome-profiles/test-account-1',
    ]
  });

  const wsEndpoint = browserServer.wsEndpoint();

  const browser = await chromium.connect(wsEndpoint);

  const page = await browser.newPage()

  await page.goto('https://google.com');

  await browserServer.close();
})();

View attachment 226271


View attachment 226272

Recaptcha scoring(0.9 = bypassed all captchas with a green checkbox instead of the challenge)
View attachment 226273


View attachment 226274thanks to your code
 
Other than Fastlane Millionaire, what are your favorite books?
 
I write my own bots, if you want to learn doing it too - you can start with software like BAS or if you want to learn directly how to automate stuff, look into node.js and puppeteer(or playwright).


Restart your modem 10 times and check how various IP's you got.


It's still doable as you can see there are still tons of spam comments in comments sections and live videos. I did not continue this journey tho and Im not sure if you should take this as your first one because it might be quite hard to crack it.



It's all in clicks and targeting, really.


Every case differs, some sites will be impossible to automate using those tools, some will be easy.


programmatically, a lot of logic is done by simple if/else statements.


Hit em like buttons so I know which posts were helpful to you and I could write more of them.
So what do you advice me ? Start a Journey like that One in This thread ?
 
This is probably the most gem thread i have ever read here in BHW.

Any tips for people who wanna scale IG accounts & surpass 200+ accounts without getting mass slammed from Instagram?
 
Every case differs, some sites will be impossible to automate using those tools, some will be easy.
I think you're right, especially when it comes to CEF, I just took a look at the project and nothing has changed since the last time I used it a couple of yearsago, but I've been thinking maybe using mitmproxy to inject Javascript to spoof the data used by fingerprinting systems (useragent, extensions, graphic card...), It could be a viable option to be able to automate big such as fb, ig, tw...What do you think about this?

It's all in clicks and targeting, really
Yeah true. In my case, I think the mistake was not making profiles that seemed real (Which made the CTR and conversion rate very low), apart from the lack of consistency.

Hit em like buttons so I know which posts were helpful to you and I could write more of them.
Sure, as soon as I have some time, I was thinking of rereading your threads anyway.

programmatically, a lot of logic is done by simple if/else statements
It seemed to me the most viable and fastest option since teaching the AI to understand the context of a conversation, in addition to determining when the target is ready to receive the link to the LP, I imagine it will be quite expensive (time and $$).

If you don't want to answer, feel free not to, but I'm curious if the content of the datasets you used to train your A.I. were a set of dialogs?

P.D: English is not my mother language, I am sorry if I have made any grammatical mistakes or if my posts are difficult to understand.
 
Last edited:
I kind of feel like I'm kind of hijacking your thread asking questions about coding so I apologize for that.

Are you using puppeteer-cluster for running multiple accounts or is there something else I should be looking at? I've been searching around in google and I'm trying to figure out how to launch multiple chrome profiles with it. I'm not sure how to exactly pass in multiple paths for each profile.
 
does pupperter works on youtube?
Yes, but google is checking for canvas/webgl fingerprints so take that in account.

Other than Fastlane Millionaire, what are your favorite books?
You can check that here.

So what do you advice me ? Start a Journey like that One in This thread ?
My journey sucks. I'm slow, take bad decisions and my results are bad. I would suggest compiling a list of journeys you find interesting and make your own from them.

For Twitter , using their API its bad ?
You probably can get away by combining stuff, e.g. - use stealth browsers for actions that will be highly protected(login/registration) and then use HTTP requests to do the rest of it. If you are talking about official API, then yes, forget about it, you cant use it to spam.

This is probably the most gem thread i have ever read here in BHW.
Thanks, I doubt that but I'm trying to share more lately.

Any tips for people who wanna scale IG accounts & surpass 200+ accounts without getting mass slammed from Instagram?
Use a bot that fakes devices and a lot of proxies. You can find it on github.


I think you're right, especially when it comes to CEF, I just took a look at the project and nothing has changed since the last time I used it a couple of yearsago, but I've been thinking maybe using mitmproxy to inject Javascript to spoof the data used by fingerprinting systems (useragent, extensions, graphic card...), It could be a viable option to be able to automate big such as fb, ig, tw...What do you think about this?
You do not need to use mitm to do this, just check https://github.com/berstend/puppeteer-extra/tree/master/packages/extract-stealth-evasions

Yeah true. In my case, I think the mistake was not making profiles that seemed real (Which made the CTR and conversion rate very low), apart from the lack of consistency.
Yes, I like to make them look real.

It seemed to me the most viable and fastest option since teaching the AI to understand the context of a conversation, in addition to determining when the target is ready to receive the link to the LP, I imagine it will be quite expensive (time and $$).
Yes, it was very time-consuming. Now knowing this, probably I wouldn't went for adult niche and building A.I., there are better niches to target. For example, any with recurring rev.

If you don't want to answer, feel free not to, but I'm curious if the content of the datasets you used to train your A.I. were a set of dialogs?
I used supervised training.

P.D: English is not my mother language, I am sorry if I have made any grammatical mistakes or if my posts are difficult to understand.
Everything was clear, easy to read and understand.

Lol, I found this and reminded me of your AI. I wonder what Kira would answer after he replies MARS.
Something about being your perfect space girl from moon or something of those lines. :)
 
One think that I dont understand is for example.

I buy One 4g lte on my country. I can make a proxy and rotate it.
First day I login to my proxy and create One account.
Second day o rotate The proxy and create other account. With This proxy I can use it on my first account to follow /post/like stuff? If The IP rotate how can I guarantee that accounts wont be banned?
 
I kind of feel like I'm kind of hijacking your thread asking questions about coding so I apologize for that.
I like to talk about software, it's the part where I feel confident the most as I still suck at marketing very hard.

Are you using puppeteer-cluster for running multiple accounts or is there something else I should be looking at? I've been searching around in google and I'm trying to figure out how to launch multiple chrome profiles with it. I'm not sure how to exactly pass in multiple paths for each profile.
I would suggest looking into node worker threads. When you got that sorted, move to understand how to create a simple node express server and HTTP API server which would spawn a worker thread with your chrome profile when you call your own API link, e.g. 127.0.0.1:8000/api/chrome?profile=profile1

I use worker threads for everything. Just to be sure to understand that node works a bit differently than other programming languages and you must understand that you can't write code as in python or PHP or you will probably block the event loop when you will try to scale up, this was a problem for me but if node.js(javascript) is your first language, it shouldn't be an issue IMO).

Here I will put a small demo together for you.

index.js: creates webserver and listens when you will request new browser to be launched.
JavaScript:
const {Worker} = require('worker_threads');
var app = require('express')();
var http = require('http').createServer(app);

app.route('/api/chrome').get((request, response) => {
    
    worker(request.query.profile, {
        //here you can send any additional data to the worker thread
    });
    
    return response.status(200).send('booting the browser');
})

function worker(profile, data = {}){
    const worker = new Worker('./worker.js', {
        workerData: {
            ...data,
            profile: profile
        }
    });

    worker.profile = profile;

    worker.on('message', (message) => {
        console.log(`message back from worker: ${message}`)
    });

    worker.on('error', (error) => {
        console.log(error);
    });

    worker.on('exit', (code) => {
        console.log(`Worker exited - ${code} ++ ${worker.profile}`);
    });   

    return worker;
}

http.listen(8000, () => {
  console.log(`http server started on 127.0.0.1:8000`);
});

worker.js - this is code which will be run when you call your API.
JavaScript:
let {workerData, parentPort} = require('worker_threads');

const puppeteer = require('puppeteer-core');

(async () => {

  const browser = await puppeteer.launch({
    headless: false,
    executablePath: '/usr/bin/google-chrome-stable',
    ignoreDefaultArgs: true,
    defaultViewport: { width: 1366, height: 768 },
    args: [
      '--remote-debugging-port=9444',             
      '--user-data-dir=~/chrome-profiles/' + workerData.profile,
      '--no-first-run',
      '--no-default-browser-check',
    ]
  });

  await new Promise(r => setTimeout(r, 2000));


  const pages = await browser.pages();
  const page = pages[0];

  await page.goto('https://google.com');

})();

and in result we get option to launch browser with just simple API call in your main browser:

1664221481303.png

So in theory you can then update your worker.js to have any actions you need based on puppeteer.

And you even do not need to use APi, you can use websockets to control your browser farm or anything you want.
 
One think that I dont understand is for example.

I buy One 4g lte on my country. I can make a proxy and rotate it.
First day I login to my proxy and create One account.
Second day
You rotate as soon as you are done with registration.

With This proxy I can use it on my first account to follow /post/like stuff?
Its recommended to use different proxy as you just used it to create account. You can rotate again tho to get clean IP and then do your actions.

If The IP rotate how can I guarantee that accounts wont be banned?
No guarantee. That's the hard part of this game.
 
You rotate as soon as you are done with registration.


Its recommended to use different proxy as you just used it to create account. You can rotate again tho to get clean IP and then do your actions.


No guarantee. That's the hard part of this game.
So I just have to make sure the IP is cleared in the registration process. then to follow people, likes, post etc can be another IP. I just have to be careful not to use the same IP on multiple accounts, correct?
 
So I just have to make sure the IP is cleared in the registration process. then to follow people, likes, post etc can be another IP. I just have to be careful not to use the same IP on multiple accounts, correct?
Yes.

I still need to cover the cost needed to manage it in large scale.
Start small scale, money will flow and you will be able to scale.
 
Back
Top