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.

Telnet MOTD

Old posts that have not been replied to for several years.
Locked
I
Ice--Cube

Telnet MOTD

Post by Ice--Cube »

Hello,

I wonder where can i remove this telnet MOTD (the botnick and version bothers me...) :
------------------------------------------------------------------------------------
Hyundai (Eggdrop v1.6.15 (C) 1997 Robey Pointer (C) 2003 Eggheads)

Please enter your nickname.

------------------------------------------------------------------------------------
Thanx,

Ice--Cube
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

In ~text dir, you edit MOTD.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
I
Ice--Cube

Post by Ice--Cube »

no...that motd shows when u dcc chat the bot ... :) the motd for telnet must be somewhere else
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Begs the question of why it bothers you. I believe it's in the source.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

enable stealth-telnets in the config file

set stealth-telnets 1
User avatar
]Kami[
Owner
Posts: 590
Joined: Thu Jul 24, 2003 2:59 pm
Location: Slovenia
Contact:

Post by ]Kami[ »

Alchera wrote:Begs the question of why it bothers you. I believe it's in the source.
He wanna make it:

Hyundai (Icebot v1.6.15 (C) 2004 ice--cube (C) 2004 ice--team)

:roll:
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Would help if that was asked in the first place. :-?
I believe it's in the source.
As I stated earlier. :)

I suggest a read of the GNU General Public License (GPL).
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
User avatar
j0n
Op
Posts: 140
Joined: Wed May 07, 2003 5:31 pm
Location: sjn.nb.ca
Contact:

Post by j0n »

In the conf, find and remove;
set telnet-banner "motd"

* you can always just edit the motd and either remove the info or change the info "pico motd" *
User avatar
Alchera
Revered One
Posts: 3344
Joined: Mon Aug 11, 2003 12:42 pm
Location: Ballarat Victoria, Australia
Contact:

Post by Alchera »

Hi,

If I am reading everything correctly, Ice--Cube wants to actually change the information displayed when he/she telnet's to the bot.
In the conf, find and remove; set telnet-banner "motd"
The motd setting is: set motd "text/motd"

The setting for the telnet banner in the bot config is: set telnet-banner "text/banner"

Either disable in the config or edit ~text/banner.
Add [SOLVED] to the thread title if your issue has been.
Search | FAQ | RTM
I
Ice--Cube

Post by Ice--Cube »

kami since when do u read minds or smtng? dont be a wise guy kid... i need to change that to blank... it has to do smtng with safety (protection from that eggdrop exploit )

Greets,

Ice--Cube
I
Ice--Cube

Post by Ice--Cube »

tnx u very much gb ... thats just what i need.. tnx again :)
User avatar
strikelight
Owner
Posts: 708
Joined: Mon Oct 07, 2002 10:39 am
Contact:

Post by strikelight »

Ice--Cube wrote:kami since when do u read minds or smtng? dont be a wise guy kid... i need to change that to blank... it has to do smtng with safety (protection from that eggdrop exploit )

Greets,

Ice--Cube
The protection is to make sure you have set a password for all of your bots on each other...
I
Ice--Cube

Post by Ice--Cube »

strikelight... yes i know that ..but if u have 33 bots there is too much work to go in every bot and change the pass for every bot and watch that they match etc... :)
User avatar
caesar
Mint Rubber
Posts: 3778
Joined: Sun Oct 14, 2001 8:00 pm
Location: Mint Factory

Post by caesar »

Use an botnet pack like slennox's netbots..
Once the game is over, the king and the pawn go back in the same box.
g
greenbear
Owner
Posts: 733
Joined: Mon Sep 24, 2001 8:00 pm
Location: Norway

Post by greenbear »

Here's a script that takeda posted on the eggheads mailinglist:

Code: Select all

bind time - "0 0 * * *" time_check_for_empty_pass
proc time_check_for_empty_pass {args} {
  foreach bot [userlist b] {
    if {[passwdok $bot ""]} {
      setuser $bot PASS [randstring 12]
    }
  }
}
This script will check everyday if there are any bots on that don't
have a password set, and set one for them.
Locked