<?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/5479" />

	<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>2003-09-04T03:47:06-04:00</updated>

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

		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-04T03:47:06-04:00</updated>

		<published>2003-09-04T03:47:06-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26452#p26452</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26452#p26452"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26452#p26452"><![CDATA[
<blockquote class="uncited"><div>This way if the user that is not in the "allowed" list will get an "What? You need '.help'" reply <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>Yepp, that will work in the way i can limit what users can use whois, but every chanmaster in every chan need access to whois command to be able to manage its users.<br><br>And none of thoose chanmasters is supposed to know what other chnas the bots are on, since most of them are +secret.<br><br>If a user is in say 2 chans, when a chanmaster do a whois he can only see the channame of the chan he is master of, so there their code works, almost...<br><br>But what doesn't work is that at the end of the line where global flags are chown, there is a field for "LAST", and there it can show chans that the master has no right too see, since he has no flags in that chan.<p>Statistics: Posted by Guest — Thu Sep 04, 2003 3:47 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-09-04T02:48:25-04:00</updated>

		<published>2003-09-04T02:48:25-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26439#p26439</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26439#p26439"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26439#p26439"><![CDATA[
Example:<div class="codebox"><p>Code: </p><pre><code>set allowed "bla foo bar" bind filt - ".whois *" dcc:allowproc dcc:allow {idx args} {   global allowed   set usernick [idx2hand $idx]  if {[lindex $args 1] == ""} {     set icmd [lindex $args 0]    set args "$icmd "  }  if {[lsearch -exact [string tolower $allowed] [string tolower $usernick]] == -1} {    putdcc $idx "What? You need '.help'"    } else {    return $args  }}</code></pre></div>This way if the user that is not in the "allowed" list will get an "What? You need '.help'" reply <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Sep 04, 2003 2:48 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-04T02:19:40-04:00</updated>

		<published>2003-09-04T02:19:40-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26437#p26437</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26437#p26437"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26437#p26437"><![CDATA[
<blockquote class="uncited"><div>Well, you can use the bind filt and "change" a bit the .whois <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"></div></blockquote>And create my own .whois you mean, that though would require me being good at tcl scriptng, hehe.<br><br>Part of the whois code works great and I doubt I would manage to write that, hehe. The part where it hides channel record and channel flags on users for channels that the user (who issued .whois) have no access too... (hope anyone understand that line, hehe)<br><br>Which makes it quite weird that the makers of eggdrop let this slip by.<p>Statistics: Posted by Guest — Thu Sep 04, 2003 2:19 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[caesar]]></name></author>
		<updated>2003-09-04T01:45:15-04:00</updated>

		<published>2003-09-04T01:45:15-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26431#p26431</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26431#p26431"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26431#p26431"><![CDATA[
Well, you can use the bind filt and "change" a bit the .whois <img class="smilies" src="https://forum.eggheads.org/images/smilies/icon_smile.gif" width="15" height="15" alt=":)" title="Smile"><p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=187">caesar</a> — Thu Sep 04, 2003 1:45 am</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[AxS]]></name></author>
		<updated>2003-09-03T23:16:22-04:00</updated>

		<published>2003-09-03T23:16:22-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26424#p26424</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26424#p26424"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26424#p26424"><![CDATA[
Yeah!! I had the same problem using a tcl with bass seen script.  Someone typed !seen and the bot said user was last seen in #hiddenchannel<br><br>I was shocked to say the least hehehe.... whois will be the same issue.  Wonder how to get around that.... hope there is a solution!<p>Statistics: Posted by <a href="https://forum.eggheads.org/memberlist.php?mode=viewprofile&amp;u=2989">AxS</a> — Wed Sep 03, 2003 11:16 pm</p><hr />
]]></content>
	</entry>
		<entry>
		<author><name><![CDATA[Anonymous]]></name></author>
		<updated>2003-09-03T16:42:34-04:00</updated>

		<published>2003-09-03T16:42:34-04:00</published>
		<id>https://forum.eggheads.org/viewtopic.php?p=26393#p26393</id>
		<link href="https://forum.eggheads.org/viewtopic.php?p=26393#p26393"/>
		<title type="html"><![CDATA[security issue with whois]]></title>

		
		<content type="html" xml:base="https://forum.eggheads.org/viewtopic.php?p=26393#p26393"><![CDATA[
Lets say you have a botnet with a few channels, as standard no new user can get access to bot trough dcc or telnet. For each chan you give a few user that access to add users.<br><br>Now to the security issue:<br>A user with "party-line" access for #chan1 can do a whois on a user say me (botnet owner) and whois will report last seen, in this case #chan3. The security issue is that users in #chan1 should not know that #chan3 exists.<br><br>Does anyone have a sollution for this, whats still required is:<br>1, party-line access to add users<br>2, of course they need access to .whois to check their own users<p>Statistics: Posted by Guest — Wed Sep 03, 2003 4:42 pm</p><hr />
]]></content>
	</entry>
	</feed>
