Jump to content
UBot Underground

How To Fill Date With Ubot


Recommended Posts

This is a quick little code snippet of one way you could do that. It will choose a random month from 01-09, random day from 01-09, and random year from 1960-1990.

 

To test it just load it in a separate tab, load the page in the browser and click run.

set(#month, "0{$rand(1, 9)}", "Global")
set(#day, "0{$rand(1, 9)}", "Global")
set(#year, $rand(1960, 1990), "Global")
set(#separator, "/", "Global")
set(#build_birthday, "{#month}{#separator}{#day}{#separator}{#year}", "Global")
divider
type text(<birthday field>, #build_birthday, "Standard")

  • Like 1
Link to post
Share on other sites

It is controlled with javascript

method 1 (use windows command by plugin 1)

navigate("https://appleid.apple.com/account","Wait")
wait for browser event("Everything Loaded","")
wait(1)
plugin command("WindowsCommands.dll", "type keys", "appleid.apple.com* - UBot Studio Stealth Developer Edition", "HwndWrapper[UBot Studio.exe;;808ae428-cd2b-47dd-8ba9-8c179d7d8ee4]", 1016, 745, 11221888)

method 2 (use windows command by plugin 2)

navigate("https://appleid.apple.com/account","Wait")
wait for browser event("Everything Loaded","")
wait(1)
plugin command("Advanced Screen and Windows.dll", "mouse action", "Mouse Left Click", "appleid.apple.com* - UBot Studio Stealth Developer Edition", "HwndWrapper[UBot Studio.exe;;808ae428-cd2b-47dd-8ba9-8c179d7d8ee4]", 1023, 748, "True", 100)
wait(1)
plugin command("Advanced Screen and Windows.dll", "send keys focus active window", 11221888, "Mode 2", 1000, 500)

method 3 (use windows command by plugin 3)

Use a copy and paste from the clipboard.
But I do not remember the name of the plugin.

method other you must have javascript knowledge

  • Like 1
Link to post
Share on other sites

thx BoosterBots and pash for suggestion

 

I just realized its JavaScript that blocking sending key due to separator

 

I added separator and its working fine on normal command.

 

I tried all things send key, mouse over, keyboard event, javascript run and no luck

 

and just a separate and that did work

Link to post
Share on other sites

 

This is a quick little code snippet of one way you could do that. It will choose a random month from 01-09, random day from 01-09, and random year from 1960-1990.

 

To test it just load it in a separate tab, load the page in the browser and click run.

set(#month, "0{$rand(1, 9)}", "Global")
set(#day, "0{$rand(1, 9)}", "Global")
set(#year, $rand(1960, 1990), "Global")
set(#separator, "/", "Global")
set(#build_birthday, "{#month}{#separator}{#day}{#separator}{#year}", "Global")
divider
type text(<birthday field>, #build_birthday, "Standard")

 

why not straight

 

type text(<birthday field>,"{$rand(01,30)}/{$rand(01,30)}/{$rand(1950,1995)}","Key Press")

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...