-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathChangeLog.nefarious
9102 lines (5206 loc) · 258 KB
/
ChangeLog.nefarious
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/***********************************************************************
Nefarious IRCu ChangeLog
2013-06-03 Matthew Beeching <[email protected]>
* doc/example.conf: Added WebIRC block flag 'a'.
* include/client.h: Added WebIRC block flag 'a'.
* ircd/m_webirc.c: Added WebIRC block flag 'a'.
* ircd/s_user.c: Added WebIRC block flag 'a'.
2012-05-11 Matthew Beeching <[email protected]>
* help/opers/who: Fix for unescaped % not showing in HELP WHO output.
* help/users/who: Fix for unescaped % not showing in HELP WHO output.
2012-05-09 Matthew Beeching <[email protected]>
* help/opers/who: Fix for unescaped % not showing in HELP WHO output.
* help/users/who: Fix for unescaped % not showing in HELP WHO output.
2012-03-29 Matthew Beeching <[email protected]>
* ircd/s_user.c: Fix for style 2 cloaking not cloaking the correct
host name when the user gets an automatic spoofhost via a spoofhost
block.
2012-03-18 Matthew Beeching <[email protected]>
* doc/p10.txt: Updated P10 documentation from
http://ircd.bircd.org/bewarep10.txt
2012-01-15 Matthew Beeching <[email protected]>
* ircd/s_err.c: Corrected RPL_STATSSHUN definition.
2012-01-11 Matthew Beeching <[email protected]>
* ircd/ircd_features.c: Fixed the default messages for
F:DNSBL_LOC_EXEMPT_N_TWO and F:KLINE_PROMPT_TWO to indicate the
correct login on connect PASS syntax.
2011-09-30 Matthew Beeching <[email protected]>
* help/opers/channelmodes: Fixed +h prefix not showing.
* help/opers/usermodes: Fixed definition of +x.
* help/users/channelmodes: Fixed +h prefix not showing.
* help/users/usermodes: Fixed definition of +x.
2011-08-02 Matthew Beeching <[email protected]>
* ircd/s_user.c: Fixed client connection server notice to display
class name.
2011-06-12 Matthew Beeching <[email protected]>
* ircd/m_webirc.c: Fix for differences between cli_sock_ip and
cli_ip.
2011-04-11 Matthew Beeching <[email protected]>
* ircd/m_server.c: Fix for bug 3283924
2010-09-30 Matthew Beeching <[email protected]>
* ircd/ircd_features.c: Fixed 2 memory leaks in itoa().
2010-09-30 Matthew Beeching <[email protected]>
* ircd/channels.c: Removed IsOper() exemptions from FEAT_EXTBAN_*
and FEAT_EXTEXCEPT_* Features.
2010-08-05 Matthew Beeching <[email protected]>
* ircd/cloak.c: Fixed a coupld of trivial bugs in the cloaking
functions.
2010-08-17 Matthew Beeching <[email protected]>
* ircd/channel.c: Fixed channel mode +Z to stop ALL users from
joining if they dont have user mode +z even if they have been
invited.
2010-08-16 Matthew Beeching <[email protected]>
* ircd/m_mode.c: Fix for crash bug when an oper with user mode +k
issues a MODE command for a channel he/she is not on.
* ircd/m_spamfilter.c: Fix for possible crash bug during
spamfilter propagation at burst.
2010-08-12 Matthew Beeching <[email protected]>
* doc/example.conf: Fix for a typo in example.conf.
2010-08-10 Matthew Beeching <[email protected]>
* ircd/m_check.c: Added SWHOIS to CHECK output.
2010-08-03 Matthew Beeching <[email protected]>
* ircd/s_user.c: Fix for crash when ulined server sets user mode
-x on a remote user.
2010-07-07 Matthew Beeching <[email protected]>
* help/opers/usermodes: Added missing +D user mode documentation.
* help/users/usermodes: Added missing +D user mode documentation.
2010-07-02 Matthew Beeching <[email protected]>
* ircd/channel.c: Fix for -Wshadow warnings.
* ircd/hash.c: Fix for -Wshadow warnings.
* ircd/ircd_events.c: Fix for -Wshadow warnings.
* ircd/ircd_parser.y: Fix for -Wshadow warnings.
* ircd/m_spamfilter.c: Fix for -Wshadow warnings.
* ircd/motd.c: Fix for -Wshadow warnings.
* ircd/numnicks.c: Fix for -Wshadow warnings.
* ircd/parse.c: Fix for -Wshadow warnings.
* ircd/s_conf.c: Fix for -Wshadow warnings.
2010-07-02 Matthew Beeching <[email protected]>
* ircd/opercmds.c: Fixed some -Wformat=2 warnings.
* ircd/os_bsd.c: Fixed some -Wformat=2 warnings.
* ircd/uping.c: Fixed some -Wformat=2 warnings.
2010-07-02 Matthew Beeching <[email protected]>
* ircd/m_help.c: Fixed compiler warnings.
* ircd/s_misc.c: Fixed compiler warnings.
2010-06-11 Matthew Beeching <[email protected]>
* ircd/m_check.c: Fix to stop class from showing in check when
a server is responding for a user on another server.
2010-05-20 Matthew Beeching <[email protected]>
* ircd/s_user.c: Changed User connection server notice to display
real host instead of LOC host.
2010-05-05 Matthew Beeching <[email protected]>
* ircd/s_serv.c: Removed sending PRIV_NONE as it caused problems
with X3's auto_oper and doesnt appear to be needed.
* ircd/s_user.c: Removed sending PRIV_NONE as it caused problems
with X3's auto_oper and doesnt appear to be needed.
2010-05-04 Matthew Beeching <[email protected]>
* ircd/client.c: Few tweaks to privs including fixing bug where
operator flags X W I and n didnt give the privs they were are
supposed to.
2010-04-29 Matthew Beeching <[email protected]>
* doc/example.conf: Added comment regarding the user of @ in
Client block host masks or the inclusion of the username param
in Client blocks.
2010-03-18 Matthew Beeching <[email protected]>
* ircd/version.c.SH: Updated to get cvs version details from hg.
2010-03-17 Matthew Beeching <[email protected]>
* ircd/s_user.c: Fix for bug where oper count didnt go up and down
as expected during splits and merges.
2010-03-15 Matthew Beeching <[email protected]>
* ircd/client.c: Removed WHOIS_NOTICE HIDE_IDLE XTRAOP
HIDE_CHANNELS REMOVE and DISPLAY_MODE from default global privs.
2010-03-14 Matthew Beeching <[email protected]>
* ircd/m_account.c: Fix for unknown ACCOUTN subtype S error due
to missing support for LOC_SENDSSLFP.
2010-03-08 Matthew Beeching <[email protected]>
* ircd/m_svsinfo.c: Fix for bug where SVSINFO was forwaded as
SVSIDENT.
2010-03-07 Matthew Beeching <[email protected]>
* ircd/m_join.c: Fix for AUTOCHANMODES only being applied to last
new channel joined.
* ircd/m_svsjoin.c: Fix for AUTOCHANMODES only being applied to
last new channel joined.
* ircd/channel.c: Fix for AUTOCHANMODES only being applied to
last new channel joined.
2010-03-05 Matthew Beeching <[email protected]>
* help/users/usermodes: Added user mode +q to documentation.
* help/opers/usermodes: Added user mode +q to documentation.
2010-02-16 Matthew Beeching <[email protected]>
* ircd/s_err.c: Changed RPL_WHOISSSL from 337 to 671 to match
other IRCd's
* include/numeric.h Changed RPL_WHOISSSL from 337 to 671 to match
other IRCd's
2010-02-16 Matthew Beeching <[email protected]>
* ircd/m_check.c: Added client class to /check output for Users
and Servers
2010-02-16 Matthew Beeching <[email protected]>
* ircd/s_user.c: Fix for bug where everyone except allowed users
could set user mode +B
2010-02-12 Neil Spierling <[email protected]>
* ircd/convert-conf.c: Change jupe -> global_jupe.
* tools/linesync/linesync.sh: Multiple checksum servers now work.
2010-02-12 Neil Spierling <[email protected]>
* doc/example.conf: Moved Jupe priv setting to global_jupe as it was
conflicting with Jupe blocks.
* ircd/ircd_lexer.l: See above.
* ircd/ircd_parser.y: See above.
2010-02-11 Neil Spierling <[email protected]>
* ircd/ircd_relay.c: Bug fix, exempts are now checked before R/t
extended bans.
2010-01-12 Neil Spierling <[email protected]>
* ircd/channel.c: Fix for adding multiple extended bans at a time.
2010-01-12 Neil Spierling <[email protected]>
* include/ircd.h: Declared get_pe_message.
* ircd/ircd.c: Added get_pe_message, this will get the reason for
a current pending quit.
* ircd/listener.c: If get_pe_message returns a reason then show
this when rejecting client connections on non exempt ports.
2010-01-09 Matthew Beeching <[email protected]>
* ircd/s_err.c: Minor typo fix.
2010-01-07 Neil Spierling <[email protected]>
* Some Undernet IRCu updates, see Changelog for more information.
2010-01-06 Matthew Beeching <[email protected]>
* ircd/engine_poll.c: Added missing ';'.
2010-01-05 Neil Spierling <[email protected]>
* Some Undernet IRCu updates, see Changelog for more information.
2010-01-03 Neil Spierling <[email protected]>
* ircd/m_check.c: Show timestamp in /check <server> output.
2009-12-31 Neil Spierling <[email protected]>
* configure: Regenerated.
* configure.in: Added a check for /usr/include/pcre as centos is
weird. I will simplify this section sometime into a for loop.
2009-12-29 Neil Spierling <[email protected]>
* ircd/m_server.c: Show IP in authorised connection notices.
2009-12-22 Neil Spierling <[email protected]>
* ircd/s_err.c: Typo fix.
2009-12-18 Neil Spierling <[email protected]>
* ircd/ircd_features.c: Allow EXTBANS to be set without needing
to restart for now. In 1.4 this will be set back to read only.
2009-12-18 Neil Spierling <[email protected]>
* doc/example.conf: Default OPEFLAGS to TRUE.
* doc/readme.features: Default OPEFLAGS to TRUE.
* ircd/ircd_features.c: Default OPERFLAGS to TRUE.
2009-12-18 Neil Spierling <[email protected]>
* ircd/ircd_parser.y: Fixed a bug where if you specified
propagate = yes in a class block you would only get local oper
status.
2009-12-18 Neil Spierling <[email protected]>
* doc/example.conf: Added HIS_GLINE_REASON (default FALSE).
* doc/readme.features: Added HIS_GLINE_REASON (default FALSE).
* include/ircd_features.h: Added HIS_GLINE_REASON (default FALSE).
* ircd/gline.c: Added HIS_GLINE_REASON (default FALSE). When TRUE
the gline reason will be hidden from the quit message. The affected
user(s) will still get the reason via ERR_YOURBANNEDCREEP.
* ircd/ircd_features.c: Added HIS_GLINE_REASON (default FALSE).
2009-12-18 Neil Spierling <[email protected]>
* config.h.in: Regenerated.
* configure: Rengerated.
* configure.in: Determine if its possible to change the core file
size limit.
* ircd/ircd.c: If its possible to change the limit then do so.
2009-12-18 Neil Spierling <[email protected]>
* help/opers/jupe: Added JUPE command help.
2009-12-17 Neil Spierling <[email protected]>
* ircd/m_burst.c: Removed tochan and toserv debugging from the
Net Rider kick messages.
2009-12-16 Neil Spierling <[email protected]>
* README: Misc updates.
2009-12-16 Neil Spierling <[email protected]>
* config.h.in: Regenerated.
* configure: Regenerated.
* configure.in: Added some extra checks from an autoscan check.
Also if --disable-subversion is given then the svncheck.sh script
is skipped.
* ircd/svncheck.sh: Only attempt to check if svn exists.
2009-12-16 Neil Spierling <[email protected]>
* configure: Regenerated.
* configure.in: --disable-ssl and --enable-ssl now work correctly.
2009-12-16 Neil Spierling <[email protected]>
* configure: Regenerated.
* configure.in: Check for EVP_sha256. Also properly check non
standard directories if they are given.
2009-12-13 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: Fix for compile error with SSL disabled.
2009-12-11 Neil Spierling <[email protected]>
* doc/readme.features: Added Extended ban and except types.
* include/ircd_features.h: Added individual Features for extended
bans and excepts.
* ircd/channel.c: Individual extended ban and except types can now
be configured via the Feature block. They still require the EXTBANS
Feature to be enabled. Opers and servers are not subject to this.
* ircd/ircd_features.c: Added individual Features for extended bans
and excepts. The EXTBAN isupport line is now generated based on what
is set and not set.
2009-12-08 Neil Spierling <[email protected]>
* doc/example.conf: Removed include comments from DNSBL Block.
2009-12-05 Matthew Beeching <[email protected]>
* ircd/m_webircextra.c: Fix fo WEBIRCEXTRA auth issue.
* ircd/m_webirc.c: Fix fo WEBIRCEXTRA auth issue.
* include/client.h: Fix fo WEBIRCEXTRA auth issue.
2009-12-05 Matthew Beeching <[email protected]>
* doc/readme.webircextra: Added documentation for the
WEBIRCEXTRA command.
2009-12-05 Matthew Beeching <[email protected]>
* ircd/m_webircextra.c: Added new WEBIRCEXTRA command.
* ircd/parse.c: Added new WEBIRCEXTRA command.
* ircd/Makefile.in: Added new WEBIRCEXTRA command.
* ircd/s_err.c: Added error reply numerics for WEBIRCEXTRA.
* include/numeric.h: Added error reply numerics for WEBIRCEXTRA.
* include/handlers.h: Added new WEBIRCEXTRA command.
* include/msg.h: Added new WEBIRCEXTRA command.
2009-12-04 Matthew Beeching <[email protected]>
* ircd/m_webirc.c: Added WebIRC block flag 'f'
* include/client.h: Added WebIRC block flag 'f'
* doc/example.conf: Added WebIRC block flag 'f'
2009-12-03 Matthew Beeching <[email protected]>
* ircd/m_fingerprint.c: Added FINGERPRINT command.
* ircd/parse.c: Added FINGERPRINT command.
* ircd/Makefile.in: Added FINGERPRINT command.
* ircd/s_err.c: Added RPL_SSLFP and ERR_NOSSLFP.
* include/numeric.h: Added RPL_SSLFP and ERR_NOSSLFP.
* include/handlers.h: Added FINGERPRINT command.
* include/msg.h: Added FINGERPRINT command.
* help/users/index: Added FINGERPRINT command.
* help/users/fingerprint: Added FINGERPRINT command.
* help/opers/fingerprint: Added FINGERPRINT command.
* help/opers/index: Added FINGERPRINT command.
2009-12-03 Neil Spierling <[email protected]>
* ircd/channel.c: Couple of more fixes with incorrect flags being
used with user_matches_host. This relates to text extended bans.
2009-12-03 Neil Spierling <[email protected]>
* ircd/ircd_relay.c: Use flags not extflags.
* ircd/s_user.c: Added a missing check in which was causing a
crash.
2009-12-01 Neil Spierling <[email protected]>
* ircd/m_challenge.c: Use cli_user(sptr)->username rather than
cli_username(sptr). This allows idents to work with oper blocks
for clients who dont use identd.
* ircd/m_oper.c: Use cli_user(sptr)->username rather than
cli_username(sptr). This allows idents to work with oper blocks
for clients who dont use identd.
2009-12-01 Neil Spierling <[email protected]>
* ircd/m_join.c: +L will only work if A, +L is set without +l. B,
+L is set with +l and the +l limit has been reached.
2009-12-01 Matthew Beeching <[email protected]>
* doc/example.conf: Added example Except block for IRCDriven.
2009-11-30 Matthew Beeching <[email protected]>
* ircd/convert-conf.c: Added SETHOST_AUTO to removed features list.
2009-11-30 Matthew Beeching <[email protected]>
* ircd/ircd_parser.y: Added autoapply option to Spoofhost blocks.
* ircd/ircd_lexer.l: Added autoapply option to Spoofhost blocks.
* ircd/s_user.c: Removed SETHOST_AUTO check before calling
conf_check_slines().
* ircd/s_conf.c: Modified conf_check_slines() to use autoapply
Spoofhost block option.
* ircd/ircd_features.c: Removed SETHOST_AUTO.
* include/s_conf.h: Added SLINE flag for autoapply Spoofhost block
option.
* include/ircd_features.h: Removed SETHOST_AUTO.
* doc/example.conf: Removed SETHOST_AUTO and added autoapply option
to Spoofhost blocks.
* doc/readme.features: Removed SETHOST_AUTO.
2009-11-29 Neil Spierling <[email protected]>
* doc/example.conf: Added LOC_SENDHOST and LOC_SENDSSLFP.
* doc/readme.features: Added LOC_SENDSSLFP.
* include/ircd_features.h: Added LOC_SENDSSLFP.
* ircd/ircd_features.c: Added LOC_SENDSSLFP (Default FALSE). This
depends on LOC_SENDHOST being set to TRUE.
* ircd/m_pass.c: Allow a blank password to be sent with LOC.
* ircd/s_user.c: Added another LOC type (S). If LOC_SENDHOST and
LOC_SENDSSLFP are enabled then a connecting client's SSL fingerprint
will be sent in the s2s LOC message.
* ircd/ssl.c: Adjusted some comments.
2009-11-27 Matthew Beeching <[email protected]>
* ircd/ssl.c: Change SSL fingerprint hash from SHA1 to SHA256.
2009-11-17 Neil Spierling <[email protected]>
* ircd/ircd_relay.c: Potential fix for the ~R crashes.
2009-11-14 Matthew Beeching <[email protected]>
* ircd/m_challenge.c: Added SSL client certificate fingerprint
veirifcation (Operator block).
* ircd/m_oper.c: Added SSL client certificate fingerprint
veirifcation (Operator block).
* ircd/m_server.c: Added SSL client certificate fingerprint
veirifcation (Connect block).
* ircd/s_user.c: Added SSL client certificate fingerprint
veirifcation (Client block).
* ircd/ircd_parser.y: Added cryptfp field to Operator block.
* ircd/ircd_lexer.l: Added cryptfp field to Operator block.
* ircd/s_conf.c: Added verify_sslclifp() to verify SSL client
certificate fingerprint.
* ircd/s_err.c: Added error reply ERR_SSLCLIFP.
* include/numeric.h: Added error reply ERR_SSLCLIFP.
* include/s_conf.h: Added verify_sslclifp() to verify SSL client
certificate fingerprint.
* doc/example.conf: Added cryptfp field to Operator block.
2009-11-14 Neil Spierling <[email protected]>
* ircd/ircd.c: Bug fix for SF Bug #2886366 (Delayed restarts/shutdowns
reveal actual host)
2009-11-14 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: Added support for server to server SSL.
* ircd/ssl.c: Added support for server to server SSL.
* ircd/ircd_parser.y: Added support for server to server SSL.
* ircd/m_check.c: Added SSL client certificate fingerprint to server
CHECK output.
* include/ssl.h: Added support for server to server SSL.
* include/s_conf.h: Added support for server to server SSL.
* doc/example.conf: Added support for server to server SSL.
2009-11-14 Neil Spierling <[email protected]>
* ircd/channel.c: Disallow wildcard only extended ~R bans.
* ircd/ircd_relay.c: Disallow wildcard only extended ~R bans.
2009-11-13 Matthew Beeching <[email protected]>
* ircd/client.c: Fix for CHECK privs replies going to wrong user.
* ircd/m_check.c: Fix for CHECK privs replies going to wrong user.
* include/client.h: Fix for CHECK privs replies going to wrong user.
2009-11-09 Matthew Beeching <[email protected]>
* ircd/s_bsd.c: Added call to function to get SSL client
certificate fingerprint and store it.
* ircd/ssl.c: Added function to get SSL client certificate
fingerprint.
* ircd/s_serv.c: Added SSLCLIFP mark
* ircd/m_mark.c: Added SSLCLIFP mark
* ircd/s_user.c: Added SSLCLIFP mark
* ircd/m_check.c: Added display of SSL client certificate
fingerprint in CHECK response.
* include/mark.h: Added SSLCLIFP mark
* include/ssl.h: Added function to get SSL client certificate
fingerprint.
* include/client.h: Added field to client struct to store SSL client
certificate fingerprint.
2009-11-06 Matthew Beeching <[email protected]>
* ircd/client.c: Fix for CHECK missing off PRIVs.
2009-11-06 Matthew Beeching <[email protected]>
* ircd/s_serv.c: Fix for a minor mistake in MARK_WEBIRC propagation.
2009-11-06 Matthew Beeching <[email protected]>
* ircd/s_serv.c: Fix for MARK_WEBIRC not being propagated at burst.
2009-10-17 Neil Spierling <[email protected]>
* ircd/m_burst.c: Added EXTBAN_REPLACE.
2009-10-16 Neil Spierling <[email protected]>
* ircd/ircd_string.c: Use IsSpace rather than iswseperator.
2009-10-16 Neil Spierling <[email protected]>
* doc/example.conf: Added feature ALLOW_TEXT_HOST (default TRUE).
* doc/readme.features: Added feature ALLOW_TEXT_HOST description.
* include/channel.h: Added EXTBAN_REPLACE.
* include/ircd_chattr.h: Added IsPunct and iswseperator.
* include/ircd_defs.h: Added MAXNUMPARAMS.
* include/ircd_features.h: Added FEAT_ALLOW_TEXT_HOST.
* include/ircd_string.h: Added my_strcasestr, parse_word, textban_replace
and explode_line.
* include/s_user.h: Added user_matches_host.
* ircd/channel.c: Allow a host to be specified in ~t extended text
bans. Also added in ~R extended bans for replacing text. Hosts can
also be specified. If no host is given then *!*@* is added.
* ircd/ircd_features.c: Added R to EXTBANS. Also added ALLOW_TEXT_HOST.
* ircd/ircd_relay.c: Use +b ~R to filter messages.
* ircd/ircd_string.c: Added my_strcasestr, parse_word, textban_replace
and explode_line.
* ircd/s_user.c: Added user_matches_host for checking host masks against
all possible types (hidden, marked, normal, ip etc).
2009-10-15 Neil Spierling <[email protected]>
* Reverted my commit from 2009-10-01 (2587).
* include/client.h: Added client_check_privs.
* ircd/client.c: Send 10 privs per line.
* ircd/m_check.c: Use client_check_privs to send privs. (SF Bug #2878801)
2009-10-06 Neil Spierling <[email protected]>
* ircd/s_stats.c: Fix for /stats v not showing correctly.
SF Bug #2873239
2009-10-02 Neil Spierling <[email protected]>
* ircd/m_burst.c: Missing prefix bug finally found and fixed.
2009-10-01 Neil Spierling <[email protected]>
* include/channel.h: Define extended ban ~R.
* include/ircd_chattr.h: Added iswseperator
* include/ircd_relay.h: Declere split_line.
* ircd/channel.c: Added extended ban ~R for replacing text.
* ircd/ircd_features.c: Added R to EXTBANS.
* ircd/ircd_relay.c: Added extended ban ~R for replacing text, eg
+b ~R:replace:me would replace the word replace with me. Word replacement
code from Syzop's text replacement module for Unreal IRCd
(http://www.vulnscan.org/modules).
2009-09-29 Neil Spierling <[email protected]>
* ircd/m_check.c: Small tweak to prevent exemptions being shown for
remote users. If you need them for a remote user do /CHECK NICK NICK.
2009-09-29 Neil Spierling <[email protected]>
* configure: Regenerated.
* configure.in: Check /usr/local for pcre.
2009-09-26 Neil Spierling <[email protected]>
* ircd/m_server.c: Slight wording change for rejected hub/leaf
links.
2009-09-26 Neil Spierling <[email protected]>
* ircd/m_webirc.c: Crash fix for WEBIRC if its recieved before
USER.
2009-09-25 Neil Spierling <[email protected]>
* ircd/s_conf.c: Fix where you couldnt oper if you didnt specify
maxlinks in a Class block.
2009-09-23 Neil Spierling <[email protected]>
* include/map.h: Fixes for scrambled maps.
* ircd/m_map.c: Fixes for scrambled maps.
* ircd/map.c: Fixes for scrambled maps.
2009-09-23 Matthew Beeching <[email protected]>
* ircd/m_webirc.c: Fix for minor bug caused by USER before WEBIRC
2009-09-23 Neil Spierling <[email protected]>
* include/s_conf.h: Use in_addr rather than char in find_eline_from_ip.
Also declare eflagstr.
* ircd/s_bsd.c: Use in_addr rather than char in find_eline_from_ip.
* ircd/s_conf.c: Use in_addr rather than char in find_eline_from_ip.
2009-09-23 Neil Spierling <[email protected]>
* include/check.h: Send both acptr and sptr in get_eflags. (SF 2864430)
* ircd/m_check.c: Send both acptr and sptr in get_eflags so we get the
flags for the right person and give the response to the right person.
(SF 2864430)
2009-09-22 Neil Spierling <[email protected]>
* doc/example.conf: Added I flag for IPCheck excepts.
* include/check.h: Declare get_eflags function.
* include/client.h: Added IPCheck except flags.
* include/s_conf.h: Declare get_eline_from_ip.
* ircd/m_check.c: Show exemption status for clients.
* ircd/m_nick.c: Tweak for IPCheck excepts.
* ircd/m_webirc.c: Tweak for IPCheck excepts.
* ircd/s_auth.c: Tweak for IPCheck excepts.
* ircd/s_conf.c: Tweak for IPCheck excepts. Also added function for
checking eline's based on a IP rather than a client pointer.
* ircd/s_misc.c: Tweak for IPCheck excepts.
* ircd/s_user.c: Tweak for IPCheck excepts.
2009-09-21 Matthew Beeching <[email protected]>
* tools/ipv6gw: Removed IPv6GW from tools now IRCGW is in trunk
2009-09-08 Matthew Beeching <[email protected]>
* ircd/m_quit.c: Fix for bug allowing users to bypass channel
mode +Q (strip quit messages)
2009-09-06 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Changed command line param handling
and added better handling for a couple of SSL errors
* tools/ipv6gw/ipv6gw.h: Added better handling for a couple of
SSL errors
2009-09-06 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Added rDNS support
* tools/ipv6gw/ipv6gw.h: Removed some duplicate #include's
2009-09-06 Neil Spierling <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Fixed a crash when reconnecting on
Linux systems.
* tools/ipv6gw/ipv6gw.h: Fixed a crash when reconnecting on
Linux systems.
2009-09-05 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Another fix for SSL related crash bug.
2009-09-05 Matthew Beeching <[email protected]>
* ircd/m_names.c: Added F:UHNAMES
* ircd/ircd_features.c: Added F:UHNAMES
* include/ircd_features.h: Added F:UHNAMES
2009-09-04 Matthew Beeching <[email protected]>
* ircd/m_webirc.c: Minor bug where WEBIRC users were getting
by the WEBIRC server's IP not their own.
* ircd/IPcheck.c: Fixed connection throttling so it now does
what it says on the tin.
2009-09-04 Neil Spierling <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Fix for a crash on connection to a
non ssl port with a non ssl connection.
2009-09-04 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Fix for a crash on disconnection.
2009-09-04 Neil Spierling <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Small crash fix with certain IPv6 IP's.
2009-09-03 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Added SSL support
* tools/ipv6gw/ipv6gw.conf: Added SSL support
* tools/ipv6gw/ipv6gw.h: Added SSL support
* tools/ipv6gw/Makefile: Added SSL support
2009-09-03 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Added command line flags -d/-debug
to replace #define DEBUG
* tools/ipv6gw/ipv6gw.h: Added command line flags -d/-debug
to replace #define DEBUG
2009-09-03 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Fixed bug causing WEBIRC message to
be sent more then once
* tools/ipv6gw/ipv6gw.h: Fixed bug causing WEBIRC message to
be sent more then once
* tools/ipv6gw/Makefile: Tweaked make clean
2009-09-03 Matthew Beeching <[email protected]>
* tools/ipv6gw/ipv6gw.cpp: Fixed a few typos in vIP generation
2009-09-03 Matthew Beeching <[email protected]>
* tools/ipv6gw/Makefile: Added "install" target with optional
command line param DEST=<installdir> (defaults to $HOME/ipv6gw)
2009-09-03 Neil Spierling <[email protected]>
* tools/Bounce/bounce.conf: Crap wasnt supposed to change this,
reverting.
* tools/Bounce/Bounce.cpp: Crap wasnt supposed to change this,
reverting.
2009-09-03 Neil Spierling <[email protected]>
* tools/ipv6gw/ipv6gw.conf: Configuration file.
* tools/ipv6gw/ipv6gw.cpp: Tool that will forward ipv6 connections
to nefarious with a rewritten host via WEBIRC.
* tools/ipv6gw/ipv6gw.h: Declerations etc.
* tools/ipv6gw/Makefile: Very basic make file for compiling.
2009-08-24 Matthew Beeching <[email protected]>
* ircd/ircd_features.c: Set F:STRICTUSERNAME default to false
as per readme.features
2009-08-15 Neil Spierling <[email protected]>
* help/opers/channelmodes: Small tweak to +z text.
* help/users/channelmodes: Small tweak to +z text.
* ircd/s_user.c: Require the F:line for +W to be TRUE even if a
person has the priv set.
2009-08-15 Neil Spierling <[email protected]>
* ircd/m_webirc.c: Clear IPChecked status before its re done with
the host from WEBIRC. Then re set it afterwards.
2009-07-29 Neil Spierling <[email protected]>
* tools/linesync/linesync.conf: Fixed up issues with ALLOWED_LINES
and blocks.
* tools/linesync/linesync.sh: Fixed up issues with ALLOWED_LINES and
blocks.
2009-07-29 Neil Spierling <[email protected]>
* tools/linesync/linesync.sh: Changed sum and sync files to have 13 on
the end of their filenames.
2009-07-29 Neil Spierling <[email protected]>
* ircd/ircd_snprintf.c: Bug fix for %#R not working.
2009-07-28 Neil Spierling <[email protected]>
* ircd/s_user.c: Bug fix for +x not working with login on connect.
And on a different note.. its my birthday tomorrow.
2009-07-26 Matthew Beeching <[email protected]>
* ircd/ircd_features.c: Fix for a minor syntax error in MAXLIST
2009-07-21 Matthew Beeching <[email protected]>
* doc/example.conf: Fixed URL feature examples
2009-07-15 Neil Spierling <[email protected]>
* doc/example.conf: Small tweak.
2009-07-07 Matthew Beeching <[email protected]>
* doc/Makefile.in: Small fix for make install error
2009-07-07 Neil Spierling <[email protected]>
* ircd/configure: Regenerated.
* ircd/configure.in: Removed unsigned char check.