Log in | Back to darenet.org

Server Commands/ACCOUNT

m
 
(18 intermediate revisions not shown)
Line 1: Line 1:
-
{| class="wikitable" width="25%" style="font-size: 85%; text-align: left;"
+
'''Syntax:''' <code>ACCOUNT <target numeric> <flag> [<account|fd cookie> [<timestamp> <serial>]]</code>
-
|-
+
-
| '''Command Token:''' AC
+
-
|}
+
-
<pre>ACCOUNT <numeric> <flag> <args></pre>
+
-
Examples:
+
Valid values for <code><flag></code> are as follows:
-
<pre>1* Az AC ABAAC R     JoeUser        1037526164  -- New (standard)
+
* '''R''' - Register
-
2* Az AC ABAAC R    JoeUser                    -- New but No timestamp
+
* '''A''' - Login-on-connect authorized (successful)
-
3* Az AC AB    A    .15.1835576208 1037526164  -- LOC authorised
+
* '''D''' - Login-on-connect denied (failed)
-
4* Az AC AB    D     .15.1835576208 1037526164  -- LOC denied
+
* '''U''' - Unregister
-
5* Az AC ABAAC U                                 -- Unregister
+
* '''M''' - Rename
-
6* Az AC ABAAC M     J0eUser                    -- Rename</pre>
+
-
The ACCOUNT command implements a login system for ircd-darenet. When received by the user's server, the user (specified by <target> - the user's numeric nick) is considered logged in to the <account>. The optional <timestamp> parameter (used on DareNET) specifies a timestamp that can be used to determine which version of the user's account the user is logged in to; this can be used by service bots as a way of distinguishing hacked accounts from legitimate user logins after a password change, which would raise the timestamp.
+
Examples:
-
A user remains logged in until one of the following conditions apply:
+
<pre>
 +
        Numeric  Type  Account|FD Cookie  Timestamp  Serial
 +
------------------------------------------------------------------------------
 +
1* Az AC ABAAC    R    Joe                1037526164  4056      -- Register
 +
2* Az AC AB      A     .15.1835576208    1037526164  4056      -- LOC authorized
 +
3* Az AC AB      D    .15.1835576208    1037526164            -- LOC denied
 +
4* Az AC ABAAC    U                                              -- Unregister
 +
5* Az AC ABAAC    M    Bob                            4056.dbx  -- Rename</pre>
-
* The account is unregistered through NickServ.
 
-
* The account is suspended through NickServ.
 
-
* The user disconnects.
 
-
Since ircd-darenet propogates the account name (and timestamp, if set) when re-introducting users during net junctions, allowing services bots to see that a user is logged in and set their appropriate internal state. This means that users will stay logged in regardless of netsplits and nickname changes.
+
The <code>ACCOUNT</code> commands implements a login system for ircd-darenet.
-
The account is only used by ircd-darenet for pre-logging in users while they're connecting (e.g. login-on-connect), for umode +R & cmodes +R/M, host hiding and for application of channel bans and silence masks. ircd-darenet does not otherwise use account information.
+
When received by the user's server, the user is considered logged in to the <code>account</code>. The <code>timestamp</code> parameter specifies a timestamp that can be used to determine which version of the account the user is logged in to; this can be used by service bots as a way of distinguishing hacked accounts from legitimate user logins.
-
ACCOUNT is intended to be issued by service bots on the network. The login-on-connect sustem is based on IAuth, which casues the server to introduce the client as logged in, just as during net junctions.
+
The <code>serial</code> parameter may be an arbitrary value. On DareNET, it is used to pass the account's unique identifier, and, in some instances, a unique identifier for the database used.
 +
Unlike stock ircu, ircd-darenet allows for users to be logged out of an account without killing the user's IRC session. Note, users cannot log themselves out. A user remains logged in until one of the following conditions apply:
 +
 +
* The account is unregistered through NickServ.
 +
* The account is suspended through NickServ.
 +
* The user disconnects.
 +
Since ircd-darenet propagates the account name, timestamp and serial when re-introducting users during net junctions, services bots will be able to determine if a user has logged in and set their appropriate internal state. This means that users will stay logged in regardless of netsplits and nickname changes.
 +
<code>ACCOUNT</code> is intended to be issued by service bots on the network. The login-on-connect system is based on IAuth, which causes the server to introduce the client as logged in, just as during net junctions.
[[Server Commands|(Return to Main listing of Server Commands)]]
[[Server Commands|(Return to Main listing of Server Commands)]]

Current revision as of 14:44, 17 May 2012

Syntax: ACCOUNT <target numeric> <flag> [<account|fd cookie> [<timestamp> <serial>]]

Valid values for <flag> are as follows:

  • R - Register
  • A - Login-on-connect authorized (successful)
  • D - Login-on-connect denied (failed)
  • U - Unregister
  • M - Rename

Examples:

         Numeric  Type  Account|FD Cookie  Timestamp   Serial
------------------------------------------------------------------------------
1* Az AC ABAAC    R     Joe                1037526164  4056      -- Register
2* Az AC AB       A     .15.1835576208     1037526164  4056      -- LOC authorized
3* Az AC AB       D     .15.1835576208     1037526164            -- LOC denied
4* Az AC ABAAC    U                                              -- Unregister
5* Az AC ABAAC    M     Bob                            4056.dbx  -- Rename


The ACCOUNT commands implements a login system for ircd-darenet.

When received by the user's server, the user is considered logged in to the account. The timestamp parameter specifies a timestamp that can be used to determine which version of the account the user is logged in to; this can be used by service bots as a way of distinguishing hacked accounts from legitimate user logins.

The serial parameter may be an arbitrary value. On DareNET, it is used to pass the account's unique identifier, and, in some instances, a unique identifier for the database used.

Unlike stock ircu, ircd-darenet allows for users to be logged out of an account without killing the user's IRC session. Note, users cannot log themselves out. A user remains logged in until one of the following conditions apply:

  • The account is unregistered through NickServ.
  • The account is suspended through NickServ.
  • The user disconnects.

Since ircd-darenet propagates the account name, timestamp and serial when re-introducting users during net junctions, services bots will be able to determine if a user has logged in and set their appropriate internal state. This means that users will stay logged in regardless of netsplits and nickname changes.

ACCOUNT is intended to be issued by service bots on the network. The login-on-connect system is based on IAuth, which causes the server to introduce the client as logged in, just as during net junctions.

(Return to Main listing of Server Commands)