User Konrads - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T05:03:20Z http://stackoverflow.com/feeds/user/29573 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/613619/why-is-challenge-response-approach-a-poor-solution-for-forgotten-passwords/622479#622479 1 Answer by Konrads for Why is challenge-response approach a poor solution for forgotten passwords? Konrads 2009-03-07T20:50:06Z 2009-03-07T20:50:06Z <p>There are a few common ways to manage lost passwords:</p> <ul> <li><p>The Secret Question: It is actually a weaker form of authentication, just like people above posted. User may choose something really simple and it is easy to guess. I advise against this, because it does not require any technical "hacking"</p></li> <li><p>Mail a new password. To circumvent this control, access to the e-mail account is required or a Man-In-The-Middle (MITM) position is required: You either read the temporary password from user's inbox or intercept in the middle. This approach is ripe for misuse, because anybody can reset the password and force the user out of the system, if he can't read the e-mail with new password.</p></li> <li><p>Mail a password reset hash, to circumvent this, you need access to inbox or MITM, just like in case before this, but no passwords are actually reset until confirmation is done. Thus, user can not be locked out of the system, even if he did not read the e-mail. Add a cooldown timer to one reset per 8 hours to prevent Your system from flooding user's inbox.</p></li> <li><p>Consider some out of band communication, for example, in the printed contract, write down a PIN. Then have the user call Your helpdesk from a known phone number (check with Caller ID) and give his username and PIN.</p></li> </ul> http://stackoverflow.com/questions/601900/how-to-write-meaningful-docstrings 2 How to write meaningful docstrings? Konrads 2009-03-02T10:39:52Z 2009-03-02T12:51:32Z <p>Hello crowd,</p> <p>What, in Your opinion is a meaningful docstring? What do You expect to be described there?</p> <p>For example, consider this Python class's <code>__init__</code>:</p> <pre><code>def __init__(self, name, value, displayName=None, matchingRule="strict"): """ name - field name value - field value displayName - nice display name, if empty will be set to field name matchingRule - I have no idea what this does, set to strict by default """ </code></pre> <p>Do you find this meaningful? Post Your good/bad examples for all to know (and a general answer so it can be accepted).</p> http://stackoverflow.com/questions/261638/how-do-i-protect-python-code/262937#262937 4 Answer by Konrads for How do I protect python code? Konrads 2008-11-04T18:53:11Z 2008-11-04T18:53:11Z <p>Do not rely on obfuscation. As You have correctly concluded, it offers very limited protection. </p> <p>Instead, as many posters have mentioned make it:</p> <ul> <li>Not worth reverse engineering time (Your software is so good, it makes sense to pay)</li> <li>Make them sign a contract and do a license audit if feasible. </li> </ul> <p>Alternatively, as the kick-ass Python IDE WingIDE does: <strong>Give away the code</strong>. That's right, give the code away and have people come back for upgrades and support.</p> http://stackoverflow.com/questions/262133/simple-installer-for-a-web-application-iis-virtual-app-sql-server-db-setup/262901#262901 0 Answer by Konrads for "simple" installer for a web application (IIS virtual app + sql server db setup). Konrads 2008-11-04T18:46:44Z 2008-11-04T18:46:44Z <p>I can only second <a href="http://nsis.sourceforge.net/Main_Page" rel="nofollow">NSIS</a> (Nullsoft Scriptable Install System). Supports scripting and is easy to set-up.</p> http://stackoverflow.com/questions/243426/best-way-to-handle-consolidate-multiple-logins/246531#246531 1 Answer by Konrads for Best Way to handle/consolidate multiple Logins? Konrads 2008-10-29T12:00:48Z 2008-10-29T12:00:48Z <p>There is a big industry around it and it is called IAM - Identity Access Management. The IAM solutions basically do what You want - manager users, user permissions and translate their internal state to the multitude of systems. Depending on possibility of integration, You might have a "SSO" - Single Sign On for some software or You could have Single Source of Authentication. The former differs from later in the fact that with SSO user needs in to punch the credentials once, while the in the later he only has same login and password combo. </p> <p>Also IAM would manage to extent of its possibilities user rights. For example, a network equipment can only support one user/password. Then IAM solution would automatically open a terminal and log on the user, when he/she requests it; assuming the user is in the right security group. </p> <p>Implementing an IAM solution could go a long way to ease systems management. </p> <p>I can't recommend any particular solution, just bear in mind that transition from current method to IAM will require more than integration with different software, but also some change in corporate culture as one system will bind all others.</p> http://stackoverflow.com/questions/242614/an-asp-net-performance-bottleneck-mystery 3 an ASP.NET performance bottleneck mystery Konrads 2008-10-28T09:07:10Z 2008-10-28T15:23:45Z <p>A classic ASP.NET app - AppSrv + MS SQL DB. Both servers are heavy-lifters 8 cores, 20 GB of RAM. When load testing, the throughput goes somewhere to 400 VirtualUsers (according to LoadRunner) with CPU being approximately 30% utilized an DB server primarily idling - response times go dramatically up, to the point of unresponsive.</p> <p>The usual suspects, such as Max Pool being exhausted and conn limit on ASP.NET set are not at fault: Max Pool is set to 200 and about 80 conns are used; conn limit is set to 0. </p> <p>I ran with ANTS profiler the code and it showed that Thread blocking did not contribute significantly. </p> <p>Ideas very very welcome!</p> http://stackoverflow.com/questions/216820/is-it-worth-mitigating-security-risks-in-every-application/218164#218164 0 Answer by Konrads for Is it worth mitigating security risks in every application Konrads 2008-10-20T11:55:35Z 2008-10-20T11:55:35Z <p>A pragmatic approach is to do proper input validation and in www case - proper output escaping.</p> <p>For each variable You get as input, apply the most strict filtering rules that make sense: If You get an id of a page, then an is_integer(myvariable) &amp;&amp; myvariable >0 ; is a proper check. </p> <p>Security process is a risk management process that goes along these lines:</p> <p>1) Examine the use-case;</p> <p>2) Think of all risks that apply;</p> <p>3) Choose which risks to eliminate (by secure coding or other means), which risks to mitigate by compensating controls (e.g. a threat to sue or user policy) and which risks to accept (because they are so remote or too expensive to counter). Don't forget to monitor those risks though.</p> <p>So, juxtaposing the two paragraphs above, we come to the conclusion that a programmer writing a request handler for web should always be aware of possible risks and take the decision to eliminate/mitigate/accept them. As the programmer has limited time on his hands, he should apply fascist input validation and don't rely on the data source to have sanitized data, as he might not be the only one using same database.</p> <p>On a side note, if You just think of <a href="http://www.owasp.org/index.php/OWASP_Top_Ten_Project" rel="nofollow">OWASP Top Ten</a>, you have done your due diligence.</p> http://stackoverflow.com/questions/601900/how-to-write-meaningful-docstrings/602224#602224 Comment by Konrads on How to write meaningful docstrings? Konrads 2009-03-02T14:14:13Z 2009-03-02T14:14:13Z This seems to cover the syntax but not semantics. Maybe there is a preferred style people like? Do You try to fill all @foobr keywords in docstrings? http://stackoverflow.com/questions/242614/an-asp-net-performance-bottleneck-mystery/242631#242631 Comment by Konrads on an ASP.NET performance bottleneck mystery Konrads 2008-10-28T15:50:03Z 2008-10-28T15:50:03Z While the web garden increase didn't solve the issue completely, it proved that threads were blocking. Thus a simple solution was to crank up the process count and let it happily run!