VenomSEO "BETA TEST" Backlink Profiler + Indexer BOT

Register on pliggs working, but register on forums VBiuletin or SMF it does not work for me

For pligg, you need to load the pligg db. For the forums, you need to load the db1.7.vpdb file.

Btw, hows the ocr working? Have you tried it?
 
For pligg, you need to load the pligg db. For the forums, you need to load the db1.7.vpdb file.

Btw, hows the ocr working? Have you tried it?
Has the OCR been implemented? I can't seem to find the "use internal captcha decoder" option enabled though
 
Guys the OCR wont work for now, it gets overloaded from its current host. We will be transferring it to a dedicated server soon. It was a good test though. Thanks for helping with the beta test.
 
Hi,

Just requested a serial. Transaction ID ddkdldsskssi

(original I know - you might have had a few of those)

Many thanks
 
I can get it to register on SMF and phpBB...it just takes about 10 minutes of updating the database with regex, forum URLs, and form names. All you have to do is view source on the major pages (index, register, memberlist) of those forum types to get the form names and links.

Or you can use the in-program website adder to add the correct board software information. Watch the video they've made for that:
http://www.juggernautsofts.com/updates/samplelearn.mp4
 
Last edited:
Okay, so I have a pretty good success rate with the included site list...but absolutely 0% when scraping my own.

It won't even register on vbulletin.org/forum, saying it can't find any forms...why is that?
I have the forms vB.org uses in the database:
register.php?do=register
register.php?do=addmember
register

For some reason, it works great if I turn on the training logs and add all vB.org registration inputs manually via the web-browser site adder. But not when using my database.
 
Last edited:
Okay, so I have a pretty good success rate with the included site list...but absolutely 0% when scraping my own.

It won't even register on vbulletin.org/forum, saying it can't find any forms...why is that?
I have the forms vB.org uses in the database:
register.php?do=register
register.php?do=addmember
register

For some reason, it works great if I turn on the training logs and add all vB.org registration inputs manually via the web-browser site adder. But not when using my database.


Thanks bro, we will look into it
 
Thanks. I got it to work...it was just being temperamental since the site trainerlogs are saved in the project itself and I didn't know that, so those override the database, I assume? Once I cleared that out completely and reloaded the database it worked.

However, I only had about 20% success rate and then out of those account creations, I only was able to update 83%, so it dropped to about 17% success overall.

The main cause of this is the security question popup doesn't seem to work. I'm using these start and end points:
Start: <label for="humanverify">
End: </label>

The actual popup comes up, but the security question doesn't show up. I visited the site itself, so I knew the answer. When I typed the answer into the security popup, it accepted it, created my account, and updated my profile, but of course, this is no help if the question doesn't appear in the popup.

-----

Since forums are extremely diverse with all the possible add-ons and niche-specific profile capabilities, there should be a feature to run a macro (or display a popup) for all fields that aren't in the database. For radios and checkbox, the selection could be random for all non-database fields (though it's usually safer just to check checkboxes) and text fields could run a macro or have human input.

A lot of those fields are optional, but a lot are required because forum owners want to steal all the information they can get (joke), so rather than inputting every single field that isn't in the database, the program could have a smart feature to check to see if the field is required using conventional requirement identifiers, such as a bold field label or a field label containing an asterisk in one of the last two characters (to accomodate "Fieldname:*" and "Fieldname*:" and "Fieldname*") then present the human input popup or run a macro.
 
Last edited:
Sorry for all the posts, but I have one more idea that may be useful. Rather than using the variables captchaanswer and securityquestionanswer, consider consolidating them into one variable, securityinput. This way, regardless of whether the CAPTCHA or security question popup comes up, both values get stored in the same variable.

I'm suggesting this because, while I have limited experience with the vBulletin backend, I'm assuming there's an option to either use the CAPTCHA or use a security question. The problem this causes is that they use the same field name, humanverify[input].

I tried putting these both into the database to see if the software would process them with the same principles of function overloading, or choosing the proper field-to-value pair based on what was inputted (CAPTCHA or security question), but that didn't work, although it is a viable alternative.

So, basically my database had:
humanverify[input] -> $captchaanswer
humanverify[input] -> $securityquestionanswer

I'm assuming it just picked whichever one it saw first, which was the CAPTCHA although the particular forum in question used a security question, so obviously there was no match and the registration failed.

So, both popups could target the same variable, meaning the database would just have:
humanverify[input] -> $securityinput

which would allow the same field to be used for CAPTCHAs and security questions.
 
C'mon guys, could someone please tell me what could be the problem, when I want to Login+Post, I get "Index was outside the bounds of the array. at L .|0"
 
Hi mate,

I can't send PM's right now.

Could you send me the activation key?


profiler transaction ID: 123456 and machine ID 8336e74207e14b2fa6504da0e802dd790

indexer transaction ID:123456 and machine ID: 8336e74207e14b2fa6504da0e802dd791
 
Sorry for all the posts, but I have one more idea that may be useful. Rather than using the variables captchaanswer and securityquestionanswer, consider consolidating them into one variable, securityinput. This way, regardless of whether the CAPTCHA or security question popup comes up, both values get stored in the same variable.

I'm suggesting this because, while I have limited experience with the vBulletin backend, I'm assuming there's an option to either use the CAPTCHA or use a security question. The problem this causes is that they use the same field name, humanverify[input].

I tried putting these both into the database to see if the software would process them with the same principles of function overloading, or choosing the proper field-to-value pair based on what was inputted (CAPTCHA or security question), but that didn't work, although it is a viable alternative.

So, basically my database had:
humanverify[input] -> $captchaanswer
humanverify[input] -> $securityquestionanswer

I'm assuming it just picked whichever one it saw first, which was the CAPTCHA although the particular forum in question used a security question, so obviously there was no match and the registration failed.

So, both popups could target the same variable, meaning the database would just have:
humanverify[input] -> $securityinput

which would allow the same field to be used for CAPTCHAs and security questions.

actually, the software already does that. It prioritizes captcha, if the triggers for captcha is triggered, it will try to get the image from the url. then it will try to see if the byte is an image, if not, it will check for security question. Yeah I know I made a redundancy. The formcompleter code I created is still evolving. But Im pouring most of my time to it now that ocr is done.
 
actually, the software already does that. It prioritizes captcha, if the triggers for captcha is triggered, it will try to get the image from the url. then it will try to see if the byte is an image, if not, it will check for security question. Yeah I know I made a redundancy. The formcompleter code I created is still evolving. But Im pouring most of my time to it now that ocr is done.
How can I get the software to do this? I've tried it with two of the same field name in the database as I posted above, as well as just one field name in the database with $captchaanswer.

Both ways, the registration failed if it was a security question.
 
For pligg, you need to load the pligg db. For the forums, you need to load the db1.7.vpdb file.

Btw, hows the ocr working? Have you tried it?

Yes, i know, but when i load db1.7.vpdb i have problem with register on forums, "no known forms to process" :/, but when i load the pligg db the pligg register is working good :)

The ocr it working, but from time to time i have "max retries..."

EDIT:
I have new problem, i click "create accounts" and after few minutes i have error, and soft is close :/
 
Last edited:
i want to try
but i cannot send pm


thank you for having the license code sent to my email
I have accepted it, but when I use the license code that I received, through the help-> register-> restart the software, always appears Unable to validate license ...

please help me .. What should I do
 
Back
Top