Jump to content
UBot Underground

kev123

Fellow UBotter
  • Content Count

    731
  • Joined

  • Last visited

  • Days Won

    21

Everything posted by kev123

  1. i'm short on time at the min so cant really create a training vid but here's some simple steps to modify the license.dll to create different looking license forms/download update etc. Warning The reason the license.dll isn't protected and meter has shared it is its not dependant for security it just displays the license forms/downloads and communicates with your license server. I don't recommend trying to add new parameters passing to the license server backend a least not this way. But if you want a bit more of a custom look for license forms then carry on reading. Also i'm going to ass
  2. what are you looking to do? with basic php knowledge(that's all I have) you can add so helpful features. or if its for modding the desktop license forms this is pretty simple as well. They are written in c# going to tweak the look of them for a project i'm completing shortly.
  3. you can make your own browser recorder for any browser really. Infact in ubots case making there own would be better as most output code of most third party's would only support the mainstream programming languages.
  4. I suppose if you hide the browser you could check if it has crashed between page navigations and or if element exists by creating custom defines for element exists or page navigation.
  5. http://www.theregister.co.uk/2015/07/27/critical_bug_in_net_46/ Since the bug is in the JIT compiler, the workaround is not to install .NET 4.6 at all. If you install it, even applications targeting earlier versions of .NET may be impacted, since the same compiler is used. A version of .NET 4.6 ships with Windows 10. Craver claimed that Microsoft has "fixed the bug internally, but not for users," in which case, if the bug is as severe as it appears, you can expect a patch to appear soon. ®
  6. @beatngu I would be interested in what you do to resolve this is the third time I have heard issue with .net 4.6 but nothing official yet and has put me off updating so far . thanks kev123
  7. glad you like the plugin, as with any email delivery system I would always check your junk folder for the first email
  8. I read somewhere that paypal's definition of proving delivery (under new terms) was record of download which must include time and date. It may be worthwhile for people using ubotlocker to add manually aymens tweaks that includes number of uses, last IP used and time. that said paypal are biased for digital goods towards buyer so even that might not help. thanks kev123
  9. it should be 180 days from date of transaction how are they even able to raise dispute.
  10. @kreatus I thought they could only dispute for a max of 180 days how has he been able to do that?
  11. what type of dispute was it? was it unauthorised purchase.
  12. http://api.konvert.me/ip-country/8.8.8.8 Ip country, have fun haven't tested api in anger thou
  13. There's several things you could do it as pash said, or you could also split the browser control into a background thread and invoke/begininvoke the browser with commands. This also means if you have any other long running operations the browser/application will always be responsive and you can code the browser application similar to how you would with ubot. By that I mean not worrying about blocking UI. or use await and async keywords with task.delay if your using .net 4.5
  14. plugin command("Smartthreads.dll", "Thread control Advanced add", "test", "List", "Akun", "No") What I said in previous post akun is a string. all your passing to the thread control is a string. you need to use the "large list return" command in its place. recommend looking at the large data plugin thread and examples that come with it. thanks kev123
  15. add item to list(%Result,#account,"Don\'t Delete","Global") the problem with your first example as you didn't you needed to use large list return. instead you just put the name of the list. The above code isn't thread safe, also it probably would cause issues with the large data plugin as what your trying to do is instantly add all items to the list now you know how touse the plugin try integrating into real world example
  16. comment("you would replace this with your code to read accounts you want to process. The smarthread will Q them and can handle very large lists") comment("for better memory control use large data plugin") add list to list(%listofaccounts,$list from text("account1 account2 account3 account4 account5 account6 account7 account8 account9 account10 account11 acccount12",$new line),"Delete","Global") comment("___________________________________________________________") divider set(#maxthreads,10,"Global") plugin command("Smartthreads.dll", "Threadcontrol Advanced initial", #maxthreads) plugin comm
  17. set(#Akun,$plugin function("SQLlite.dll", "$sqlite data reader", #DB, "select akun from akun where status is NULL order by random() limit 1;"),"Local") it looks to be that the above command is causing the DB to lock. this may be because the smarthread is faster and i'm not sure if aymen designed the sqlite plugin to be used like this. The whole point of the smarthread is it allows you to Q threads with there desired parameters. it would be better read all details into a list beforehand and pass them into the thread it also means it will be faster i'll post a example in a following post be
  18. ok after checking it appears that the "count from data" SQLite query returns nothing. Are you sure the SQLite plugin can be used like this in threads the other example you sent didn't lazybotters didn't include any SQLite.
  19. have you got script errors disabled? straight away it brings up a script error "can't convert for interger to string" there seems to be a error somewhere with your code. The thread code seems ok though except that you aren't setting max threads you allowing it to max at what ever the list size is.
  20. also this plugin will still only be able to go to the maximum number of threads that you currently achieve with normal ubot threads can. it just does it faster and easier code. thanks kev123
  21. so if I understand correctly you have a database row that has username in a column , password in other etc. If you read these as and when you need them from the SQLite DB then if the SQLite commands work ok in normal ubot threads they will work ok with the plugin. if you read them out before creating the thread to work with this plugin you would have to read them all out at once and pass in a list to the plugin in the format I showed on my previous post. The thread controller would then pass each list item to a new thread. thanks Kev123
  22. Hi 1. You wouldn't use the plugins internal proxy control for this. But you could read accounts from within the thread define or read them all back as one and they pass them as a list to the plugin command such as username:password:proxy:port:proxypass and then split how do you do it now with normal threads? it should be the similar. 2. Yes this would be fine for the commands that require thread safety such as add to list etc. thanks kev123
  23. No method/code the c# .net project is an application/bot, code signing in .net is very simple. I wasn't talking about a solution for ubot signing this like I said isn't possible. Av's get worse every year, Norton recently updated and a lot of peoples setting blocked outbound http traffic not started by the user. This was a pain as it suddenly blocked license checks without even telling the end user is was doing so! thanks kev123
  24. ok if your talking about code signing installers then yes this has its advantages but doesn't stop AV's completely ands only half the fight so to speak. This is because it still wont stop any issues when you launch the actual ubot exe as this can't be signed even by inno 5 or any 3rd party software. The ubot exe launching is where your more likely to see issues with AVs. for a upcoming .net project i'm working on i'll be code signing the installer and program as it does reduce support calls for daft stuff like windows 8 trusted and some av trust. thanks kev123
×
×
  • Create New...