This is the new home of the egghelp.org community forum.
All data has been migrated (including user logins/passwords) to a new phpBB version.


For more information, see this announcement post. Click the X in the top right-corner of this box to dismiss this message.

botnet sending commands

Old posts that have not been replied to for several years.
Locked
T
TurboChicken
Halfop
Posts: 61
Joined: Wed Sep 29, 2004 3:18 pm

botnet sending commands

Post by TurboChicken »

within a script that is trigger by a bot on the botnet using the "putbot" command... is there a way for the receiving bot to workout the the sending bot's nick

i.e.

Turbo-SD sends a command mysqlupdate to Turbo-RC

Turbo-RC's bind picks it up and runs update proc....

in the update proc... what var would i use to get Turbo-SD's nick?
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

it's specified in the proc you call on the receiving bot

Code: Select all

bind bot b keyword proc:name
proc proc:name {frombot cmd arg} {
 #...
}
ie. $frombot or whatever name you specified in the proc header.
T
TurboChicken
Halfop
Posts: 61
Joined: Wed Sep 29, 2004 3:18 pm

Post by TurboChicken »

worked a treat... thanks matey...
Locked