Jump to content
UBot Underground

[TUT] Example Bots and How To Use the "Free" Command Line Arguments Plugin and open other Ubots


Recommended Posts

Hey guys,

 

Got another tutorial for ya's

 

This is using 2 free underrated plugins provided by ubotdev,com (btw thank youl)

 

Command Line Arguments

Advanced Shell

 

Attached are 2 Ubot files one is for a service type bot that takes the parameters (service bot) and the other sends to the "service bot".

 

You can compile the service bot and run the define command from the "head bot".

 

Make sure you make the file path correct for your machine where you downloaded the files.

(file path to service bot)

 

For more info about the plugins go to ubotdev,com

 

 

Enjoy!

TC

CMD-line-bot.ubot

CMD-line-service-bot.ubot

  • Like 5
Link to post
Share on other sites

I tried it UBS 5 and had some issues...mainly the just the file path.

 

and I noticed that the man urls are not navigating the way they should period in v4 + v5 looking into it.

 

I was updating from earlier version so I might have forgotten that there are some issues still my apologies. I started this TUT bot a while ago and saw a thread that reminded me of this.

 

But I swear that the first time I tried and tested this was working fine as far as navigating to multiple sites. Actually I know it works, but I changed couple thing for tutorial like made the command function and few other miner things. AS is you can get the visual concept at least.

 

But it is working just skipping a few urls.

 

I will try and fix soon.

 

TC

  • Like 1
Link to post
Share on other sites

ok I see what I did

 

In the Bot Name Field, I put some urls in there after the exe

 

just delete those

 

I was adding more to the field below it I thought

 

 

that fixed the weird navigation issues

 

should look like this

 

comment("Make sure Dile Path is correct for your cituation")
Send Arguments("CMD-line-service-bot.exe""https://www.yahoo.com/,http://www.bing.com/,http://ubotstudio.com/index7,http://www.aol.com/""{$special folder("My Documents")}\\All UBOT projects\\CMD line service bot")
define Send Arguments(#Service Bot Name#Argument list#File Path) {
    plugin command("Advanced Shell.dll""shell batch hidden""cd \"{#File Path}\"
{#Service Bot Name} {#Argument list} /auto")
}

  • Like 1
Link to post
Share on other sites

I love surprises, can't wait. ;)

 

Btw, a small improvement which will also allow users to use files that are stored on disks other than C: (current version fails to open the exe if it's stored on D:):

plugin command("Advanced Shell.dll", "shell batch hidden", "{$find regular expression(#File Path, "^[a-zA-Z]\{1,1\}:")}
cd \"{#File Path}\"
 {#Service Bot Name} {#Argument list} /auto")

Notice that in command line we first switch disk drive letter to make sure we are on the right one, only then we move into the folder.

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...