Hello everyone,
i have a strange issue:
when i test an account in debugger, all processes are ok.
But when i run a job with the same config i get ERROR status always.
Any tips?
PS. It’s not proxy problem.
Make sure you use the correct Wordlist type, and make sure the settings of the Config are correct.
Often , the issue is cuz of the wordlist Type in the config or in your Wordlist section modify the type of your wordlist.
Check this :
I only have these types of wordlists
Credentials should work for Email:Pass, try debugg the Threads and send here the Logs.
When you save, do you reload the configs before running the job? This used to be my problem before.
Although you said it’s not a proxy problem, have you tried checking the proxy timeout in RL Settings?
This is another example with the same problem (different response).
This is a little part of my lolicode:
FOREACH link IN URL
BLOCK:HttpRequest
LABEL:LINK
url = @link
customHeaders = {(“accept”, “application/json”), (“User-Agent”, “Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/101.0.4951.64 Safari/537.36 Edg/101.0.1210.53”)}
SAFE
TYPE:STANDARD
$""
“application/x-www-form-urlencoded”
ENDBLOCK
BLOCK:Parse
LABEL:ERROR
input = @data.ERROR
MODE:LR
=> VAR @ERROR
ENDBLOCK
IF STRINGKEY @data.ERROR EqualTo “System.OperationCanceledException: The operation was canceled.”
SET VAR @TEST “NOT VALID”
ELSE
SET VAR @TEST “VALID”
END
BLOCK:AddToList
LABEL:RESULTS
list = @RESULTS
item = @TEST
ENDBLOCK
END
In debugger test is ok, i obtain VALID and NOT VALID results.
But in job, with the same account and password, i obtain VALID results only!!! And this is not real.
I don’t understand why!
Try error safe the parse, and use The operation was canceled
as key check value.
Try using SystemNet as HTTP library instead of RuriLibHttp (it’s a setting of the http request block)
I keep having problems…
If I try the config in the stacker everything is ok but if I create a job with bot at 1, everything goes to BAN.
PS. Both in the stacker and in the Job the config runs without a proxy.
Remove the ban key if no found on keycheck. Enable the bot logs on RL settings. Now run the config and check there logs . It will give you idea what happen on job runner.
Thank’s for your reply but I already did these tests and the log tells me data.RESPONSECODE 403.
In the stacker everything is ok but in the job I get this error!