User Tim Farley - Stack Overflowmost recent 30 from stackoverflow.com2009-12-22T09:29:08Zhttp://stackoverflow.com/feeds/user/4425http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own18Why move your Javascript files to a different main domain that you also own?Tim Farley2008-10-02T00:30:38Z2009-08-11T15:56:07Z
<p>I've noticed that just in the last year or so, many major websites have made the same change to the way their pages are structured. Each has moved their Javascript files from being hosted on the same domain as the page itself (or a subdomain of that), to being hosted on a differently named domain.</p>
<h2>It's not simply parallelization</h2>
<p>Now, there is a well known technique of spreading the components of your page across multiple domains to parallelize downloading. <a href="http://developer.yahoo.com/performance/rules.html#split" rel="nofollow">Yahoo recommends it</a> as do many others. For instance, <strong>www.example.com</strong> is where your HTML is hosted, then you put images on <strong>images.example.com</strong> and javascripts on <strong>scripts.example.com</strong>. This gets around the fact that most browsers limit the number of simultaneous connections per server in order to be good net citizens.</p>
<p>The above is <em>not</em> what I am talking about.</p>
<h2>It's not simply redirection to a content delivery network (or maybe it is--see bottom of question)</h2>
<p>What I am talking about is hosting Javascripts specifically on an entirely different domain. Let me be specific. Just in the last year or so I've noticed that:</p>
<p><strong>youtube.com</strong> has moved its .JS files to <strong>ytimg.com</strong></p>
<p><strong>cnn.com</strong> has moved its .JS files to <strong>cdn.turner.com</strong></p>
<p><strong>weather.com</strong> has moved its .JS files to <strong>j.imwx.com</strong></p>
<p>Now, I know about content delivery networks like <a href="http://www.akamai.com" rel="nofollow">Akamai</a> who specialize in outsourcing this for large websites. (The name "cdn" in Turner's special domain clues us in to the importance of this concept here).</p>
<p>But note with these examples, each site has its own specifically registered domain for this purpose, and its not the domain of a content delivery network or other infrastructure provider. In fact, if you try to load the home page off most of these script domains, they usually redirect back to the main domain of the company. And if you reverse lookup the IPs involved, they <em>sometimes</em> appear point to a CDN company's servers, sometimes not.</p>
<h2>Why do I care?</h2>
<p>Having formerly worked at two different security companies, I have been made paranoid of malicious Javascripts.</p>
<p>As a result, I follow the practice of whitelisting sites that I will allow Javascript (and other active content such as Java) to run on. As a result, to make a site like <strong>cnn.com</strong> work properly, I have to manually put <strong>cnn.com</strong> into a list. It's a pain in the behind, but I prefer it over the alternative.</p>
<p>When folks used things like <strong>scripts.cnn.com</strong> to parallelize, that worked fine with appropriate wildcarding. And when folks used subdomains off the CDN company domains, I could just permit the CDN company's main domain with a wildcard in front as well and kill many birds with one stone (such as *.edgesuite.net and *.akamai.com).</p>
<p>Now I have discovered that (as of 2008) this is not enough. Now I have to poke around in the source code of a page I want to whitelist, and figure out what "secret" domain (or domains) that site is using to store their Javascripts on. In some cases I've found I have to permit three different domains to make a site work.</p>
<h2>Why did all these major sites start doing this?</h2>
<p>EDIT: OK <a href="http://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own#160451">as "onebyone" pointed out</a>, it does appear to be related to CDN delivery of content. So let me modify the question slightly based on his research...</p>
<p>Why is <strong>weather.com</strong> using <strong>j.imwx.com</strong> instead of <strong>twc.vo.llnwd.net</strong>?</p>
<p>Why is <strong>youtube.com</strong> using
http://stackoverflow.com/questions/381171/help-me-understand-this-javascript-exploit/381217#3812176Answer by Tim Farley for Help me understand this JavaScript exploitTim Farley2008-12-19T15:06:16Z2008-12-19T15:06:16Z<p>This looks like an exploit of the <a href="http://www.microsoft.com/technet/security/Bulletin/MS08-078.mspx" rel="nofollow">recent Internet Explorer bug</a> that Microsoft released the emergency patch for. It uses a flaw in the databinding feature of Microsoft's XML handler, that causes heap memory to be deallocated incorrectly.</p>
<p>Shellcode is machine code that will run when the bug occurs. Spray and memory are just some space allocated on the heap to help the exploitable condition occur.</p>
http://stackoverflow.com/questions/381169/how-to-encourage-non-anonymous-editing-on-a-wiki/381200#3812000Answer by Tim Farley for How to encourage non-anonymous editing on a wiki?Tim Farley2008-12-19T15:02:04Z2008-12-19T15:02:04Z<p>You said this is in a departmental situation. Can't you add a feature to the wiki where it makes an educated guess as to who is editing based on the IP address, and annotates the edit accordingly?</p>
http://stackoverflow.com/questions/378678/pivotal-suboptimal-decisions-in-the-history-of-software/379106#3791060Answer by Tim Farley for Pivotal Suboptimal Decisions in the History of SoftwareTim Farley2008-12-18T20:17:56Z2008-12-18T20:17:56Z<p>Deciding that "<a href="http://en.wikipedia.org/wiki/Network_order#Endianness_in_networking" rel="nofollow">network order</a>" for multi-byte numbers in the Internet Protocol would be high order byte first. </p>
<p>(At the time the heterogenous nature of the net meant this was a coin toss decision. Thirty years later, Intel-derived processors so completely dominate the marketplace it seems lower-order-byte first would have been a better choice).</p>
http://stackoverflow.com/questions/377275/whats-the-best-way-to-send-an-event-to-all-workstations/377985#3779850Answer by Tim Farley for Whats the best way to send an event to all workstationsTim Farley2008-12-18T14:26:43Z2008-12-18T14:31:51Z<p>I think some of you are <em>vastly</em> overthinking this. There is already a service built into every version of Windows that provides this exact functionality! It is called the Messenger service. All you have to do is ensure that this service is enabled and running on all clients.</p>
<p>(Although you didn't specify in the question, I'm assuming from your choices of technology that the client population of this network is all Windows).</p>
<p>You can send messages using this facility from the command line using something like this:</p>
<pre><code>NET SEND computername "This is a test message"
</code></pre>
<p>The NET SEND command also has options to send by Windows domain, or to specific users by name regardless of where they are logged in, or to every system that is connected to a particular Windows server. Those options should let you easily avoid the subnet issue, particularly if you use domain-based security on your network. (You may need the "Alerter" service enabled on certain servers if you are sending messages through the server and not directly to the clients).</p>
<p>The programmatic version of this is an API called <a href="http://msdn.microsoft.com/en-us/library/aa370605.aspx" rel="nofollow">NetMessageBufferSend()</a> which is pretty straightforward. A quick scan of P/Invoke.net finds a <a href="http://www.pinvoke.net/default.aspx/netapi32/NetMessageBufferSend.html" rel="nofollow">page for this API</a> that supplies not only the definitions you need to call out to the API, but also a C# sample program!</p>
<p>You shouldn't need to write any client-side code at all. Probably the most involved thing will be figuring out the best set of calls to this API that will get complete coverage of the network in your configuration. </p>
<p>ETA: I just noticed that the Messenger service and this API are completely gone in Windows Vista. Very odd of Microsoft to completely remove functionality like this. It appears that <a href="http://www.lantalk.net/netsend/" rel="nofollow">this vendor has a compatible replacement</a> for Vista.</p>
http://stackoverflow.com/questions/290908/wmi-event-when-machine-comes-online/335064#3350640Answer by Tim Farley for WMI event when machine comes onlineTim Farley2008-12-02T19:05:05Z2008-12-02T19:05:05Z<p>Subscribing to a shutdown event is theoretically possible. You could subscribe to get updates to the "System" Event Log. You'd be looking for an event from Source = "EventLog" and EventID = 6006. This event contains the message:</p>
<blockquote>
<p>The Event log service was stopped.</p>
</blockquote>
<p>This is usually the last message written on shutdown. But wait! It may be problematical to receive this via WMI. Why? It may be that the WMI service itself shuts down prior to EventLog so it might be a Catch 22. You could potentially look for another message that occurs earlier during shutdown on the servers you are monitoring, and watch for that.</p>
<p>A boot up event carries with it an even more troublesome set of Catch 22s. Think about how WMI eventing works for a moment. To get events, you have to open a connection to the remote WMI server via DCOM, and issue a WQL query to indicate what events you want. In order to receive a boot up event, you'd have to "magically" know to open said connection and issue said query prior to the event being fired.</p>
<p>Years ago I wrote a service that collected Event Log entries from remote servers for a network monitoring application. Just the logic to detect when the DCOM connection to the remote had been lost and needed to be rebuilt was a major pain in the neck. As it happened this was a component in a larger system that pinged the remote hosts anyway, so we ended up relying on that information to know when to rebuild our DCOM connections.</p>
http://stackoverflow.com/questions/330115/retrieving-product-information-from-an-unmanaged-executing-application-in-c-net/331761#3317611Answer by Tim Farley for Retrieving product information from an unmanaged executing application in C#/.NETTim Farley2008-12-01T18:38:10Z2008-12-01T18:45:26Z<p>Walking the stack is not necessary to find out what process you are in. You simply make a single Win32 API call:</p>
<pre><code>HMODULE hEXE = GetModuleHandle(NULL);
</code></pre>
<p>According to the <a href="http://msdn.microsoft.com/en-us/library/ms683199(VS.85).aspx" rel="nofollow">documentation for this call</a>:</p>
<blockquote>
<p>If this parameter is NULL, GetModuleHandle returns a handle to the file used to create the calling process (.exe file).</p>
</blockquote>
<p>You can turn this module handle into a filename with <a href="http://msdn.microsoft.com/en-us/library/ms683197(VS.85).aspx" rel="nofollow">GetModuleFileName()</a>, another standard Win32 API. File name in hand, you can then call <a href="http://msdn.microsoft.com/en-us/library/ms647003(VS.85).aspx" rel="nofollow">GetFileVersionInfo()</a> to retrieve the VS_VERSIONINFO structure for that file. The information you want is in there.</p>
<p>Now since you are in .NET you could use P/Invoke signatures for <a href="http://www.pinvoke.net/default.aspx/kernel32/GetModuleHandle.html?diff=y" rel="nofollow">GetModuleHandle()</a>, <a href="http://www.pinvoke.net/default.aspx/kernel32/GetModuleFileName.html" rel="nofollow">GetModuleFileName()</a>. For GetFileVersionInfo() you can use <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.fileversioninfo_members.aspx" rel="nofollow">System.Diagnostics.FileVersionInfo</a>.</p>
<p>But actually the easiest way to do it is probably to stick with the System.Diagnostics namespace, everything you need is there. Call <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.getcurrentprocess.aspx" rel="nofollow">System.Diagnostics.Process.GetCurrentProcess()</a> to return a Process object for the process you are running in. Then you can retrieve a ProcessModule from the <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.process.mainmodule.aspx" rel="nofollow">MainModule</a> property. ProcessModule has a property called <a href="http://msdn.microsoft.com/en-us/library/system.diagnostics.processmodule.fileversioninfo.aspx" rel="nofollow">FileVersionInfo</a>. The information you want is there.</p>
http://stackoverflow.com/questions/322639/updating-a-com-dll/329078#3290780Answer by Tim Farley for Updating a com dllTim Farley2008-11-30T17:11:20Z2008-11-30T17:11:20Z<p>If you know all your client platforms are running Windows XP or later, you might consider using Registration Free COM, and thereby avoid the entire issue.</p>
<p>See <a href="http://stackoverflow.com/questions/265212/how-to-register-com-libraries-at-runtime#265239">my answer to "How to register COM libraries at runtime?"</a> for details. The article <a href="http://msdn.microsoft.com/en-us/library/ms973913.aspx" rel="nofollow">"Registration-Free Activation of COM Components: A Walkthrough" on MSDN</a> has a complete walkthrough of what to do.</p>
http://stackoverflow.com/questions/317580/looking-for-network-link-speed-determination-algorithm/318618#3186181Answer by Tim Farley for Looking for network link speed determination algorithmTim Farley2008-11-25T19:41:06Z2008-11-25T19:41:06Z<p>It would help if you gave us some context to work with. On what operating system do you need to do this? What type of program -- application, system service, driver? Do you need to do it only on particular hardware, or generically for any network card?</p>
<p>Most operating systems have some sort of system management API that will let you query stuff like this. On Windows this is called <a href="http://msdn.microsoft.com/en-us/library/aa394582(VS.85).aspx" rel="nofollow">Windows Management Instrumentation</a> or WMI. In that API you would look for the MSNdis_MediaConnectStatus object to find out if a particular interface is connected or not. Some tips on exploring the object hierarchy for network cards are included in <a href="http://www.ndis.com/faq/QA01050301/default.htm" rel="nofollow">NDIS WMI Notes</a> on the ndis.com site.</p>
http://stackoverflow.com/questions/270523/vb6-xcopy-deployment/318431#3184311Answer by Tim Farley for vb6 xcopy deploymentTim Farley2008-11-25T18:35:08Z2008-11-25T18:51:48Z<p>There is an excellent walkthrough of what to do in this article on MSDN: <a href="http://msdn.microsoft.com/en-us/library/ms973913.aspx" rel="nofollow">Registration-Free Activation of COM Components: A Walkthrough</a>. </p>
http://stackoverflow.com/questions/317794/reg-free-com-not-working-for-me/318396#3183960Answer by Tim Farley for Reg-Free COM not working for me.Tim Farley2008-11-25T18:24:56Z2008-11-25T18:24:56Z<p>Your code sample appears to be the manifest for the COM object DLL. Do you have a manifest for the main program too? It needs one that lists the other object as a dependency.</p>
<p>In <a href="http://stackoverflow.com/questions/234726/use-ocx-without-registering-it#235045">answering an earlier question on this topic</a>, my test was a C# program that used an old ActiveX control supplied with VB5/VB6. The manifest for my main program looked like this:</p>
<pre><code><?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1"
manifestVersion="1.0">
<assemblyIdentity
type = "win32"
name = "client"
version = "1.0.0.0" />
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="MSFLXGRD.X"
version="6.1.97.82" />
</dependentAssembly>
</dependency>
</assembly>
</code></pre>
<p>The name attribute on the dependentAssembly/assemblyIdentity element should match the one in the manifest for the COM DLL. As you can see here it does not have to be an actual filename.</p>
<p>Another possible issue I see is you don't have a comInterfaceExternalProxyStub element in your manifest. A sample of that tag and a walkthrough of what else to do is in this article on MSDN: <a href="http://msdn.microsoft.com/en-us/library/ms973913.aspx" rel="nofollow">Registration-Free Activation of COM Components: A Walkthrough</a>. Steps 6 and 7 talk about creating the two manifests.</p>
http://stackoverflow.com/questions/285568/itunes-com-interface-obtain-song-added-to-library/290754#2907541Answer by Tim Farley for iTunes COM interface - obtain song added to library?Tim Farley2008-11-14T17:13:11Z2008-11-14T17:22:54Z<p>The "return value" (actually the last parameter, since this is COM we're talking about) for AddFiles is an IITOperationStatus interface pointer. That is the key to finding out what happened.</p>
<p>You should call the InProgress() method on this interface to make sure the operation has completed. (If iTunes has to copy the file, it might proceed asynchronously).</p>
<p>Once it is complete, you can use the Tracks property on this interface to get an IITrackCollection that represents the track(s) you just added. </p>
<p>(I would have hyperlinked all those interface and method names, but it does not appear Apple has the iTunes COM SDK documentation posted online in a linkable form. See the iTunesCOM.chm file you got with the SDK for details).</p>
http://stackoverflow.com/questions/269456/take-down-website-to-public-but-leave-for-testing-were-not-open/269998#2699982Answer by Tim Farley for Take down website to public, but leave for testing... "We're Not Open"Tim Farley2008-11-06T19:43:48Z2008-11-06T19:43:48Z<p>I thought it would be worthwhile to mention ASP.NET 2.0+'s "app offline" feature. (Yes, I realize the questioner wants to leave the app up for testing, but I'm writing this for later readers who might come here with different needs).</p>
<p>If you really want to take the application offline for <em>everyone</em> (for instance to do server maintenance) there is a very simple option. All you have to do in ASP.NET 2.0 and higher is put a file with this name:</p>
<pre><code>app_offline.htm
</code></pre>
<p>...in the root directory of your ASP.NET application. Put an appropriate "sorry come back later" message in there. That's it. The ASP.NET runtime does the rest.</p>
<p>Details on <a href="http://weblogs.asp.net/scottgu/archive/2006/04/09/442332.aspx" rel="nofollow">Scott Guthrie's blog</a>.</p>
http://stackoverflow.com/questions/265967/how-to-get-a-dib-implemented-in-a-c-com-library-into-a-net-client-using-that-c/266525#2665251Answer by Tim Farley for How to get a DIB implemented in a C++/COM library into a .NET client using that COM objectTim Farley2008-11-05T20:28:53Z2008-11-05T20:28:53Z<p>COM/OLE has a standard interface for representing graphical images called <a href="http://msdn.microsoft.com/en-us/library/ms680761(VS.85).aspx" rel="nofollow">IPicture</a> (and its scripting-friendly version <a href="http://msdn.microsoft.com/en-us/library/ms680762(VS.85).aspx" rel="nofollow">IPictureDisp</a>).</p>
<p>COM provides an implementation of these interfaces for you. You can get it to build one for you by calling <a href="http://msdn.microsoft.com/en-us/library/ms694511(VS.85).aspx" rel="nofollow">OleCreatePictureIndirect()</a>. You just hand it a <a href="http://msdn.microsoft.com/en-us/library/ms693798(VS.85).aspx" rel="nofollow">PICTDESC structure</a> with the graphic you have, and it gives you back an interface. You should be able to hand that interface back to the calling program. This will also make your object compatible with other COM clients like VB6.</p>
<p>Back in .NET land you can turn an IPicture into an Image using <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualbasic.compatibility.vb6.support.ipicturetoimage.aspx" rel="nofollow">Microsoft.VisualBasic.Compatibility.VB6.IPictureToImage()</a>.</p>
http://stackoverflow.com/questions/265212/how-to-register-com-libraries-at-runtime/265239#2652395Answer by Tim Farley for How to register COM libraries at runtime?Tim Farley2008-11-05T14:17:59Z2008-11-05T14:17:59Z<p>Are you always running on XP or later? Don't bother. Use "registration free COM".</p>
<p>Essentially what you do is create a manifest file for the COM component so the Windows loader know what its registration is without having to put that in the registry.</p>
<p>A walkthrough of what to do is in this article on MSDN:
<a href="http://msdn.microsoft.com/en-us/library/ms973913.aspx" rel="nofollow">Registration-Free Activation of COM Components: A Walkthrough</a></p>
<p>"Step 6" and "Step 7" in that article show how to create the manifests. If your main program is native, not managed, you may have to make some API calls as well, also explained there.</p>
http://stackoverflow.com/questions/262135/how-do-i-convince-the-googlebot-that-two-formerly-aliased-sites-are-now-separate2How do I convince the Googlebot that two formerly aliased sites are now separate?Tim Farley2008-11-04T15:21:02Z2008-11-04T20:03:17Z
<p>This will require a little setup. Trust me that this is for a good cause.</p>
<h2>The Background</h2>
<p>A friend of mine has run a non-profit public interest website for two years. The site is designed to counteract misinformation about a certain public person. Of course, over the last two years those of us who support what he is doing have relentlessly linked to the site in order to boost it in Google so that it appears very highly when you search for this public person's name. (In fact it is the #2 result, right below the public person's own site). He does <em>not</em> have the support of this public person, but what he is doing is in the public interest and good.</p>
<p>The friend had a stroke recently. Coincidentally, the domain name came up for renewal right when he was in the hospital and his wife missed the email about it. A domain squatter snapped up the domain, and put up content diametrically opposed to his intent. This squatter is now benefitting from his Google placement and page rank. </p>
<p>Fortunately there were other domains he owned which were aliased to point to this domain, i.e. they used a DNS mapping or HTTP 301 redirect (I'm not sure which) to send people to the right site. We reconfigured one of the alias domains to point directly to the original content. </p>
<p>We have publicized this new name for the site and the community has now created thousands of links to the new domain, and is fixing all the old links. We can see from the cache that Google has in fact crawled the original site at the new address, and has re-crawled the imposter site.</p>
<h2>The Problem</h2>
<p>Even though Google has crawled both sites, you can't get the site to appear in relevant searches under the new URL!</p>
<p>It appears to me that Google remembers the old redirect between the two names (probably because someone linked to the new domain back when it was an alias). It is treating the two sites as if they are the same site in all results. The results for the site name, and using the "link:" operator to find sites that link to this site, are entirely consistent with Google being convinced they are the same site.</p>
<p>Keep in mind that we do <em>not</em> have control of the content of the <em>old</em> domain, and we do <em>not</em> have the cooperation of the person that these sites relate to.</p>
<p><strong>How can we convince the Googlebot that domain "a" and domain "b" are now two different sites and should be treated as such in results?</strong></p>
<p>EDIT: Forward was probably DNS, not HTTP based.</p>
http://stackoverflow.com/questions/259553/tcp-is-it-possible-to-achieve-higher-transfer-rate-with-multiple-connections/260118#2601181Answer by Tim Farley for TCP is it possible to achieve higher transfer rate with multiple connections?Tim Farley2008-11-03T21:53:45Z2008-11-03T21:53:45Z<p><a href="http://stackoverflow.com/questions/259553/tcp-is-it-possible-to-achieve-higher-transfer-rate-with-multiple-connections#259944">Muz's description of the issue</a> is spot on.</p>
<p>Keep in mind that taking advantage of it may depend on the implementation of TCP in your operating system. In particular, for best results you want a TCP stack that supports the Window Scale option from <a href="http://www.ietf.org/rfc/rfc1323.txt" rel="nofollow">RFC 1323</a>. </p>
<p>Further, you may need to tweak some OS settings to make this work. On Windows there is a Registry setting called <a href="http://technet.microsoft.com/en-us/library/cc757802.aspx" rel="nofollow">TcpWindowSize</a> that you may need to adjust. There is a Microsoft KB Article <a href="http://support.microsoft.com/kb/224829" rel="nofollow">224829: Description of Windows 2000 and Windows Server 2003 TCP Features</a> that describes just how to do that.</p>
http://stackoverflow.com/questions/258889/foundations-of-network-security-iis-sql-rdp-etc-for-a-developer/259566#2595661Answer by Tim Farley for Foundations of Network Security (IIS, SQL, RDP, etc) for a DeveloperTim Farley2008-11-03T18:48:58Z2008-11-03T18:48:58Z<p>Since you're an ASP.NET person, you might look at the Microsoft Press book <strong>Improving Web Application Security</strong> ISBN 978-0735618428. The <a href="http://msdn.microsoft.com/en-us/library/ms994921.aspx" rel="nofollow">entire text is hosted on MSDN here</a>. There are also <a href="http://rads.stackoverflow.com/amzn/click/0735618429" rel="nofollow">dead tree versions</a> and <a href="http://download-ebook.org/index.php?target=desc&ebookid=2159" rel="nofollow">ebook versions</a> available.</p>
<p>I would in particular point out these chapters:</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302421.aspx" rel="nofollow">Chapter 5: Architecture and Design Review For Security</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302431.aspx" rel="nofollow">Chapter 15: Securing Your Network</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302432.aspx" rel="nofollow">Chapter 16: Securing Your Web Server</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302433.aspx" rel="nofollow">Chapter 17: Securing Your Application Server</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa302434.aspx" rel="nofollow">Chapter 18: Securing Your Database Server</a></p>
<p>Admittedly its a bit out of date (.NET 1.1, IIS 5.0, SQL Server 2000) but the basic principles are there.</p>
http://stackoverflow.com/questions/143789/does-any-one-know-of-a-packet-generator/247213#2472131Answer by Tim Farley for Does any one know of a packet generator?Tim Farley2008-10-29T15:20:05Z2008-10-29T15:20:05Z<p>FYI: In the security and testing realm this type of tool is usually referred to as a "<a href="http://en.wikipedia.org/wiki/Fuzzer" rel="nofollow">fuzzer</a>".</p>
<p>An open source one that might be interesting is <a href="http://sourceforge.net/projects/taof" rel="nofollow">Taof</a>.</p>
<p>Here's an entire <a href="http://www.fuzzing.org" rel="nofollow">site devoted to fuzzing</a>, they have a list of <a href="http://www.fuzzing.org/fuzzing-software" rel="nofollow">fuzzing tools</a>. Check out QueFuzz and ProtoFuzz on that page.</p>
http://stackoverflow.com/questions/138494/training-users-in-security/247046#2470461Answer by Tim Farley for Training Users In SecurityTim Farley2008-10-29T14:38:04Z2008-10-29T14:38:04Z<p>I agree with <a href="http://stackoverflow.com/questions/138494/training-users-in-security#138523">gbjbaanb</a>: people get bored when you tell them things, but they remember when you <em>show</em> them things. Figure out ways to demonstrate good or bad security practices to users. </p>
<p>One such idea would be to deliberately send phish/spam emails with links in them that redirect to an intranet site that explains how what they just did was dangerous.</p>
<p>Here's a slightly more elaborate thing I did along those lines:</p>
<p>About ten years ago the defaults in Outlook were not great. It was easy to get active content to run on someones box just by mailing it to them. There was a setting to turn this off, but you had to remember to do it.</p>
<p>To educate the people in our organization, I put a small Javascript in my signature file. It would pop up a box that said something like "Your Outlook is configured improperly and you are at risk. Click here to for instructions to fix it." And of course I provided a URL to an intranet site that described the problem and showed how to fix it. If you had your Outlook configured correctly to ignore active content in emails, you would never notice anything. </p>
<p>Current versions of Outlook have better defaults, so this exact technique is probably not useful anymore, but maybe that will give you some ideas.</p>
http://stackoverflow.com/questions/236881/friendship-relations-tracking-algorithm/236905#2369052Answer by Tim Farley for Friendship relations tracking algorithmTim Farley2008-10-25T19:33:14Z2008-10-25T19:39:50Z<p>Some additional background material:</p>
<p>To solve this problem generally, you'd want to avoid web scraping and other ad-hoc techniques that are specific to one social network. Instead, you will probably want to look into <a href="http://gmpg.org/xfn/" rel="nofollow">XHTML Friends Network (XFN)</a> which is a way to use the rel="" attribute of a hyperlink to indicate the relationship between the target of that hyperlink and you. There is also a competing standard called <a href="http://www.foaf-project.org/" rel="nofollow">FOAF</a> which uses <a href="http://www.w3.org/RDF/" rel="nofollow">RDF</a>.</p>
<p>These <a href="http://www.microformats.org" rel="nofollow">microformats</a> have been around for a while, but support for them has grown a great deal just recently. StackOverflow uses "me" in the link on your profile page. WordPress blogs provide an easy way in the editing interface for the blogroll to add these tags. Many social sites use these in links between friends to indicate relationships.</p>
<p>Because of this, Google has gotten interested in this, and is starting to mine this data. They have a <a href="http://code.google.com/apis/socialgraph/" rel="nofollow">Social Graph API</a> that can mine both XFN and FOAF data to do exactly some of the things you want to do. I suggest you start there. The nice thing about Google's API is since they are mining this all over the web, you can widen out your search beyond the specific social network you had in mind.</p>
http://stackoverflow.com/questions/234726/use-ocx-without-registering-it/235045#2350458Answer by Tim Farley for Use OCX without registering itTim Farley2008-10-24T19:52:34Z2008-10-24T19:52:34Z<p>Yes, this can be done. You must assume your application will only be deployed on Windows XP (or Windows Server 2003) or later, and then you can use what is called 'registration free COM' to make this happen. </p>
<p>Essentially what you do is create a manifest file for the ActiveX control DLL so the Windows loader & COM DLL's know what its registration is without having to put that in the registry.</p>
<p>A walkthrough of what to do is in this article on MSDN:
<a href="http://msdn.microsoft.com/en-us/library/ms973913.aspx" rel="nofollow">Registration-Free Activation of COM Components: A Walkthrough</a></p>
<p>"Step 6" and "Step 7" in that article contain <em>everything</em> you will need.</p>
<p>I just tried this out on one of my own C# programs that uses a Microsoft ActiveX grid control (the old "MS Flex Grid") and it works just fine. Make sure you create a manifest file for both your application and the COM DLL, and substitute the appropriate GUIDs in the right places. You may need to use OLEVIEW to dig out the right IDs to use from the ActiveX DLL if you don't have them handy.</p>
http://stackoverflow.com/questions/222248/volume-control-number-of-channels-xp-different-than-vista/226201#2262010Answer by Tim Farley for Volume Control Number of Channels XP different than VistaTim Farley2008-10-22T15:09:55Z2008-10-23T14:51:16Z<p>Long time Microsoftie <a href="http://blogs.msdn.com/larryosterman/" rel="nofollow">Larry Osterman has a blog</a> where he discusses issues like this because he was on the team that redid all the audio stuff in Vista.</p>
<p>In the <a href="http://blogs.msdn.com/larryosterman/archive/2005/12/16/504710.aspx" rel="nofollow">comments to this blog post</a> he seems to indicate that application controlled balance is not something they see the need for:</p>
<blockquote>
<p>CN, actually we're not aware of ANY situations in which it's appropriate for an application to control its balance. Having said that, we do support individual channel volumes for applications, but it is STRONGLY recommended that apps don't use it. </p>
</blockquote>
<p>He also indicates that panning the sound from one side to the other can be done, but it is dependent on whether the hardware supports it:</p>
<blockquote>
<p>Joku, we're exposing the volume controls that the audio solution implements. If it can do pan, we do pan (we actually expose separate sliders for the left and right channels). </p>
</blockquote>
<p>So that explains why the <code>MIXERCONTROL_CONTROLTYPE_PAN</code> thing failed -- the audio hardware on your system does not support it.</p>
http://stackoverflow.com/questions/229596/is-there-a-single-resource-on-the-web-that-lists-all-asp-net-security-issues-xss/229997#2299971Answer by Tim Farley for Is there a single resource on the web that lists all ASP.Net security issues (XSS, etc) with preventative measures?Tim Farley2008-10-23T14:38:42Z2008-10-23T14:38:42Z<p>There's a book that really covers the ground for ASP.NET well that I highly recommend. It's not comprehensive anymore because it is a couple years old and therefore doesn't cover newer stuff like IIS7, ASP.NET AJAX and so on. But I still recommend it because for all the basic stuff, it covers it really really well. </p>
<p>It's called <strong>Improving Web Application Security</strong> by Microsoft Press, ISBN 978-0735618428. The <a href="http://msdn.microsoft.com/en-us/library/ms994921.aspx" rel="nofollow">entire text is hosted on MSDN here</a>.</p>
<p><a href="http://rads.stackoverflow.com/amzn/click/0735618429" rel="nofollow">Dead tree version</a> and <a href="http://download-ebook.org/index.php?target=desc&ebookid=2159" rel="nofollow">Ebook version</a> also available.</p>
http://stackoverflow.com/questions/210646/cant-detect-when-windows-font-size-has-changed-c-mfc/211790#2117901Answer by Tim Farley for Can't detect when Windows Font Size has changed C++ MFCTim Farley2008-10-17T11:25:41Z2008-10-17T11:25:41Z<p>When you call GetDeviceCaps() on the Desktop DC, are you perhaps using a DC that might be cached by MFC, and therefore contains out-of-date information? Are you making the GetDeviceCaps() call synchronously from inside your OnSettingsChange handler? I could see how either or both of these things might get you an out of date version of DPI. </p>
<p>Raymond Chen <a href="http://blogs.msdn.com/oldnewthing/archive/2004/07/14/182971.aspx" rel="nofollow">wrote about this</a> and his solution looked like this (Note that I've added :: operators to avoid calling the MFC wrappers of the APIs):</p>
<pre><code>int GetScreenDPI()
{
HDC hdcScreen = ::GetDC(NULL);
int iDPI = -1; // assume failure
if (hdcScreen) {
iDPI = ::GetDeviceCaps(hdcScreen, LOGPIXELSX);
::ReleaseDC(NULL, hdcScreen);
}
return iDPI;
}
</code></pre>
http://stackoverflow.com/questions/123994/querystring-malformed-after-urldecode/207745#2077452Answer by Tim Farley for QueryString malformed after URLDecodeTim Farley2008-10-16T08:09:35Z2008-10-16T08:09:35Z<p>The suggested solution:</p>
<pre><code>Request.QueryString["VLTrap"].Replace(" ", "+");
</code></pre>
<p>Should work just fine. As for your concern:</p>
<blockquote>
<p>I had though of this but my concern with it, and I should have mentioned this to start, is that I don't know what other characters might be malformed in addition to the plus sign.</p>
</blockquote>
<p>This is easy to alleviate by <a href="http://en.wikipedia.org/wiki/Base64" rel="nofollow">reading about base64</a>. The only non alphanumeric characters that are legal in modern base64 are "/", "+" and "=" (which is only used for padding).</p>
<p>Of those, "+" is the only one that has special meaning as an escaped representation in URLs. While the other two have special meaning in URLs (path delimiter and query string separator), they shouldn't pose a problem.</p>
<p>So I think you should be OK.</p>
http://stackoverflow.com/questions/16610/how-do-you-deal-with-transport-level-errors-in-sqlconnection/207714#2077141Answer by Tim Farley for How do you deal with transport-level errors in SqlConnection?Tim Farley2008-10-16T07:50:23Z2008-10-16T07:50:23Z<p>I posted <a href="http://stackoverflow.com/questions/154897/what-do-you-do-if-you-cannot-resolve-a-bug#155077">an answer on another question</a> on another topic that might have some use here. That answer involved SMB connections, not SQL. However it was identical in that it involved a low-level transport error.</p>
<p>What we found was that in a heavy load situation, it was fairly easy for the remote server to time out connections <em>at the TCP layer</em> simply because the server was busy. Part of the reason was the defaults for how many times TCP will retransmit data on Windows weren't appropriate for our situation.</p>
<p>Take a look at the <a href="http://support.microsoft.com/kb/314053" rel="nofollow">registry settings for tuning TCP/IP</a> on Windows. In particular you want to look at <strong>TcpMaxDataRetransmissions</strong> and maybe <strong>TcpMaxConnectRetransmissions</strong>. These default to 5 and 2 respectively, try upping them a little bit on the client system and duplicate the load situation.</p>
<p>Don't go crazy! TCP doubles the timeout with each successive retransmission, so the timeout behavior for bad connections can go exponential on you if you increase these too much. As I recall upping <strong>TcpMaxDataRetransmissions</strong> to 6 or 7 solved our problem in the vast majority of cases.</p>
http://stackoverflow.com/questions/205574/does-anyone-have-a-link-to-suns-name-mangling-patent/205679#2056793Answer by Tim Farley for Does anyone have a link to Sun's name mangling patent?Tim Farley2008-10-15T17:38:08Z2008-10-15T17:38:08Z<p>Perhaps one of these?</p>
<p><a href="http://www.google.com/patents?id=GbJ6AAAAEBAJ" rel="nofollow">U.S. Patent 7,080,369: Method and apparatus for producing compressed compiler products</a> </p>
<p><a href="http://www.google.com/patents?id=GrJ6AAAAEBAJ" rel="nofollow">U.S. Patent 7,080,370: Method and apparatus for compiling source programs using one or more libraries</a></p>
http://stackoverflow.com/questions/204836/is-there-any-good-resources-for-t4-text-templating-framework-from-microsoft/204842#2048424Answer by Tim Farley for Is there any good resources for T4 (Text Templating framework from Microsoft)?Tim Farley2008-10-15T14:08:41Z2008-10-15T14:08:41Z<p>Hanselman just blogged on this yesterday, he has a huge list of links:</p>
<p><a href="http://www.hanselman.com/blog/T4TextTemplateTransformationToolkitCodeGenerationBestKeptVisualStudioSecret.aspx" rel="nofollow">http://www.hanselman.com/blog/T4TextTemplateTransformationToolkitCodeGenerationBestKeptVisualStudioSecret.aspx</a></p>
http://stackoverflow.com/questions/201590/identifying-com-components-in-a-net-application/202633#2026331Answer by Tim Farley for Identifying COM components in a .NET applicationTim Farley2008-10-14T20:18:48Z2008-10-14T20:18:48Z<p>If you want to approach from the COM side, testing for COM objects in a DLL boils down to looking for an export named "DllGetClassObject". This is because an in-proc COM object is accessed by the COM runtime by calling <a href="http://msdn.microsoft.com/en-us/library/ms680760(VS.85).aspx" rel="nofollow">DllGetClassObject()</a> on that DLL.</p>
<p>You could do this from a batch file using <a href="http://msdn.microsoft.com/en-us/library/c1h23y6c(VS.71).aspx" rel="nofollow">DUMPBIN.EXE</a> which comes with Visual Studio as follows:</p>
<pre><code>dumpbin unknown.dll /exports | find "DllGetClassObject"
</code></pre>
<p>The above command line will produce one line of text if it is an unmanaged DLL that contains COM objects, or zero bytes of output otherwise. </p>
<p>You could do this programmatically by loading each DLL and try to do a GetProcAddress() on that entry point. Here is a tested and working C# command line program that uses this technique:</p>
<pre><code>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
static class NativeStuff
{
[DllImport("kernel32.dll")]
public static extern IntPtr LoadLibrary(string dllToLoad);
[DllImport("kernel32.dll")]
public static extern IntPtr GetProcAddress(IntPtr hModule, string procedureName);
[DllImport("kernel32.dll")]
public static extern bool FreeLibrary(IntPtr hModule);
}
namespace IsComDLL
{
class Program
{
static void Main(string[] args)
{
if ( (args.Length == 0 ) || String.IsNullOrEmpty( args[0] ) )
{
Console.WriteLine( "Give DLL name on command line" );
Environment.Exit(255);
}
IntPtr pDll = NativeStuff.LoadLibrary(args[0]);
if ( pDll == IntPtr.Zero )
{
Console.WriteLine( "DLL file {0} not found", args[0] );
Environment.Exit(256);
}
IntPtr pFunction = NativeStuff.GetProcAddress(pDll, "DllGetClassObject");
int exitValue = 0;
if (pFunction == IntPtr.Zero)
{
Console.WriteLine("DLL file {0} does NOT contain COM objects", args[0]);
}
else
{
Console.WriteLine("DLL file {0} does contain COM objects", args[0]);
exitValue = 1;
}
NativeStuff.FreeLibrary(pDll);
Environment.Exit(exitValue);
}
}
}
</code></pre>
http://stackoverflow.com/questions/377275/whats-the-best-way-to-send-an-event-to-all-workstations/377985#377985Comment by Tim Farley on Whats the best way to send an event to all workstationsTim Farley2008-12-19T15:33:22Z2008-12-19T15:33:22ZWhy do you want to trap it, your question specifies a pop-up message? Well, you could build your own service that does the same thing Messenger does. It's basically using the NETBIOS API to listen for these incoming messages, then firing up a MessageBox.http://stackoverflow.com/questions/112248/building-a-web-search-engine/124779#124779Comment by Tim Farley on Building a web search engineTim Farley2008-12-02T19:30:45Z2008-12-02T19:30:45ZWhy not? Not every API is a set of callable functions. You can host the XML description of your search engine on your own website, and then you aren't even using Google's web interface for this.http://stackoverflow.com/questions/279112/retrieving-the-com-class-factory-for-component-with-clsid-xxxx-failed-due-to-thComment by Tim Farley on Retrieving the COM class factory for component with CLSID {XXXX} failed due to the following error: 80080005Tim Farley2008-11-10T21:04:08Z2008-11-10T21:04:08ZReally need more info to answer. Is your app a desktop app? Is it running as a std user or admin? Is the COM object local or remote?http://stackoverflow.com/questions/262657/the-coolest-server-names/263751#263751Comment by Tim Farley on The Coolest Server NamesTim Farley2008-11-05T14:24:46Z2008-11-05T14:24:46ZOur QA lab guys used elements for some of their servers, and I gave them crap about it because the low octet of the IP was NOT the atomic number.http://stackoverflow.com/questions/265180/remote-posting-from-one-application-to-another-application-security-issueComment by Tim Farley on Remote posting from one application to another application. Security issue?Tim Farley2008-11-05T14:22:45Z2008-11-05T14:22:45ZIt would help if you would clarify what "hidden post" means. HTTP POST? PostMessage() on Windows? http://stackoverflow.com/questions/262135/how-do-i-convince-the-googlebot-that-two-formerly-aliased-sites-are-now-separate/262165#262165Comment by Tim Farley on How do I convince the Googlebot that two formerly aliased sites are now separate?Tim Farley2008-11-04T16:02:08Z2008-11-04T16:02:08ZI can definitely see how changing the content will help. The webmaster is still in the hospital, but we will look into changing it. If anyone can point to the right place to escalate at Google that would be much appreciated.http://stackoverflow.com/questions/158557/get-street-address-at-lat-long-pair/235382#235382Comment by Tim Farley on Get street address at lat/long pairTim Farley2008-10-25T20:35:12Z2008-10-25T20:35:12ZThanks for coming back and posting this. I just tried this out with my API key and it works like a charm.http://stackoverflow.com/questions/210646/cant-detect-when-windows-font-size-has-changed-c-mfc/211790#211790Comment by Tim Farley on Can't detect when Windows Font Size has changed C++ MFCTim Farley2008-10-17T14:34:46Z2008-10-17T14:34:46Z"Not working" in what way? Do you still get an unchanged DPI setting when you call the function as written above?http://stackoverflow.com/questions/182077/best-way-to-simulate-a-wan-network/185244#185244Comment by Tim Farley on Best way to simulate a WAN networkTim Farley2008-10-09T14:05:55Z2008-10-09T14:05:55ZI haven't tried dummynet on VMware, but that is certainly an interesting idea. Potentially if you built a cheap fast box with a bunch of network cards you could simulate a whole topology with it.http://stackoverflow.com/questions/182334/company-insists-on-using-a-binary-format-for-all-our-documentation/182352#182352Comment by Tim Farley on Company insists on using a binary format for all our documentationTim Farley2008-10-08T12:16:03Z2008-10-08T12:16:03Zjust a nitpick on your nitpick: a JAR archive <i>is</i> a ZIP file. <a href="http://en.wikipedia.org/wiki/JAR_(file_format" rel="nofollow">en.wikipedia.org/wiki/JAR_(file_format</a>)http://stackoverflow.com/questions/174535/google-maps-overlays/174761#174761Comment by Tim Farley on Google Maps OverlaysTim Farley2008-10-06T16:31:52Z2008-10-06T16:31:52ZI would adopt a strategy of finding clusters of events that you can reduce to one pushpin on the national map that then hyperlinks to a view of just that city. The method would be similar but you'd need to use a version of the Haversine formula to find points that were within "x" miles.http://stackoverflow.com/questions/165975/determining-referer-in-php/166007#166007Comment by Tim Farley on Determining Referer in PHPTim Farley2008-10-03T12:26:21Z2008-10-03T12:26:21ZWhat prevents someone from spoofing this too? You've just moved the spoofable referer string to a different place in the HTTP request.http://stackoverflow.com/questions/160691/how-do-you-know-if-the-http-compression-is-working/160696#160696Comment by Tim Farley on How do you know if the HTTP Compression is Working?Tim Farley2008-10-02T03:06:14Z2008-10-02T03:06:14ZYeah, it's a proxy. As long as the browser is well behaved and follows the usual mechanisms to determine what proxy to use, no special hooking is required.http://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own/160538#160538Comment by Tim Farley on Why move your Javascript files to a different main domain that you also own?Tim Farley2008-10-02T02:23:01Z2008-10-02T02:23:01ZFantastic answer. Makes perfect sense now!http://stackoverflow.com/questions/160376/why-move-your-javascript-files-to-a-different-main-domain-that-you-also-own/160431#160431Comment by Tim Farley on Why move your Javascript files to a different main domain that you also own?Tim Farley2008-10-02T01:01:01Z2008-10-02T01:01:01ZSorry, I'm not getting your first point. How did I answer my own question?