<div dir="ltr">don't know if that's true Tom.<br><br>We get quite a few errors from bots trying to inject random stuff.<br>So they pump in params that don't exist, and we barf on them.<br><br>Don;t think we should explicitly be .slice-ing all incoming params just to avoid this circumstance.<br>
Particularly in #create calls.<br><br>Always try to avoid setter methods like this;<br><br><pre><code class="ruby"><span class="keywords">class</span> Post < ActiveRecord::Base<br>  <span class="keywords">def</span> name=<span class="brackets">(</span>value<span class="brackets">)</span><br>
    <span class="keywords">self</span>.connection.execute<span class="brackets">(</span><span class="string">"DROP DATABASE my_production_db"</span><span class="brackets">)</span><br>    <span class="keywords">self</span><span class="symbol">[:name</span>] = value<br>
  <span class="keywords">end</span><br><span class="keywords">end<br></span></code></pre>Because Post.new(:name => "Matthew") will really mess you up!<br><br><div class="gmail_quote">2008/7/31 Tom Stuart <span dir="ltr"><<a href="mailto:tom@experthuman.com">tom@experthuman.com</a>></span><br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;"><div class="Ih2E3d">On 31 Jul 2008, at 11:16, Andrea (Q) wrote:<br>
<blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
everyday i receive a lot of exceptions but the most of are from bot, there is a way to manage that situation?<br>
</blockquote>
<br></div>
I know it's not a very helpful thing to say, but: don't you want to fix whatever problem is causing these exceptions, rather than just ignoring them? Presumably any exception encountered by a bot could just as easily be encountered by a user?<div>
<div></div><div class="Wj3C7c"><br>
_______________________________________________<br>
Chat mailing list<br>
<a href="mailto:Chat@lists.lrug.org" target="_blank">Chat@lists.lrug.org</a><br>
<a href="http://lists.lrug.org/listinfo.cgi/chat-lrug.org" target="_blank">http://lists.lrug.org/listinfo.cgi/chat-lrug.org</a><br>
</div></div></blockquote></div><br></div>