<?xml version="1.0" encoding="utf-8" ?><rss version="2.0" xml:base="https://www.webmaster-forums.net/crss/node/1015213" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title></title>
    <link>https://www.webmaster-forums.net/crss/node/1015213</link>
    <description></description>
    <language>en</language>
          <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/blocking-computer#comment-1088232</link>
    <description> &lt;p&gt;Good idea.. However people likes to ruin it for others! They wouyld simply start disabling each others accounts &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;The IP blocking might be the best as of now...&lt;/p&gt;
&lt;p&gt;Thanks for your help everyone!!&lt;/p&gt;
&lt;p&gt;~casper&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Aug 2001 14:57:16 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1088232 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/blocking-computer#comment-1088230</link>
    <description> &lt;p&gt;Why don&#039;t you just disallow any attempts to log in with that particular username after, say, 6 attempts or so... don&#039;t even bother checking where they&#039;re from.. just don&#039;t let anybody log in with that username for an hour or something.  Maybe you could log whatever information about the attempted login that you can get so you can try and find patterns and track whoever is doing that stuff... &lt;/p&gt;
&lt;p&gt;just some thoughts!&lt;/p&gt;
 </description>
     <pubDate>Wed, 29 Aug 2001 13:59:33 +0000</pubDate>
 <dc:creator>lurch</dc:creator>
 <guid isPermaLink="false">comment 1088230 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/blocking-computer#comment-1087775</link>
    <description> &lt;p&gt;I don&#039;t really see any way around this unless you do one of the following:&lt;/p&gt;
&lt;p&gt;1) Setup a client certificate that is required to login.&lt;br /&gt;
2) Make your login page use a client-side active-x control.&lt;/p&gt;
&lt;p&gt;The MAC/Physical address is not available in the Server Variables.&lt;/p&gt;
&lt;p&gt;Your best bet is just to make it as much of a pain to hack as possible. Use hidden form fields, and only give them 3 or so attempts.&lt;/p&gt;
 </description>
     <pubDate>Wed, 22 Aug 2001 20:29:29 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1087775 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/blocking-computer#comment-1087771</link>
    <description> &lt;p&gt;Yes, I see your point...&lt;/p&gt;
&lt;p&gt;My entire site relies on sessions, and therefore also cookies... The problem is that any real hacker will easily be able to simply delete those cookies!&lt;/p&gt;
&lt;p&gt;Banning the IP aint good either... If someone for instance tryes to hack an account from a school, I would be blocking that whole complex for 30 minnutes &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/sad.png&quot; title=&quot;Sad&quot; alt=&quot;Sad&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;I believe that as of this cookies is the best thing... However, isn&#039;t there a better way? Hasn&#039;t every computer gotten other ways of being found than using the IP?&lt;br /&gt;
Again... I have heard a lot of this mac-addy... is that by any´chance something you know anything about?&lt;/p&gt;
&lt;p&gt;Thanks for your help thus far &lt;img src=&quot;https://www.webmaster-forums.net/misc/smileys/smile.png&quot; title=&quot;Smiling&quot; alt=&quot;Smiling&quot; class=&quot;smiley-content&quot; /&gt;&lt;/p&gt;
&lt;p&gt;VCasper&lt;/p&gt;
 </description>
     <pubDate>Wed, 22 Aug 2001 19:55:35 +0000</pubDate>
 <dc:creator>hotcut</dc:creator>
 <guid isPermaLink="false">comment 1087771 at https://www.webmaster-forums.net</guid>
  </item>
  <item>
    <title></title>
    <link>https://www.webmaster-forums.net/serverside-scripting/blocking-computer#comment-1087769</link>
    <description> &lt;p&gt;If you can force people to use cookies then I would use Sessions.&lt;/p&gt;
&lt;p&gt;Add a counter on the Session_OnStart, example:&lt;/p&gt;
&lt;p&gt;Sub Session_OnStart&lt;br /&gt;
  Session(&quot;LoginCounter&quot;) = 0&lt;br /&gt;
End Sub&lt;/p&gt;
&lt;p&gt;In your login handler page just increment as needed:&lt;/p&gt;
&lt;p&gt;If Login = false Then Session(&quot;LoginCounter&quot;) = Session(&quot;LoginCounter&quot;) + 1&lt;/p&gt;
&lt;p&gt;Then just build in the logic in the login form to deny any attepmts after a certain number:&lt;/p&gt;
&lt;p&gt;If Session(&quot;LoginCounter&quot;) &amp;lt; 5 Then&lt;br /&gt;
  Display Login form&lt;br /&gt;
Else&lt;br /&gt;
  Response.Write &quot;Exceeded valid login attempts&quot;&lt;br /&gt;
End If&lt;/p&gt;
&lt;p&gt;You could also record the IP number and disable it for 30 minutes or something, would make it more of a pain for the hackers since they would have to use a new IP for at least 30 minutes.&lt;/p&gt;
&lt;p&gt;If you can&#039;t force cookies then maybe use hidden form fields and increment them as necessary.&lt;/p&gt;
&lt;p&gt;You can&#039;t rely on IP since any serious hacker can spoof.&lt;/p&gt;
 </description>
     <pubDate>Wed, 22 Aug 2001 19:52:05 +0000</pubDate>
 <dc:creator>Peter J. Boettcher</dc:creator>
 <guid isPermaLink="false">comment 1087769 at https://www.webmaster-forums.net</guid>
  </item>
  </channel>
</rss>
