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.

Identd problems.

Old posts that have not been replied to for several years.
Locked
User avatar
firewall
Voice
Posts: 13
Joined: Thu Oct 07, 2004 8:31 pm
Location: Brazil
Contact:

Identd problems.

Post by firewall »

What I have to do for my bots get their real identd(at xxx.conf) instead get in identd the name of the shell account?

I have to install some daemons or use a TCL?


Thank you.
i'm firewall at virtualife.com.br
:D
long live eggdrop :)
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

If you have bought a shell from a shell provider then there is not much you can do aside ask the admin to allow you too use alternative idents. If its your personal box or you know the admin of the box you are using you can ask them to install 'oidentd' and that should fix your problem. Dont count on a comercial shell provider installing anything to allow you to use an alternate ident though.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
firewall
Voice
Posts: 13
Joined: Thu Oct 07, 2004 8:31 pm
Location: Brazil
Contact:

Post by firewall »

It's my personal shell...

I have 'ident' and 'identd' installed on it... Can it help me or I have to install 'oidentd' too?
i'm firewall at virtualife.com.br
:D
long live eggdrop :)
User avatar
firewall
Voice
Posts: 13
Joined: Thu Oct 07, 2004 8:31 pm
Location: Brazil
Contact:

Post by firewall »

oidentd installed.

What I have to do now?


Thanks.
i'm firewall at virtualife.com.br
:D
long live eggdrop :)
User avatar
^DooM^
Owner
Posts: 772
Joined: Tue Aug 26, 2003 5:40 pm
Location: IronForge
Contact:

Post by ^DooM^ »

Search through this forum it has been answered time and time again and RTFM.
The lifecycle of a noob is complex. Fledgling noobs gestate inside biometric pods. Once a budding noob has matured thru gestation they climb out of their pod, sit down at a PC, ask a bunch of questions that are clearly in the FAQ, The Noob is born
User avatar
DarkDeviL
Voice
Posts: 10
Joined: Sun Jul 03, 2005 4:29 pm
Location: Denmark
Contact:

Post by DarkDeviL »

Code: Select all

###########################################################
## identd.tcl ~ makes your eggies working with oidentd ! ##
###########################################################
## Author info:                                          ##
##                                                       ##
## Nick   : DarkDeviL                                    ##
## E-mail : darkdevil (at) staynet.org                   ##
## Webby  : www.darkdevil.dk                             ##
## Contact: #DarkDeviL @ irc.staynet.org                 ##
###########################################################
## Remember, the original author info is the original    ##
## copyright of a script. Changing it is lame, and even  ##
## you're violating the laws about copyright by doing    ##
## ...you're a lame ripper? or will you let the original ##
## author info stay?                                     ##
###########################################################

# Local '.oidentd.conf'-file.
set identcfg "/home/darkdevil/.oidentd.conf"

# Bindings

# we want to do it when we connect to the server,
# therefore we bind it with the event 'connect-server'.
bind evnt - connect-server identd

# Procedure

# here is our procedure, the main part of the script.

proc identd {type} {
  global botnick username identcfg
  set file [open $identcfg "w"]
  puts $file "global { reply \"$username\" }"
  close $file
}
Last edited by DarkDeviL on Fri Feb 16, 2007 9:55 pm, edited 1 time in total.
DarkDeviL.
E-mail: append '@staynet.org' to 'darkdevil'.
WWW: www.DarkDeviL.dk
IRC: #DarkDeviL, at irc.staynet.org
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

heh, your warning to potential rippers is lengthier than your code (which doesn't do anything but simply write presumably constant information to a conf file that should be static) - no offense though, welcome to the egghelp forums
User avatar
DarkDeviL
Voice
Posts: 10
Joined: Sun Jul 03, 2005 4:29 pm
Location: Denmark
Contact:

Post by DarkDeviL »

Hehe... Standard procedure for copyright-comment ;)
DarkDeviL.
E-mail: append '@staynet.org' to 'darkdevil'.
WWW: www.DarkDeviL.dk
IRC: #DarkDeviL, at irc.staynet.org
T
TngMstr
Voice
Posts: 5
Joined: Wed Jul 06, 2005 8:41 am

Post by TngMstr »

Im having ident troubles too...

I tried the identd.tcl from, DarkDeviL and although it did create the global reply "Tng", in oidentd.conf, it still didnt change the ident of the bot once it joined a channel.

oh... I do have oidentd server running on the shell

any other suggesttions?
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

if you run your bot from a paid shell account, you cannot change the bot's ident - which is actually your shell username - since the shell owners have to be accountable for their users' actions - that is, ircops/admins need to be able to report abuse to them by identifying the abuser by his/her real username, which is reported as ident on IRC
T
TngMstr
Voice
Posts: 5
Joined: Wed Jul 06, 2005 8:41 am

Post by TngMstr »

it is a shell I have root access to..

but there in lies my problem, the bot is not taking the shell username it is using something pretty wierd... TngMstr (U2FsdGVkX1@....)

might be a sysid or something cause it is the same for a couple different bots
User avatar
demond
Revered One
Posts: 3073
Joined: Sat Jun 12, 2004 9:58 am
Location: San Francisco, CA
Contact:

Post by demond »

quit doubleposting, that won't help solving your problem faster
Locked