Navigation X
ALERT
Click here to register with a few steps and explore all our cool stuff we have to offer!



 1649

very confuse about something

by Zentred - 15 October, 2021 - 10:09 AM
This post is by a banned member (Zentred) - Unhide
Zentred  
Infinity
617
Posts
124
Threads
4 Years of service
#1
(This post was last modified: 15 October, 2021 - 10:10 AM by Zentred. Edited 1 time in total.)
https://pastebin.com/HSiiNnZK


so the example is with 1 thread, f, c, x and idd will all be given a string, but on the next request of that same thread, only f, c and idd will all be given a new string, but x will stay the same.

however, if i use another thread it will all change.

simple explanation: if i use 40 threads it will generate 40 completely different f, c, x, idd variables, but if i do it 40 times on 1 thread then the x variable will stay the same (even when proxies)

i am just confused how this makes sense like why wouldnt it generate a new x string when using the same thread
This post is by a banned member (Dazncute) - Unhide
Dazncute  
Infinity
174
Posts
69
Threads
3 Years of service
#2
(This post was last modified: 15 October, 2021 - 10:38 AM by Dazncute. Edited 4 times in total.)
No sorry misunderstand

(15 October, 2021 - 10:09 AM)Zentred Wrote: Show More
simple explanation: if i use 40 threads it will generate 40 completely different f, c, x, idd variables, but if i do it 40 times on 1 thread then the x variable will stay the same (even when proxies)

i am just confused how this makes sense like why wouldnt it generate a new x string when using the same thread

i think because your proxy variable and combo  are static (outside of thread function) --- try to find a way to put all inside main function in this way every thread use an differnt proxy and combo, also the proxy with 40 100 thread is always the same ---
edit: only the proxy is static put proxy variable inside main function and try for be specif after " for line in combo: "



r = req.get('https://login.microsoftonline.com/common/oauth2/authorize?client_id=4345a7b9-9a63-4910-a426-35363201d503&redirect_uri=https%3A%2F%2Fwww.office.com%2Flanding&response_type=code%20id_token&scope=openid%20profile&response_mode=form_post&nonce=637303277165345962.NmRmMmNlNDctZWUxMC00MmRkLTg5NjMtZTBhMmI2M2NlOTBhYzJmMmNkMzktNjYzYi00Njk0LWFkYzctMTNmMmZmNWRlZDBh&ui_locales=en-US&mkt=en-US&client-request-id=d3e418b8-308e-4491-bad8-0ac3f4b5cfdd&state=5DouHr5AOO1yxDS6OfWt3UALMTZ2RHHNVLBABRMsbN62-RdmJyWh6IMOgq4rD9ZWoVe0b5ftF3vAD81Xk9EBreyY9xjaX9ZmMz_t_VzOLeB2dCWUhYmwI_2_lthhm1msyZo1W2Sk8d3o9qS4IQy_oGS6yU1FCn3hmfnYuP5TmrTL6FSscYfWWJeTObJ-JOZ8UMhxjseMNiVBEa9Fq4SeJli4YliQoBBJU6RNawWezt4YLvN3W-CHN4LYxQsJLOFXqEzXJEF5aHv01myuS5-zwg&x-client-SKU=ID_NETSTANDARD2_0&x-client-ver=6.5.0.0', headers=headers1)    there is no proxy here!!!

req.get ("",headers=..., proxy=...)
Heart Chipotle Heart - Single (5€) Bulk (3€) Amex (6€) ██ Cracked.io Main Thread ██

[Image: 33.jpg]




 
This post is by a banned member (Zentred) - Unhide
Zentred  
Infinity
617
Posts
124
Threads
4 Years of service
#3
(This post was last modified: 15 October, 2021 - 10:39 AM by Zentred. Edited 1 time in total.)
(15 October, 2021 - 10:18 AM)Dazncute Wrote: Show More
No sorry misunderstand

(15 October, 2021 - 10:09 AM)Zentred Wrote: Show More
simple explanation: if i use 40 threads it will generate 40 completely different f, c, x, idd variables, but if i do it 40 times on 1 thread then the x variable will stay the same (even when proxies)

i am just confused how this makes sense like why wouldnt it generate a new x string when using the same thread

i think because your proxy variable and combo  are static (outside of thread function) --- try to find a way to put all inside main function in this way every thread use an differnt proxy and combo, also the proxy with 40 100 thread is always the same ---
edit: only the proxy is static put proxy variable inside main function and try for be specif after " for line in combo: "

https://pastebin.com/CYukrkGL

i open the combo file and proxy file within the thread on this new code, and there is proxy added to their request

it is still the same that x variable will not change

if the strings assigned to the other variables are changing then it must be working fine, but i dont get why x won't change unless new thread
This post is by a banned member (Dazncute) - Unhide
Dazncute  
Infinity
174
Posts
69
Threads
3 Years of service
#4
(15 October, 2021 - 10:38 AM)Zentred Wrote: Show More
(15 October, 2021 - 10:18 AM)Dazncute Wrote: Show More
No sorry misunderstand

(15 October, 2021 - 10:09 AM)Zentred Wrote: Show More
simple explanation: if i use 40 threads it will generate 40 completely different f, c, x, idd variables, but if i do it 40 times on 1 thread then the x variable will stay the same (even when proxies)

i am just confused how this makes sense like why wouldnt it generate a new x string when using the same thread

i think because your proxy variable and combo  are static (outside of thread function) --- try to find a way to put all inside main function in this way every thread use an differnt proxy and combo, also the proxy with 40 100 thread is always the same ---
edit: only the proxy is static put proxy variable inside main function and try for be specif after " for line in combo: "

https://pastebin.com/CYukrkGL

i open the combo file and proxy file within the thread on this new code, and there is proxy added to their request

it is still the same that x variable will not change

if the strings assigned to the other variables are changing then it must be working fine, but i dont get why x won't change unless new thread

because in your code you don't use the combo (line variable), so for every line of combo list you ask always the same req.get ... in this way the combo line have only the fuction : how many time request same req.get --- at same question the answer is always the same x
Heart Chipotle Heart - Single (5€) Bulk (3€) Amex (6€) ██ Cracked.io Main Thread ██

[Image: 33.jpg]




 
This post is by a banned member (Zentred) - Unhide
Zentred  
Infinity
617
Posts
124
Threads
4 Years of service
#5
(15 October, 2021 - 11:03 AM)Dazncute Wrote: Show More
(15 October, 2021 - 10:38 AM)Zentred Wrote: Show More
(15 October, 2021 - 10:18 AM)Dazncute Wrote: Show More
No sorry misunderstand


i think because your proxy variable and combo  are static (outside of thread function) --- try to find a way to put all inside main function in this way every thread use an differnt proxy and combo, also the proxy with 40 100 thread is always the same ---
edit: only the proxy is static put proxy variable inside main function and try for be specif after " for line in combo: "

https://pastebin.com/CYukrkGL

i open the combo file and proxy file within the thread on this new code, and there is proxy added to their request

it is still the same that x variable will not change

if the strings assigned to the other variables are changing then it must be working fine, but i dont get why x won't change unless new thread

because in your code you don't use the combo (line variable), so for every line of combo list you ask always the same req.get ... in this way the combo line have only the fuction : how many time request same req.get --- at same question the answer is always the same x

thanks for this explanation.

made me realise that i should just used requests.get instead of req

now it works and thank god :D
This post is by a banned member (Dazncute) - Unhide
Dazncute  
Infinity
174
Posts
69
Threads
3 Years of service
#6
(This post was last modified: 15 October, 2021 - 11:17 AM by Dazncute. Edited 1 time in total.)
(15 October, 2021 - 11:08 AM)Zentred Wrote: Show More
(15 October, 2021 - 11:03 AM)Dazncute Wrote: Show More
(15 October, 2021 - 10:38 AM)Zentred Wrote: Show More
https://pastebin.com/CYukrkGL

i open the combo file and proxy file within the thread on this new code, and there is proxy added to their request

it is still the same that x variable will not change

if the strings assigned to the other variables are changing then it must be working fine, but i dont get why x won't change unless new thread

because in your code you don't use the combo (line variable), so for every line of combo list you ask always the same req.get ... in this way the combo line have only the fuction : how many time request same req.get --- at same question the answer is always the same x

thanks for this explanation.

made me realise that i should just used requests.get instead of req

now it works and thank god :D

ok maybe now you have different x but combolist is also useless you don't use user:pass just the number of line for ask always the same get..
you need to split lin in user e pass variable.
and more difficult understand how this variable are encoded in your get request, and put inside the get request.. in this way really for every line (combo) you ask an get request for that really combo
Heart Chipotle Heart - Single (5€) Bulk (3€) Amex (6€) ██ Cracked.io Main Thread ██

[Image: 33.jpg]




 
This post is by a banned member (Zentred) - Unhide
Zentred  
Infinity
617
Posts
124
Threads
4 Years of service
#7
(15 October, 2021 - 11:11 AM)Dazncute Wrote: Show More
(15 October, 2021 - 11:08 AM)Zentred Wrote: Show More
(15 October, 2021 - 11:03 AM)Dazncute Wrote: Show More
because in your code you don't use the combo (line variable), so for every line of combo list you ask always the same req.get ... in this way the combo line have only the fuction : how many time request same req.get --- at same question the answer is always the same x

thanks for this explanation.

made me realise that i should just used requests.get instead of req

now it works and thank god :D

ok maybe now you have different x but combolist is also useless you don't use user:pass just the number of line for ask always the same get

it's ok, i have the rest of it, i just chose this part specifically and made it smaller program so people can't see all the checker

really the checker is 135 lines and it's work now

if you want it i can give you it for helping me 

it just office365 checker there is config exist but i recreate in python :D
This post is by a banned member (Dazncute) - Unhide
Dazncute  
Infinity
174
Posts
69
Threads
3 Years of service
#8
no problem man thanks
Heart Chipotle Heart - Single (5€) Bulk (3€) Amex (6€) ██ Cracked.io Main Thread ██

[Image: 33.jpg]




 

Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
or
Sign in
Already have an account? Sign in here.


Forum Jump:


Users browsing this thread: 2 Guest(s)