Want to code my own link builder bot

Bambarbiakirgudu

Regular Member
Joined
Nov 9, 2016
Messages
370
Reaction score
66
Hello guys. i want to code my own back link builder such as Gsa ser. Ok, it may not be that professional but, my question is how will i harvest footprint types? i mean how will i find footprints? on the other hand each site will have differant structcher how will i get it done? can You give me an example guide where m i gonna start? i guess it's something related to machine learning though.

Programing language = python.
 
Same CMS (drupal, Joomla, wp) = same footprints, sometimes same structure. You need to find footprints that actually work yourself by hand.
 
Same CMS (drupal, Joomla, wp) = same footprints, sometimes same structure. You need to find footprints that actually work yourself by hand.

But, Wouldn'T themes make difference? and to clerify footprints i guess should check comment paths/new posting paths etc.
 
But, Wouldn'T themes make difference? and to clerify footprints i guess should check comment paths/new posting paths etc.
Probably themes shoudnt make a difference. You want piece of text that exists on every page of given cms/forum engine. Like:
"powered by vbulletin" - this will give you very broad results
"powered by vbulletin"+"Welcome to our newest member" - this will give you only main pages of given forum so scraping will give more results
"powered by vbulletin"+"Forum Contains New Posts" - will give you only forum categories
And so on.

Overall I dont think building another link building software is worth it. You cant code tool that will be able to create links in 10 times more places just because there are no more places really where you can submit link.
 
What is the purpose of building this software?

If you want to build it so you can post on engines where SER is failing, there is a solution built into SER to fix that by the user. You can train SER to post to anything you want. So you can improve an existing engine or train new engines that don’t come by default. It’s simple as well once you learn how the engines work. Takes a few hours.
 
Probably themes shoudnt make a difference. You want piece of text that exists on every page of given cms/forum engine. Like:
"powered by vbulletin" - this will give you very broad results
"powered by vbulletin"+"Welcome to our newest member" - this will give you only main pages of given forum so scraping will give more results
"powered by vbulletin"+"Forum Contains New Posts" - will give you only forum categories
And so on.

Overall I dont think building another link building software is worth it. You cant code tool that will be able to create links in 10 times more places just because there are no more places really where you can submit link.

i didn't get what are You trying to point out here. but, what would You suggest instead?
 
What is the purpose of building this software?

If you want to build it so you can post on engines where SER is failing, there is a solution built into SER to fix that by the user. You can train SER to post to anything you want. So you can improve an existing engine or train new engines that don’t come by default. It’s simple as well once you learn how the engines work. Takes a few hours.



Well actually, my pourpice is building my own bot to perform back links for my sites. i thought rather than spending for a tool. Why shouldn't i create one for myself?
 
Well actually, my pourpice is building my own bot to perform back links for my sites. i thought rather than spending for a tool. Why shouldn't i create one for myself?
There’s nothing wrong with wanting to do that, but remember that time is money. The tools already exist. So if you’ve got time to burn on projects like this, I wish you the best of luck and I hope you have fun at the same time.
 
Well actually, my pourpice is building my own bot to perform back links for my sites. i thought rather than spending for a tool. Why shouldn't i create one for myself?

Basically the first step is to do CMS identification

ie:
WordPress
HTML:
<meta name="generator" content="WordPress 5.9.3" />

Now you know it is a WordPress website you can make a post request to https://your-wordpress-site.com/wp-json/wp/v2/comments

Also WordPress has a heap of different plugins which allow posting which you would need to incorporate.

Here is a quick and dirty example

https://gist.github.com/exploitdev/f916add9c180c4c7dc5b023bcc477171
 
Well actually, my pourpice is building my own bot to perform back links for my sites. i thought rather than spending for a tool. Why shouldn't i create one for myself?
I'd go with Python. requests, bs4, and re packages. Use the requests module to get the full page, study the code and start parsing with beautifulsoup (bs4) and drill down further using re (regex).
  • scrape Google SERPs for keyword and Google dork (i.e. "powered by VBulletin")
  • Locate form
  • Populate values and submit
https://www.cybertutorials.org/2022/scrape-google-serps/
 
Well actually, my pourpice is building my own bot to perform back links for my sites. i thought rather than spending for a tool. Why shouldn't i create one for myself?
Because building GSA clone is full time job for at least one good/expert developer. Preferably multiple developers. Once I asked my friend how much would cost good Scrapebox clone, he told me $50k. This friend is owner of software house, he hire 20+ developers so he knows what he talks about.
What I'm trying to tell you - sure, you can spend your time doing GSA clone but it would take 10 times longer than you think and you may end with shitty software anyway because of lack of experience.
In best case you would spend months and get in return something you can buy for around $100.

Automating targets where (for some reason) GSA/Xrumer cant post may be worth your time but trying to reinvent a wheel is pointless especially in market where ranking with spam links is harder and harder.
 
your advices valued guys. i guess it's a time waister as most of You think. So, a better question, if You were me, what Seo tool Would You wannt want to code instead? a Content manager maybe? Actually arrgo seems very legit though and the owner sounds a kind person.
 
your advices valued guys. i guess it's a time waister as most of You think. So, a better question, if You were me, what Seo tool Would You wannt want to code instead? a Content manager maybe? Actually arrgo seems very legit though and the owner sounds a kind person.

As a python programmer myself I have written so many tools which has helped automate a lot of my jobs and daily tasks. Have you had much experience programming plugins for web browsers? That can open up your options to creating extremely useful, simple plugins for the masses. Feel free to send me a message if you would like some examples in have done
 
your advices valued guys. i guess it's a time waister as most of You think. So, a better question, if You were me, what Seo tool Would You wannt want to code instead? a Content manager maybe? Actually arrgo seems very legit though and the owner sounds a kind person.
Ask on Reddit or in different thread what tools people need. You may find interesting ideas.
 
As a python programmer myself I have written so many tools which has helped automate a lot of my jobs and daily tasks. Have you had much experience programming plugins for web browsers? That can open up your options to creating extremely useful, simple plugins for the masses. Feel free to send me a message if you would like some examples in have done


i never done plugins. though i m a quick learner. Probabely You're way a lot more experienced than myself. Pm sent btw.
 
Back
Top