<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en-gb">
	<link rel="self" type="application/atom+xml" href="https://forum.eggheads.org/app.php/feed/topic/341" />

	<title>egghelp/eggheads community</title>
	<subtitle>Discussion of eggdrop bots, shell accounts and tcl scripts.</subtitle>
	<link href="https://forum.eggheads.org/index.php" />
	<updated>2001-12-13T17:05:00-04:00</updated>

	<author><name><![CDATA[egghelp/eggheads community]]></name></author>
	<id>https://forum.eggheads.org/app.php/feed/topic/341</id>

		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2001-12-13T17:05:00-04:00</updated>

		<published>2001-12-13T17:05:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2726#p2726</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2726#p2726"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2726#p2726"><![CDATA[
Around any instances of newchanban in your script.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Thu Dec 13, 2001 5:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-12-13T01:48:00-04:00</updated>

		<published>2001-12-13T01:48:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2701#p2701</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2701#p2701"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2701#p2701"><![CDATA[
Where does this code exactly go in the repeat tcl?  I'm willing to try it as I actually did but I got errors, and I'm not a tcl coder so no idea where or how it should be implemented in the script.<br><p>Statistics: Posted by Guest — Thu Dec 13, 2001 1:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2001-11-29T23:36:00-04:00</updated>

		<published>2001-11-29T23:36:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2227#p2227</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2227#p2227"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2227#p2227"><![CDATA[
That appears to be another trigger of the same problem in Eggdrop's ban sharing. When a newchanban is repeated over an existing ban, the bot itself acts as expected (keeps ban, activates it on the channel if it isn't present) but sharebots can receive a 'cancel ban' command from that bot, so they remove the ban, resulting in the +b-b silliness.<br><br>The latest repeat.tcl doesn't check if a ban exists before doing a newchanban, adding a check would probably reduce the problem (but fixing it in Eggdrop's code to avoid these workarounds would be better). However, there is still the other cause of multiple bots setting a ban simultaneously, which creates big problems for sentinel.tcl and can cause the same problem with repeat.tcl or any other script which uses newchanban.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Thu Nov 29, 2001 11:36 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Petersen]]></name></author>
		<updated>2001-11-29T19:56:00-04:00</updated>

		<published>2001-11-29T19:56:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2222#p2222</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2222#p2222"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2222#p2222"><![CDATA[
Its easy enough to work around that. Simply check for the existance of the ban in the internal banlist immediatly before issuing the newchanban.<br><br>ie<br><div class="codebox"><p>Code: </p><pre><code>set isalreadyban 0        foreach i [banlist $chan] {        if {[string match $banmask [lindex [split $i] 0]]} {        set isalreadyban 1break}}if {![set isalreadyban]} {           newchanban ......}</code></pre></div>trust me, it works. i had repeat4.1.tcl doing that manic +b-b [censored] untill i wrote that code, which stopped it.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=60">Petersen</a> — Thu Nov 29, 2001 7:56 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-29T19:27:00-04:00</updated>

		<published>2001-11-29T19:27:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=2220#p2220</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=2220#p2220"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=2220#p2220"><![CDATA[
Does anyone know of the eggdrop source has been fixed for this?  An author of another script put in a workaround for this problem of the bot sharing bans/unbans so it the script wouldn't be affected.<br><br>Or is there a chance netbots script can be edited to not be affected either?<br><p>Statistics: Posted by Guest — Thu Nov 29, 2001 7:27 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[slennox]]></name></author>
		<updated>2001-11-16T21:05:00-04:00</updated>

		<published>2001-11-16T21:05:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1711#p1711</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1711#p1711"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1711#p1711"><![CDATA[
This is eggdrop's fault. Take at least three sharebots (the more the better) and enter the following at almost the same time in all bots:<br><br>.tcl newchanban #channel *!*@*.test.com niceguy "test ban"<br><br>This simulates the bots all setting a ban at the same time in response to a flood.<br><br>Watch as the bots go through a whole lot of "ban" / "cancel ban" silliness before they settle.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=13034">slennox</a> — Fri Nov 16, 2001 9:05 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-16T19:28:00-04:00</updated>

		<published>2001-11-16T19:28:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1709#p1709</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1709#p1709"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1709#p1709"><![CDATA[
Channel is both +dynamicbans and +userbans .<br>Maybe i should get another flood tcl :/<p>Statistics: Posted by Guest — Fri Nov 16, 2001 7:28 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[ppslim]]></name></author>
		<updated>2001-11-08T21:00:00-04:00</updated>

		<published>2001-11-08T21:00:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1539#p1539</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1539#p1539"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1539#p1539"><![CDATA[
The only way I can see this happening, is if the channel is set -userbans, +dynamicbans and the botnet is lagged.<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2">ppslim</a> — Thu Nov 08, 2001 9:00 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2001-11-08T20:39:00-04:00</updated>

		<published>2001-11-08T20:39:00-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=1535#p1535</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=1535#p1535"/>
		<title type="html"><![CDATA[Ban-Unban flood on small repeat floods]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=1535#p1535"><![CDATA[
My botnet, after a small repeat flood, has a strange behaviour:<br>*** user^ was kicked by netbot1 (stop repeating)<br>*** netbot2 sets mode: +b *!*@host<br>*** netbot3 sets mode: -b *!*@host<br>*** netbot4 sets mode: -b *!*@host<br>*** netbot5 sets mode: +b *!*@host<br><br>settings in netset.tcl are<br># repeat.tcl settings<br>set nb_component(repeat) 1<br>set rp_chans ""<br>set rp_echans ""<br>set rp_efficient 1<br>set rp_exempt "o|o"<br>set rp_warning 0<br>set rp_kflood 4:60<br>set rp_kreason "stop repeating"<br>set rp_bflood 8:60<br>set rp_breason "repeat flood"<br>set rp_sflood 0:00<br>set rp_sreason "stop repeating"<br>set rp_slength 40<br>set rp_mtime 240<br>set rp_mreason "multiple repeat floods"<br>set rp_btime 40<br><br>I'd like to avoid this ban-unban flood, i.e. the netbots shouldn't clear the ban.<br>Thanks in advance.<br><p>Statistics: Posted by Guest — Thu Nov 08, 2001 8:39 pm</p><hr />
]]></content>
	</entry>
	</feed>
