This repository has been archived by the owner on Aug 14, 2022. It is now read-only.
forked from blitzed-org/bopm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
3534 lines (2187 loc) · 92.4 KB
/
ChangeLog
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
2007-05-15 20:34 dg
* Makefile.in, aclocal.m4, bopm.conf.blitzed, bopm.conf.sample,
configure, configure.in, src/Makefile.in: Remove references to
OPM from the config files (and add some to dronebl..). Up the
version to 3.1.3
2005-10-06 22:57 dg
* network-bopm/network-bopm.pl: Add back the ! which appears to
have got lost at some point..
2005-06-03 13:58 dg
* src/firedns.c: Fix unknown error when it exists but there isn't a
record of the type we expect.
2004-12-07 11:56 grifferz
* bopm.conf.blitzed, bopm.conf.sample: Obviously don't need port
1080 again.
2004-12-07 11:54 grifferz
* bopm.conf.blitzed, bopm.conf.sample: Extra SOCKS4 ports from
Keith Dunnett, apparently more common than port 1080.
2004-10-25 06:21 strtok
* src/opercmd.c:
Fixed bug in userhost parsing where BOPM would not clear the
queue of commands from non-opered clients.
2004-08-26 13:15 phil
* configure, configure.in: * Added the DNS name of the IRC server
to the information needed by the OPM team to add the reporter.
* Regenerated configure with autoconf.
2004-08-23 23:43 dg
* src/scan.c: Of course it would help if I could type
2004-08-23 23:34 dg
* src/scan.c: scan.c: null pointer deref fix from glen at delfi.ee
2004-01-28 21:03 mark
* bopm.conf.blitzed: Kudos to strtok :P (syntax error)
2004-01-28 20:37 mark
* bopm.conf.blitzed: - Updated kline command to using BOPMAKILL -
Removed NJABL DNSBL config - Updated protocol/port pairs
2004-01-17 23:17 grifferz
* configure, src/Makefile.in: Something odd going on with the
autotools.
2004-01-17 22:53 strtok
* ChangeLog, src/Makefile.in:
Updated ChangeLog
2004-01-17 21:49 grifferz
* configure, configure.in: Update version and autoconf again.
2004-01-17 14:12 grifferz
* configure, configure.in: Chnage some versions strings for this
one-off non-release mumble mumble please ignore.
2004-01-15 23:12 dg
* src/dnsbl.c: Add X- header to BOPM reports for version, patch
from mark.
2004-01-12 18:12 dg
* src/firedns.c: Fix the ID/Unknown error bug (finally), this needs
testing..
2003-11-29 19:56 strtok
* src/irc.c:
irc.c: Added extra irc_read debug logging.
2003-11-29 17:46 dgl
* src/irc.c: Set IRC_LAST on connect.
2003-11-15 13:29 andy
* ChangeLog: Requested obfuscation.
2003-09-03 17:22 andy
* bopm.conf.sample, configure, configure.in: New address to use to
contact us about enabling bopm reporting.
2003-07-06 07:48 andy
* bopm.conf.blitzed: 07:47:12 <@Silencer> grifferz 07:47:17
<@Silencer> line 61 of bopm.conf.blitzed 07:47:30 <@Silencer> add
3 whitespace :D 07:48:19 <@grifferz> sigh..
2003-06-29 11:43 andy
* bopm.conf.blitzed: WG should be WINGATE, spotted by phil.
2003-06-28 21:25 andy
* bopm.conf.blitzed: The latest agreed changes.
2003-06-28 05:55 andy
* configure, configure.in, src/setup.h.in: Remove the --with-select
and --with-unreal ./configure options, as they are no longer
relevant.
Add a quick check for SIZEOF_SHORT=2, which we think is the case
everywhere but will break firedns in strange ways if it turns out
to not be the case.
2003-06-27 21:52 dgl
* configure, configure.in: Update version number
2003-06-27 21:48 dgl
* network-bopm/network-bopm.pl: Simplified network-bopm a lot as
there's no need for IO::Select anymore.
2003-06-27 20:15 dgl
* bopm.conf.sample: *cough*
2003-06-26 21:35 strtok
* network-bopm/network-bopm.pl:
INET isn't even used anymore
2003-06-25 23:22 strtok
* ChangeLog:
Updated ChangeLog
2003-06-25 23:16 dgl
* README: 3.0.4 -> 3.1.0
2003-06-23 18:43 strtok
* network-bopm/network-bopm.pl:
Cleanup
2003-06-23 18:41 strtok
* network-bopm/network-bopm.pl:
PROTOCOL{NICK} is no longer required.
2003-06-23 18:30 strtok
* network-bopm/network-bopm.pl:
Do TS delta check to see if nick is new enough to be scanned
2003-06-22 22:02 strtok
* network-bopm/network-bopm.pl:
Removed listening code, service now sends a NOTICE to a bopm nick
, which means the bopm can be connected to any server.
2003-06-22 19:03 andy
* src/dnsbl.c: I am calling it a very big typo, OK?
2003-06-22 18:05 strtok
* src/scan.c:
Don't spam channel with negotiation timeout/failures on manual
scan (mofo@efnet)
2003-06-22 15:19 andy
* .cvsignore: Ignore libtool.
2003-06-22 15:18 andy
* libtool: These shouldn't be in CVS.
2003-06-22 14:55 andy
* src/dnsbl.c: ...the effect is that bopm will use the else clause
(destined for manual scans) for every but the first positive
result... -> Segfault :) -- mark AT nedworks.org
2003-06-22 14:19 andy
* src/: config-parser.y, defs.h, firedns.c, irc.c, list.c, main.c,
negcache.c, opercmd.c: Mostly pedantry.
2003-06-21 23:25 strtok
* network-bopm/network-bopm.pl:
Relay /KILLs that pertain to bopm Do not QUIT on /kill
2003-06-21 23:04 strtok
* network-bopm/network-bopm.pl:
Catch/relay USERHOST reply (302)
2003-06-21 22:52 strtok
* network-bopm/network-bopm.pl:
Fixed parser Relay PRIVMSG
2003-06-21 22:34 strtok
* network-bopm/network-bopm.pl:
IO::Socket reuse => 1 (from dg)
2003-06-21 22:25 strtok
* network-bopm/network-bopm.pl:
Require PASS Remove USE Event
2003-06-21 22:02 strtok
* libtool, network-bopm/network-bopm.pl:
Added initial network-bopm perl script.
2003-06-21 15:33 andy
* src/stats.c: As newfd has become an unsigned int it can no longer
contain error return values from dup(). A slight oversight, I
think :) -- mark AT nedworks.org
2003-06-21 06:11 andy
* README: A bit about logging.
2003-06-21 05:31 andy
* .cvsignore, contrib/logrotate/.cvsignore,
contrib/logrotate/logrotate.sh, src/main.c: Reopen logfiles on
receipt of SIGUSR1. An example contrib log rotation script which
uses this.
2003-06-21 01:57 dgl
* src/: config.h, dnsbl.c, stats.c, stats.h: Made the dnsbl stats
into per dnsbl stats.
2003-06-21 01:27 dgl
* src/dnsbl.c: Only print DNSBL results if no scan has had a
positive match already.
2003-06-20 05:55 andy
* src/: irc.c, opercmd.c, scan.c: Fix a gcc3-ism.
2003-06-20 05:18 andy
* libtool, src/config.c, src/config.h, src/dnsbl.c, src/firedns.c,
src/inet.c, src/irc.c, src/main.c, src/misc.c, src/misc.h,
src/negcache.c, src/negcache.h, src/opercmd.c, src/opercmd.h,
src/scan.c, src/scan.h, src/stats.c: LOTS of tidying up to
compile with no warnings.
2003-06-20 05:12 andy
* configure, configure.in: Tidy up fascist CFLAGS again.
2003-06-20 00:21 strtok
* src/list.c:
No more need for node_t *p
2003-06-20 00:14 strtok
* src/list.c:
Make sure we elements-- before returning.
2003-06-20 00:11 strtok
* src/list.c:
list_remove no longer checks for the existance of the node in the
list
2003-06-20 00:07 strtok
* bopm.conf.blitzed, bopm.conf.sample, src/config-lexer.l:
Added ON/OFF and YES/NO as bool type and changed default to
YES/NO in conf
2003-06-20 00:03 strtok
* bopm.conf.blitzed, bopm.conf.sample, src/config-lexer.l:
Use true/false instead of 1/0 in config files/parser
2003-06-19 17:34 andy
* configure, configure.in: Tidy up the fascist CFLAGS and add an
option for -Werror.
2003-06-19 17:19 dgl
* libtool, src/Makefile.am, src/Makefile.in, src/scanwarn.c,
src/scanwarn.h: Remove scanwarn.{c,h} as nothing uses them (they
were just empty functions..).
2003-06-19 17:12 dgl
* src/: config.c, config.h, dnsbl.c, firedns.c, firedns.h, main.c,
scan.c: Changed a load of (struct something *) MyMalloc casts to
just MyMalloc to keep Andy happy, same with sizeof.. A few
little warning fixes (with ./configure --extra-fascism), mostly
for firedns.
2003-06-19 16:30 dgl
* src/: dnsbl.c, firedns.c, firedns.h: Reorganisation of the DNS
code so it's a bit easier to read, and several bugs fixed: the
lookup is aborted if it can't send the lookup and the fd limit is
also correctly dealt with. Several API changes and a new error
for fd limit reached.
2003-06-17 20:10 dgl
* src/firedns.c: firedns_getip{4,6} are meant to return an fd..
2003-06-17 20:02 dgl
* src/firedns.c: bad dg. free -> MyFree.
2003-06-17 19:56 dgl
* src/firedns.c: Add stuff to the list only if we don't get -1
return from the firedns setup
2003-06-17 19:34 dgl
* src/: dnsbl.c, firedns.c: Two little cleanups..
2003-06-17 14:31 dgl
* README: Add a comment about !all
2003-06-17 14:23 dgl
* src/irc.c: Make !all work properly.
2003-06-17 13:49 dgl
* src/irc.c: Check all the characters of the nickname provided (not
just the first 3), also means that < 3 character nicknames will
work..
2003-06-17 13:47 andy
* bopm.conf.sample: Better keep it commented out.
2003-06-17 13:32 andy
* bopm.conf.sample: New connregex line for StarIrcd/SorIrcd.
2003-06-12 06:51 andy
* CREDITS: [no log message]
2003-06-12 06:51 andy
* src/: dlclist.c, dnsbl.c, malloc.c, malloc.h, scan.c: As per
patch supplied by Christopher Bongaarts:
http://lists.blitzed.org/pipermail/bopm/2003-June/001282.html
Portability fixes for Sun Forte compiler:
- No C++ comments - No inline - Don't initialize values of an
auto variable from members of a struct passed via pointer
NOTE: I have not added in any of the firedns parts yet - we need
to think about that some more.
2003-06-03 17:31 andy
* CREDITS: Thanks, Joshua.
2003-06-03 00:54 dgl
* src/: config.c, dnsbl.c, firedns.c, irc.c, log.c, main.c,
config.h, firedns.h, log.h, main.h, negcache.c, opercmd.c,
opercmd.h, scan.c, scan.h, stats.c, stats.h: log -> log_printf to
fix namespace collision, various other fixes for compile warnings
from gcc 3 (mostly signed/unsigned and prototypes).
2003-04-30 16:28 dgl
* bopm.conf.sample, src/config-parser.y, src/dnsbl.c,
src/firedns.c: - Cleaned up bopm.conf.sample (it was a mess of
tabs and not tabs..) - Made firedns_resolveip4 accept IP as input
(firedns really is getting messy) - Added missing target_port to
scanner block stuff (now documented too) - DNSBL lookups no
longer print timeout error to the channel
2003-04-29 20:51 dgl
* bopm.conf.blitzed, bopm.conf.sample, src/config-lexer.l,
src/config-parser.y, src/config.h, src/dnsbl.c, src/dnsbl.h,
src/firedns.c, src/firedns.h, src/inet.c, src/inet.h, src/irc.c,
src/main.c, src/scan.c, src/stats.c: Lots of mostly DNS related
changes
dnsbl.{c,h}: - Many changes to accomdate configurable output from
blacklists - Return values from DNSBLs must now be set in the
configuration file, they are not hardcoded - It is possible to
ignore some of the results returned from DNSBLs - Lookup errors
are now sent to channels as errors as well as to the log - The
void pointer passed to firedns is now a dnsbl_scan struct
(contains a pointer to the blacklist and to the scan_struct).
firedns.{c,h}: - firedns.conf is now read from the BOPM
configuration dir (etc/firedns.conf) not the system wide /etc.
(firedns.conf is just a list of IP addresses, one on each line)
- Fixes to make firedns.conf work in a sane way - Better errors
when problems occur reading configuration files -
firedns_resolveip4 fixed to actually work - new error: Network
error, for errors receiving from the dns server
inet.{c,h}, irc.c, scan.c, main.c: - bopm_gethostbyname removed,
code uses firedns_resolveip4 now - DNS lookup code adjusted to
use firedns
scan.c: - %t in kline format strings - the type of proxy found on
the host works for both DNSBL results and proxies found by BOPM
configuation: - Added new blacklist directives (this breaks old
config files). - scanner blocks now inherit settings from _the
one above them_, this saves multiple definitions of the same
thing in different scanner blocks (this affects vhost, fd,
target_ip, target_port, timeout, max_read and target_strning in
scanner blocks).
2003-04-07 23:51 strtok
* src/config-lexer.l:
Ignore ^M in config file.
2003-03-07 00:43 andy
* Makefile.in, aclocal.m4, configure, configure.in, libtool,
src/Makefile.in, src/firedns.c, src/setup.h.in: Add checks for
size of int/long. Work out what type to use for a 32-bit int.
Regenerate autotools.
2003-03-07 00:37 dgl
* src/firedns.c: Of course, you need an extra header file for that
to work.. so changing int32_t to int. (I blame vim's syntax
hilighting for lulling me into a false sense of security, but
probably testing stuff with the exact code you commit is also a
good idea).
2003-03-06 23:59 dgl
* src/firedns.c: Fix for a weird bug exposed by running on alpha -
the returned record would only have 2 bytes, so it appeared that
the proxy had no type.
This happens because firedns assumes that long = 4 bytes, so the
temp. fix changes long -> int32_t.
Thanks to Chainsaw for trusting the BOPM developers with a shell
account on his machine ;-).
2003-02-19 00:49 strtok
* ChangeLog, Makefile.in, aclocal.m4, configure, configure.in,
src/Makefile.am, src/Makefile.in, src/opercmd.c:
Updated ChangeLog Commented out OP command Version is now 3.0.3
2003-02-17 14:17 dgl
* contrib/opm-xml/op.php: - Updated to use new opm.blitzed.org URL
- Added port information
2003-02-12 17:31 andy
* README: Fix <check> typo, add a bit about fdstat.
2003-02-12 16:15 andy
* README: Note about it not adding klines on manual scan.
2003-02-10 13:16 andy
* bopm.conf.blitzed, bopm.conf.sample: A couple more SOCKS4 weird
ports seen in the wild.
2003-02-02 22:59 andy
* configure, configure.in, ltmain.sh: Remove goat/faldo.
Regenerate autotools.
2003-02-02 22:46 strtok
* src/scan.c: scan_handle_error: Fixed use of NULL pointer where
libopm returned back a file descriptor allocation error and
manual_target was NULL
2003-02-02 00:44 andy
* src/opercmd.c: Make sure that the param string is at least null
terminated when there is no parameter (this caused segfault on
any oper command for implementations whose strlen() can't handle
null pointers, e.g. sparc-sun-solaris2.8).
2003-02-01 21:22 strtok
* src/opercmd.c: opercmd: Added requested (Alien88@efnet) op
command
2003-01-30 02:04 andy
* bopm.conf.sample: Updated Ultimate IRCD connregex example that
actually works, thanks to "Baltazar" <baltazar.pinto AT
mail.telepac.pt>
2003-01-29 18:03 dgl
* contrib/crontab/bopmchk: update paths for bopm 3.0!
2003-01-28 03:05 andy
* INSTALL, README, bopm.conf.sample, src/.cvsignore: Removed some
blitzedisms to try to cut down on abuse from morons.
2003-01-20 02:36 andy
* bopm.conf.sample: Missing */! This caused confusion for a number
of people who did not spot it.
2003-01-20 02:30 andy
* libtool: Apparently we need this now too. One day someone will
explain autotools to me.
2003-01-20 02:12 andy
* Makefile.in, aclocal.m4, acsite.m4, config.guess, config.sub,
configure, configure.in, src/Makefile.am, src/Makefile.in,
src/scan.c, src/setup.h.in: Better socket libs check from Warren
Young <warren@etr-usa.com>. Header reorganisation for benefit of
some solaris machines..
2003-01-18 20:22 andy
* src/stats.c: Use the dup() method of FD counting instead of the
fcntl() method - fcntl() only seems to count established tcp
connections.
Reorganise some headers.
2003-01-17 17:40 andy
* contrib/opm-xml/op.php: A PHP/XML client for the opm.blitzed.org
dnsbl for use if you wish to allow people to check if they are in
the DNSBL without them ever going outside your website.
Contributed by codemastr/CaliMonk/Axenet.
2003-01-17 01:18 andy
* src/stats.c: Fixes for FreeBSD.
2003-01-15 22:05 andy
* README: Typo.
2003-01-15 22:01 andy
* README: The boneheadedness becomes too much. :(
2003-01-14 02:43 strtok
* src/stats.c: Check ret != -1 in total fd use count
2003-01-13 00:56 dgl
* src/: dnsbl.c, firedns.c, firedns.h: Make firedns/dnsbl print
nicer error messages
2003-01-12 22:53 strtok
* src/stats.c: Show open fd limit in fdstat
2003-01-12 22:37 dgl
* src/firedns.c: Remove lastcreate close code from firedns
2003-01-12 22:22 strtok
* src/: config.c, opercmd.c, stats.c, stats.h: Added code to
config.c to close the config file. Added start of 'fdstat'
command. Right now it counts the tototal open fds the process has
2003-01-11 06:28 andy
* aclocal.m4, configure, configure.in, src/Makefile.am,
src/Makefile.in, src/compat.c, src/compat.h, src/dnsbl.c,
src/firedns.c, src/inet.c, src/inet.h, src/log.c, src/main.c,
src/misc.c, src/scan.c, src/snprintf.c, src/snprintf.h:
src/snprintf.[ch]: Added Mark Martinec's (v)snprintf
replacement from http://www.ijs.si/software/snprintf/ for
sstems with missing or broken (v)snprintf.
src/compat.c: Replace inet_aton() with bopm_inet_aton() to
prevent clashes.
src/compat.h: Systems without inet_aton() should use
bopm_inet_aton() (compat.c).
Systems without (v)snprintf should use bopm_snprintf()
(snprintf.c).
Systems without inet_pton() should use bopm_inet_pton()
(inet.c).
src/dnsbl.c: src/firedns.c: src/log.c: src/main.c: src/misc.c:
src/scan.c: Needs to include compat.h if it wants to compile
on Solaris.
src/inet.c: For now made inetntoa() static as it is used
nowhere but this file. Later we need to either remove this and
use bopm_inet_ntoa() from compat.c, or else remove that one
and rename this one.
Commented out inetntop() -- nothing seems to be using it
currently?
Renamed inet_pton() to bopm_inet_pton() to avoid clashes.
2003-01-10 19:33 strtok
* src/: dnsbl.c, scan.c: scan_positive only klines if ss->positive
is true
2003-01-09 17:30 andy
* acsite.m4, configure, configure.in, src/setup.h.in: Chekc for
working snprintf (but do nothing about it yet). This macro came
from http://www.gnu.org/software/ac-archive/ac_func_snprintf.html
and is copyright Rüdiger Kuhlmann <info@ruediger-kuhlmann.de>.
2003-01-08 03:16 strtok
* ChangeLog, configure, configure.in: Version is now 3.0.2 Updated
ChangeLog
2003-01-08 03:08 strtok
* src/: dnsbl.c, irc.c: Fix to only ss->scans-- when we know for
sure we're not using ss anymore.
2003-01-08 03:08 andy
* .gdbinit: This helps when using gdb with bopm.
2003-01-06 21:01 strtok
* ChangeLog: Updated ChangeLog
2003-01-06 20:58 strtok
* configure, configure.in, src/irc.c: Version should be 3.0.1 not
3.01
2003-01-06 19:26 dgl
* src/dnsbl.c: Send proxy port in dnsbl reports so BOPMs will be
reporting them when dnsbl starts to accept them.
2003-01-06 14:27 andy
* src/scan.c: Typo. :)
2003-01-05 20:05 strtok
* ChangeLog: Updated ChangeLog
2003-01-05 02:37 strtok
* src/firedns.c: Added more verbose error when firedns can't find
any nameservers
2003-01-04 04:30 andy
* bopm.conf.blitzed, bopm.conf.sample: A whole lot of extra socks5
ports identified by Gael Martinez. :(
2003-01-04 04:13 strtok
* ChangeLog, configure, configure.in: Version is now 3.01 Updated
ChangeLog
2003-01-03 07:09 strtok
* src/scan.c: Fixed it so it doesn't pass the address of the
pointer of sc->vhost to the scanner config (tsk tsk dg and strtok
are both bug demons)
2003-01-01 20:01 dgl
* src/scan.c: Added missing BIND_IP for libopm vhost setting
2002-12-31 10:04 andy
* bopm.conf.blitzed, bopm.conf.sample: Update sample confs for the
new exempt {} behaviour.
Make the case of BOPM consistent. :)
2002-12-31 08:56 strtok
* src/: scan.c, scan.h: Added nick!user@ip exempt checking
2002-12-31 08:22 andy
* INSTALL: Er, really remove the --with-unreal stuff like I said in
the last commit.
2002-12-31 08:17 andy
* CREDITS, README: Corrected typo. Moved credits to CREDITS.
2002-12-31 08:12 andy
* INSTALL: --with-unreal is no longer needed (the "PROTOCTL HCN"
stuff goes in the bopm.conf now).
libopm only supports poll() for now.
2002-12-31 08:04 andy
* src/main.c: Complain and die if we can't write the pidfile.
2002-12-29 21:38 strtok
* README: Added FAQ to README
2002-12-29 21:30 strtok
* README, TODO: Updated README and TODO for release
2002-12-29 21:24 strtok
* ChangeLog: Updated changelog
2002-12-29 21:19 strtok
* bopm.conf.sample: Added ultimate ircd sample connregex
2002-12-29 21:03 strtok
* src/: dnsbl.c, scan.c: Prevented memory leaks where ss wasn't
freed if all scanners returned !OPM_SUCCESS and there were no
dnsbl checks.
Added verbosity to failed dnsbl checks on manual scan Added
scan_checkfinished if dnsbl check was last test to finish and it
failed (memory leak)
2002-12-29 19:58 strtok
* src/: dnsbl.c, scan.c: Polished up manual check verbosity. Added
gethostbyname for manual scan hosts
2002-12-27 03:17 strtok
* bopm.conf.blitzed, bopm.conf.sample: Added left out IRC{password}
example to sample confs
2002-12-24 03:14 strtok
* bopm.conf.sample: Added target_string example for bahamut
2002-12-24 03:09 strtok
* src/: dnsbl.c, scan.c: Fix for log() null strings during manual
lookups Fix for not showing results of dnsbl on manual scans
2002-12-23 23:16 strtok
* bopm.conf.sample: Updated bopm.conf.sample with dg's scanner/user
from bopm.conf.blitzed
2002-12-23 21:10 strtok
* src/scan.c: Removed scan_end verbosity
2002-12-23 17:47 andy
* src/scan.c: Log ircd connect notice into the scanlog also. ("Why
have you postscanned me!?" "One of your users connected to our
IRC network, look...");
2002-12-23 17:38 andy
* src/.cvsignore: How did that happen?
2002-12-23 17:29 andy
* src/.cvsignore: Ignore bison-generated files.
2002-12-23 02:06 strtok
* src/scan.c: scan_positive now uses opm_end, instead of
opm_endscan. opm_end ends ALL scans, opm_endscan only ends active
ones
2002-12-23 02:02 strtok
* src/scan.c: Always log file descriptor/bind errors with libopm
2002-12-22 23:59 strtok
* bopm.conf.sample: Added more (commented out) HTTP protocols to
bopm.conf.sample
2002-12-22 23:37 strtok
* src/main.c: Changed RESTART code to die if OPT_DEBUG, otherwise
close fd 0-limit
2002-12-22 23:33 strtok
* README, configure: Put rehash explanation back in README
2002-12-22 23:30 strtok
* src/main.c: Fixed error message in main.c (restart).
2002-12-22 23:24 strtok
* src/: irc.c, log.c, main.c, main.h: Added main_restart function
to restart bopm process. Call main_restart on m_kill
2002-12-22 21:08 strtok
* src/: irc.c, options.h: Reconnect on disconnection fix. Only try
reconnecting every 30 seconds (limit CPU by sleep)
2002-12-22 19:57 dgl
* bopm.conf.blitzed: Updated so we don't scan as many ports for
users running an identd.
2002-12-22 19:13 strtok
* src/config-parser.y: Allow empty options{}, exempt{} and OPM {}
2002-12-22 14:49 dgl
* src/config-parser.y: Missing semi-colon (the version of bison on
FreeBSD seems to care about this)
2002-12-22 08:49 strtok
* src/config-parser.y: Fixed missing ; in config-parser.y Added /*
empty */ | to options{}, exempt{} and opm{} (shift errors?)
2002-12-22 08:32 andy
* bopm.conf.blitzed: Tends to work better if you close the comment.
2002-12-22 08:20 andy
* bopm.conf.blitzed: Can't have empty sections {}.
2002-12-22 08:09 andy
* bopm.conf.sample: <strtok> andy: might want to show that you can
stack channel {}
2002-12-22 08:06 andy
* bopm.conf.sample: Negative caching no longer really presents a
performance problem.
2002-12-22 07:29 andy
* ChangeLog, INSTALL, Makefile.in, README, TODO, aclocal.m4,
bopm.conf.blitzed, bopm.conf.sample, configure, configure.in,
src/Makefile.am, src/Makefile.in, src/bopchecker.c,
src/bopchecker.h, src/compat.c, src/config-lexer.l,
src/config-parser.y, src/config.c, src/config.h, src/dlclist.c,
src/dlclist.h, src/dnsbl.c, src/dnsbl.h, src/extern.h,
src/firedns.c, src/firedns.h, src/inet.c, src/inet.h, src/irc.c,
src/irc.h, src/list.c, src/list.h, src/log.c, src/log.h,
src/main.c, src/malloc.c, src/malloc.h, src/match.c, src/match.h,
src/misc.c, src/negcache.c, src/negcache.h, src/opercmd.c,
src/opercmd.h, src/options.h, src/scan.c, src/scan.h,
src/scanwarn.c, src/scanwarn.h, src/setup.h.in, src/stats.c,
src/stats.h: Merge LIBOPM branch to main. (fun!)
2002-12-22 07:22 andy
* src/: config-lexer.l, config-parser.y, config.c, config.h, irc.c,
log.c, log.h, main.c, scan.c: Added "scanlog" config directive,
to log all scans to a specific file.
2002-12-22 07:19 andy
* bopm.conf.blitzed: A example config suited to Blitzed admins.
2002-12-22 07:19 andy
* bopm.conf.sample: Lots more comments taken mostly from the old
bopm.conf.sample.
2002-12-21 19:41 andy
* src/scan.c: Make sure they give some parameters on a manual scan.
Patch from W. Campbell <wcampbel@botbay.net>
2002-12-21 17:30 dgl
* src/irc.c: Fix joining keyed channels (thanks to W. Campbell and
Jan Chrillesen)
2002-12-19 20:15 strtok
* src/irc.c: Check for NULL get_channel in m_cannot_join
2002-12-17 07:46 strtok
* src/irc.c: Cleaned up irc.c
2002-12-17 07:31 strtok
* src/: Makefile.am, Makefile.in, opercmd.c, scanwarn.c: Removed
dlclist.c/dlclist.h Added 'status' as alias for stat/stats
command
2002-12-17 07:24 strtok
* src/: config.c, dnsbl.c, firedns.c, inet.c, irc.c, main.c,
opercmd.c, scan.c, stats.c: Cleaned up main.c Standardized
indenting for switch/case
2002-12-17 07:14 strtok
* README, TODO: More updates to README
2002-12-17 03:56 strtok
* src/firedns.c: firedns: Fixed bug where size was never checked
(thus if it goes over dns_fdlimit it we write to naughty memory)
2002-12-17 03:28 strtok
* src/: firedns.c, irc.c: Use proper lists in firedns.c (much
cleaner now!)
2002-12-16 22:00 strtok
* src/: scan.c, scan.h: scan.c: only add user to a scanner once
2002-12-16 21:18 strtok
* ChangeLog, bopm.conf.sample, src/bopchecker.c, src/bopchecker.h:
Removed bopchecker from project. Added better commenting to
bopm.conf.sample
2002-12-16 17:54 andy
* configure, configure.in, src/inet.c, src/inet.h, src/irc.c,
src/setup.h.in: Add configure check for inet_pton().
Rename inetpton() in inet.c to inet_pton() and only use it if the
build host does not have its own inet_pton().
2002-12-16 02:26 dgl
* src/firedns.c: use poll in dns code to cope with >1024 fds
2002-12-16 01:08 dgl
* src/config-parser.y: missing semicolon
2002-12-16 00:57 strtok
* src/: irc.c, scan.c: Fixed userinfo_create and scan_create memory
leaks