What would with these skills?

It will be new Virtual Machine each time.
Like, new PC during each interaction.
I don't like that approach. It's not good one time wise unless you can spin up new container in under 15-20 seconds. Better approach IMHO is to use multithreading and develop something on your own using NodeJS/TS, Go, Python, etc.
 
I don't like that approach. It's not good one time wise unless you can spin up new container in under 15-20 seconds. Better approach IMHO is to use multithreading and develop something on your own using NodeJS/TS, Go, Python, etc.
Well, I can dockerize bot, for sure.
I just thought, that this way will be more trustworthy.
Simply because it's alway new windows machine.
And I have pretty powerful PC for tasks like that.
 
Okay, for example, I'll create wp site.
Then I'll create bot, which will visit it with different ips, browsers and os's.
By that I mean I'll create soft, which will create VM, vm will download and install bot, pick one ip, use it, then delete VM.
Rinse and repeat.
Is it a profitable idea?
Might be, or not.
What's the target market?
Have you conducted a market research for such service?
What would be the use of such setting?
Personally, I do not see the use of creating a VM to download and install bots and do all you say, as a simple bot can do it without the VM. But then, you might have your own reasons to do so.
Also, as mentioned by @AkexAkimbo you might want to measure all the risks involved in the 'intention' of use behind such system.
 
Well, I can dockerize bot, for sure.
I just thought, that this way will be more trustworthy.
Simply because it's alway new windows machine.
And I have pretty powerful PC for tasks like that.
Power is not everything when it comes to bots. Horizontal scaling is. Imagine driving one instance of bot for 30 seconds to do one task for you (visit website, post message, etc.) then add 30 seconds for cycling (restart). In that way you can hit that website 1440 times a day. Scale it horizontally and you'll get where you want.

What will be your input data for chats/posts/comments/etc.? How do you manage those bots (Rabbit/Redis/Any other MQ), what about data base, what about orchestration? so many questions without answer so far....
 
Might be, or not.
What's the target market?
Have you conducted a market research for such service?
What would be the use of such setting?
Personally, I do not see the use of creating a VM to download and install bots and do all you say, as a simple bot can do it without the VM. But then, you might have your own reasons to do so.
Also, as mentioned by @AkexAkimbo you might want to measure all the risks involved in the 'intention' of use behind such system.
I'm going to make it not to sell, but to boost my own sites.
VMs are for safety, so nothing could track something fishy.
But I agree, for now just bot, which changes fingerprints, browsers and ips is enough.
 
Might be, or not.
What's the target market?
Have you conducted a market research for such service?
What would be the use of such setting?
Personally, I do not see the use of creating a VM to download and install bots and do all you say, as a simple bot can do it without the VM. But then, you might have your own reasons to do so.
Also, as mentioned by @AkexAkimbo you might want to measure all the risks involved in the 'intention' of use behind such system.
Much better approach to this (if he wants to pursuit it) is to us git actions and hooks to initiate deployment (VM creation and setup), orchestration can be cumbersome without proper planning.
 
Power is not everything when it comes to bots. Horizontal scaling is. Imagine driving one instance of bot for 30 seconds to do one task for you (visit website, post message, etc.) then add 30 seconds for cycling (restart). In that way you can hit that website 1440 times a day. Scale it horizontally and you'll get where you want.

What will be your input data for chats/posts/comments/etc.? How do you manage those bots (Rabbit/Redis/Any other MQ), what about data base, what about orchestration? so many questions without answer so far....
Well, for now I thought random visiting pages.
Just to fool google a little bit.
 
I'm going to make it not to sell, but to boost my own sites.
VMs are for safety, so nothing could track something fishy.
But I agree, for now just bot, which changes fingerprints, browsers and ips is enough.

Shell can do it easy:

1. Create directory structure to hold you user data (user profiles)
2. setup proxy
3. use for loop to drive
Bash:
google-chrome --no-first-run --user-agent="your user agent" --profile-directory="profile name" --user-data-dir="data dir path" https://somewebsite.com 2>/dev/null &
 
Shell can do it easy:

1. Create directory structure to hold you user data (user profiles)
2. setup proxy
3. use for loop to drive
Bash:
google-chrome --no-first-run --user-agent="your user agent" --profile-directory="profile name" --user-data-dir="data dir path" https://somewebsite.com 2>/dev/null &
To be honest, I though about using Selenium.
 
Well, I can dockerize bot, for sure.
I just thought, that this way will be more trustworthy.
Simply because it's alway new windows machine.
And I have pretty powerful PC for tasks like that.
Technically speaking you are right. I've a problem with "windows machine" on the other end. The best way to get into problems with all cloud technology is windozze machines... ;)
 
Technically speaking you are right. I've a problem with "windows machine" on the other end. The best way to get into problems with all cloud technology is windozze machines... ;)
As I was saying, for now I want to make it on my own PC.
I have 32 threads and 128gb of ram.
This is more than enough.
If the idea is working, I can easily move it.
Just have to make and test it.
 
I'm going to make it not to sell, but to boost my own sites.
VMs are for safety, so nothing could track something fishy.
But I agree, for now just bot, which changes fingerprints, browsers and ips is enough.
Okay, since you can behave (lol) check out ZeroWork. It's not FOSS but it's worth taking a look for what you describe.
 
As I was saying, for now I want to make it on my own PC.
I have 32 threads and 128gb of ram.
This is more than enough.
If the idea is working, I can easily move it.
Just have to make and test it.
Check "docker-selenium" image on Docker Hub or GH
 
As I was saying, for now I want to make it on my own PC.
I have 32 threads and 128gb of ram.
This is more than enough.
If the idea is working, I can easily move it.
Just have to make and test it.
WISDOM!
Great machine!
 
Check "docker-selenium" image on Docker Hub or GH
Well, I can try selenium grid and use several VMs.
Why not that way?
Okay, since you can behave (lol) check out ZeroWork. It's not FOSS but it's worth taking a look for what you describe.
Don't know what are you implying, but thank you, I'll read about it.
 
That way you can easily lose your site.
Like i said earlier "one must have necessary knowledge on how to hide footprints and mask bot presence". Everything is possible if think about it trough. I did some "heavy" botting few times in the past without being detected (talking about hundreds/thousands of requests per second) using everything from python request and node fetch to the frameworks like playwright, puppeteer and selenium...
 
Back
Top