| 1 |
knight |
31 |
# $Id$ |
| 2 |
adx |
30 |
SPOOF <user@hostname> <free.form.spoof|-> [flags|- [password]] |
| 3 |
|
|
|
| 4 |
|
|
The SPOOF command allows you to create free form auth {} spoofs for |
| 5 |
|
|
various users on the fly and can propegate to other servers. It can |
| 6 |
|
|
also append existant spoofs as well. To use the SPOOF command here |
| 7 |
|
|
is an example if I want to spoof god@10.0.0.10: |
| 8 |
|
|
|
| 9 |
|
|
You also need to make sure to have .include "spoof.conf" in your ircd.conf |
| 10 |
|
|
|
| 11 |
|
|
SPOOF *god@10.0.0.* i.hate.packets |
| 12 |
|
|
|
| 13 |
|
|
That will give him the spoof. However you can specify flags as well: |
| 14 |
|
|
|
| 15 |
|
|
t (no_tilde), i (need_ident), k (kline_exempt), g (gline_exempt), |
| 16 |
|
|
l (exceed_limit), o (class = "opers"), f (can_flood), p (need_password) |
| 17 |
|
|
|
| 18 |
|
|
So if I want to give god a spoof but exempt him from K-Lines and G-Lines: |
| 19 |
|
|
|
| 20 |
|
|
SPOOF *god@10.0.0.* i.hate.packets kg |
| 21 |
|
|
|
| 22 |
|
|
Will give god K-Line and G-Line exemptions. |