Jump to content
UBot Underground

nepzworld

Members
  • Content Count

    15
  • Joined

  • Last visited

Community Reputation

0 Neutral

About nepzworld

  • Rank
    Member

System Specs

  • OS
    Windows 7
  • Total Memory
    5Gb
  • Framework
    unsure
  • License
    None Yet

Recent Profile Visitors

834 profile views
  1. here is my socket code but its not working but it returns no value at all ui open file("Browse Captcha",#captchalocation) plugin command("SocketCommands.dll", "socket container") { plugin command("SocketCommands.dll", "socket set header", "User-Agent", "Mozilla/5.0 (Windows NT 6.1; Win64; x64; rv:61.0) Gecko/20100101 Firefox/61.0 ") plugin command("SocketCommands.dll", "socket add parameter", "file", #captchalocation) plugin command("SocketCommands.dll", "socket add parameter", "source_url", "") plugin command("SocketCommands.dll", "socket add parameter", "captcha_platform", "") plugin comm
  2. no sir its not working, is there a way to integrate gsa captcha with socket ?
  3. Has anyone use Ubot with GSA Captcha breaker? I was trying to figure out how to integrate gsa captcha with ubot studio but i am not able to find any important topic here. Please help me
  4. Yes i guess, socket does not work well with multi threading, but with single thread, it is working like a charm and lot faster, but i have table with 100 rows so its taking too much time too....
  5. socket is still using same domain again and again.... anything to fix this issue?
  6. ok , i have sent message in skype, i have sent you an invitaion, my skype id is nepzworld please accept
  7. ok check this: ui open file("Accounts",#login) clear list(%login) add list to list(%login,$list from text($read file(#login),$new line),"Delete","Global") set list position(%login,0) ui drop down("Thread Count","1,2,3,4,5,6,7,8,9,10",#num threads) set(#used threads,0,"Global") loop($list total(%login)) { loop while($comparison(#used threads,">=",#num threads)) { wait(1) } loop process() } define loop process { increment(#used threads) registration procedure() } define registration procedure { thread { in new browser { registration code
  8. is it space in between? or is it separated with comma?
  9. what is your login file format? mine is domain,username,password
  10. no its not working, its navigating with url: "http://domain,username,password"
  11. yes bro, i have seen that tutorial, it works great for same domain, but if its different domain for each thread, then it gets messy...
  12. thank you for your quick reply, here you go login file is in the format: domain name1,username1,password1 domain name 2,username2,passwrod2 . . . ui open file("Login File",#loginfile) clear table(&login) create table from file(#loginfile,&login) set(#thread_counter,0,"Global") set(#row,0,"Global") loop($table total rows(&login)) { increment(#thread_counter) thread { Run Script($table cell(&login,#row,0), $table cell(&login,#row,1), $table cell(&login,#row,2)) decrement(#thread_counter) if($comparison(#thread_counter,"= Equals",
  13. sometimes it works sometime it takes same domain multiple times... i even tried to use thread counter plugin but no success... I just want each thread to open unique domain...
  14. Help me Guys, Multi threading in Socket is not working . I was trying to login to the list of site that is stored in a .csv file like this: domain name1,username1,password1 domain name 2,username2,passwrod2 . . . there are 30-50 rows with different domain and different userid and password. I wanted to use multithreading but it is not working as it is supposed to. Different thread should pick up different domain but threads are picking same domain multiple times. So, anyone ? who have been to this issue before and solved it? please help me here Thank you
×
×
  • Create New...