User Person - Stack Overflowmost recent 30 from stackoverflow.com2009-12-21T12:18:04Zhttp://stackoverflow.com/feeds/user/87280http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/840668/where-should-restricting-ip-address-be-handled/845421#8454210Answer by Person for Where should restricting IP address be handled?Person2009-05-10T14:16:37Z2009-05-10T14:16:37Z<p>This depends on the type of resources that need to be restricted by IP. If parts of the application need to be restricted via IP then the application should be handling it. If the entire application needs to be blocked then you should be further up the chain.</p>
<p>The general rule is to restrict as early as possible without compromising any audit systems you have in place (it is almost always a good idea to know when people try to break your security system). </p>
http://stackoverflow.com/questions/172484/how-to-ignore-gcc-compiler-pedantic-errors-in-external-library-headers/761156#7611560Answer by Person for How to ignore gcc compiler pedantic errors in external library headers?Person2009-04-17T16:33:35Z2009-04-17T16:33:35Z<p>I don't know of any way to tell gcc to stop emitting those warnings. However you could hackishly remove third-party warnings with something like llvm-gcc (or just gcc) -pedantic 2>&1|grep -v "/usr/"</p>
http://stackoverflow.com/questions/533965/why-is-security-through-obscurity-a-bad-idea/726381#7263811Answer by Person for Why is security through obscurity a bad idea?Person2009-04-07T15:38:34Z2009-04-07T15:38:34Z<p>Security through obscurity is not bad. In fact we use security through obscurity every day. One example: passwords. To make a password secure it has to be obscure.</p>
<p>Security is all about resources. The more resources it takes to gain access to a specific piece of information or to take a certain action the more secure something is. If you make a program that has a known vulnerability which requires an immense amount of time to discover you are depending on the resource of time. Security isn’t “yes” or “no” but how much? Removing the vuln will probably increase the “how much” scale but depending on your needs it may not matter.</p>
<p>If your system is vuln to a publicly available exploit than that means that most attackers will have the resources available to exploit you. If you discovered the exploit on your own after 3 months of research that will probably require more resources from the attacker. This means your system is more secure - even if it is the same vuln.</p>
<p>The internet makes certain resources such as time far more valuable as it reduces its availability. This means that if you ship software with a security problem malicious users are more likely to find out about it in a shorter amount of time.</p>
<p>Weak encryption is better than no encryption - if you know that it is weak. This will serve a deterrent to some (however few) and will increase the resources needed to break whatever your trying to secure. Just like a lock on a door only stops the honest and undetermined so to encryption will stop only the honest and undetermined. Just like a better lock on the door is more secure, so to a better algorithm is more secure.</p>
<p>Don't let the unknowing fool you into thinking that security through obscurity is evil. Security through obscurity isn’t a problem. Security through weak obscurity is.</p>
http://stackoverflow.com/questions/722973/is-it-a-security-risk-not-to-use-a-htaccess-file/726324#7263241Answer by Person for Is it a security risk not to use a .htaccess file?Person2009-04-07T15:24:42Z2009-04-07T15:24:42Z<p>.htaccess files are configuration files used to set options on a per directory level. These same options (and more) could be set from the main apache configuration (often in /usr/local/etc/apache*). If you own your server and have set up your Apache configuration properly it may actually be a gain to <strong>disable</strong> .htaccess for performance reasons.</p>
<p>Not properly configuring permissions is usually a security risk. How you set them is up to you. Some people prefer having .htaccess enabled so they could keep application specific settings together.</p>
<p>To answer your specific question about Joomla: the .htaccess file provided by default (last I checked) only does URL rewriting. This provides near-zero security benefit so not having a .htaccess file should not be a problem. </p>
<p>Lastly it depends on what you mean by secure (as does almost any question relating to security).</p>
http://stackoverflow.com/questions/265601/what-ide-editor-do-you-use-for-ruby-on-linux/726257#7262570Answer by Person for What IDE / Editor do you use for Ruby on Linux?Person2009-04-07T15:11:32Z2009-04-07T15:11:32Z<p>It all depends on what you want.</p>
<p>I personally use nano as an editor as the default ruby tools as the rest of my IDE.</p>
<p>If you are looking for a more "heavyweight" IDE look at Eclipse (<a href="http://rubyeclipse.sourceforge.net/" rel="nofollow">http://rubyeclipse.sourceforge.net/</a>) or netbeans (Google for link).
There are a number of in-the-middle options which behave differently and have different features. Google is your best best when it comes to these. </p>
<p>Also - please see <a href="http://stackoverflow.com/questions/253982/ruby-and-linux-prefered-setup">http://stackoverflow.com/questions/253982/ruby-and-linux-prefered-setup</a>
and <a href="http://stackoverflow.com/questions/59968/best-editor-for-ruby">http://stackoverflow.com/questions/59968/best-editor-for-ruby</a>
If I could close this question for being a dupe - I would.</p>
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/719543#71954310Answer by Person for What is the best regular expression for validating email addresses?Person2009-04-05T19:39:31Z2009-04-06T01:03:40Z<p>It depends on what you mean by best:
If your talking about catching every valid email address use the following:</p>
<pre><code>(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:
\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(
?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[
\t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\0
31]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\
](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+
(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:
(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)
?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\
r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[
\t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)
?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t]
)*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[
\t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*
)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t]
)+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)
*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+
|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r
\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:
\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t
]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031
]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](
?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?
:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?
:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)|(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?
:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?
[ \t]))*"(?:(?:\r\n)?[ \t])*)*:(?:(?:\r\n)?[ \t])*(?:(?:(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|
\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>
@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"
(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?
:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[
\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:[^()<>@,;:\\".\[\] \000-
\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(
?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)?[ \t])*(?:@(?:[^()<>@,;
:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([
^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\"
.\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\
]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\
[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\
r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\]
\000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]
|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?(?:[^()<>@,;:\\".\[\] \0
00-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\
.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,
;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|"(?
:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*))*@(?:(?:\r\n)?[ \t])*
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t])*(?:[
^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\]
]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(?:\r\n)?[ \t])*)(?:,\s*(
?:(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(
?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[
\["()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t
])*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t
])+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?
:\.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|
\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*|(?:
[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".\[\
]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)*\<(?:(?:\r\n)
?[ \t])*(?:@(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["
()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)
?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>
@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*(?:,@(?:(?:\r\n)?[
\t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,
;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\.(?:(?:\r\n)?[ \t]
)*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\
".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*)*:(?:(?:\r\n)?[ \t])*)?
(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\["()<>@,;:\\".
\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])*)(?:\.(?:(?:
\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z|(?=[\[
"()<>@,;:\\".\[\]]))|"(?:[^\"\r\\]|\\.|(?:(?:\r\n)?[ \t]))*"(?:(?:\r\n)?[ \t])
*))*@(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])
+|\Z|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*)(?:\
.(?:(?:\r\n)?[ \t])*(?:[^()<>@,;:\\".\[\] \000-\031]+(?:(?:(?:\r\n)?[ \t])+|\Z
|(?=[\["()<>@,;:\\".\[\]]))|\[([^\[\]\r\\]|\\.)*\](?:(?:\r\n)?[ \t])*))*\>(?:(
?:\r\n)?[ \t])*))*)?;\s*)
</code></pre>
<p>(<a href="http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html" rel="nofollow">http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html</a>)
If your looking for something simpler but that will catch most valid email addresses try something like: </p>
<pre><code>"^[a-zA-Z0-9_.-]+@[a-zA-Z0-9-]+.[a-zA-Z0-9-.]+$"
</code></pre>
<p>EDIT:
From the link: "This regular expression will only validate addresses that have had any comments stripped and replaced with whitespace (this is done by the module)."
- Chas. Owens</p>
http://stackoverflow.com/questions/718673/yahoo-mail-checkbox/719571#7195710Answer by Person for yahoo mail checkboxPerson2009-04-05T19:53:18Z2009-04-05T19:53:18Z<pre><code>function checkAll(list, state)
{
for (i = 0; i < list.length; ++i)
{
list[i].checked = state ;
}
}
</code></pre>
<p>You need to use something like </p>
<pre><code>onClick="javascript:checkAll(document.myform.list, true)"
</code></pre>
http://stackoverflow.com/questions/718820/why-pop3-protocol-survives/719507#7195073Answer by Person for Why POP3 protocol survives?Person2009-04-05T19:17:50Z2009-04-05T19:17:50Z<p>A few reasons:</p>
<ol>
<li>POP3 does needs far less server side
storage.</li>
<li>POP3 is much easier to implement.</li>
<li>POP3 is private by default (it
assumes that you want to delete
email off the server after
downloading it).</li>
<li>Initially almost all ISPs had tiny
storage limits (since their are free
large storage email services this
matters less now) so deleting emails
that you downloaded was a must.</li>
<li>(for completeness - thanks Evan) POP
clients open a TCP/IP connection to
the server, authenticates itself,
asks for any email and does whatever
processing it needs, and then close
the connection. IMAP clients
generally keep one or more TCP/IP
sockets open with the server the
whole time they are running, taking
up those resources.</li>
</ol>
http://stackoverflow.com/questions/533965/why-is-security-through-obscurity-a-bad-idea/534006#534006Comment by Person on Why is security through obscurity a bad idea?Person2009-11-02T09:25:41Z2009-11-02T09:25:41ZBad answer.
These are both "real" security.
The question is what resource are you requiring. http://stackoverflow.com/questions/725109/how-would-you-deal-with-incompetent-non-technical-staff/725128#725128Comment by Person on How would you deal with incompetent non-technical staff?Person2009-04-07T20:05:44Z2009-04-07T20:05:44Z+1 for throttling
http://stackoverflow.com/questions/725109/how-would-you-deal-with-incompetent-non-technical-staff/725115#725115Comment by Person on How would you deal with incompetent non-technical staff?Person2009-04-07T20:04:09Z2009-04-07T20:04:09ZMeeh is en-Aus.
It is dangerous to say "meh" to your boss.
http://stackoverflow.com/questions/201323/what-is-the-best-regular-expression-for-validating-email-addresses/719543#719543Comment by Person on What is the best regular expression for validating email addresses?Person2009-04-06T01:02:52Z2009-04-06T01:02:52ZI missed that - thank you. I've been using this regex for a long time.