Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Why Does Skype Read the BIOS?

Posted by kdawson on Wed Feb 07, 2007 03:02 AM
from the phone-home dept.
pfp writes "Myria at pagetable.com, among others, noticed that Skype reads the machine's BIOS code on startup. This probably would've gone unnoticed if the operation didn't fail on 64-bit windows. From the post: 'It's dumping your system BIOS, which usually includes your motherboard's serial number, and pipes it to the Skype application. I have no idea what they're using it for, or whether they send anything to their servers, but I bet whatever they're doing is no good given their track record... If they hadn't been ignorant of Win64's lack of NTVDM, nobody would've noticed this happening.'"
This discussion has been archived. No new comments can be posted.
Display Options Threshold:
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
  • Processor info? (Score:5, Interesting)

    by Ledsock (926049) on Wednesday February 07 2007, @03:05AM (#17917774)
    This is a random guess, but it could be part of skype determining the make and model of your CPU. They had made a deal with Intel a while back to only allow large conferences on their processors, and the BIOS reading could be part of that or anticipation of other deals to come.
    • Re:Processor info? (Score:5, Insightful)

      by repvik (96666) <repvik@kynisk.com> on Wednesday February 07 2007, @03:18AM (#17917870)
      (http://www.repvik.org/)
      Reading your BIOS to determine CPU ain't gonna be useful. I doubt any BIOSes store info on which CPU is on the board. Especially since there's easy ways to identify the CPU. I bet windows has a syscall that gives you CPU information.
      [ Parent ]
      • Re:Processor info? by Anonymous Coward (Score:3) Wednesday February 07 2007, @04:49AM
        • Oh but you can get CPU information easily by blowdart (Score:1) Wednesday February 07 2007, @06:14AM
        • Re:Processor info? (Score:5, Informative)

          by 49152 (690909) on Wednesday February 07 2007, @06:30AM (#17918970)
          Not entirely correct.

          GetSystemInfo() in Win32 and GetNativeSystemInfo() in WoW64 will give you some CPU information:
          It will tell you if your running on Intel, IA64 or AMD64, it will also identify 386, 486 and Pentium, Processor Level and Stepping and processor Revision. I think this will be sufficient in most cases to identify the CPU.
          [ Parent ]
        • Re:Processor info? (Score:5, Interesting)

          by aonaran (15651) on Wednesday February 07 2007, @09:02AM (#17920076)
          (http://www.macphersonclan.com/rod)
          Maybe reading the BIOS will tell them if you are running Skype in a virtual machine that emulates an Intel processor which keep Skype from being fooled into running 10 connections on AMD.
          [ Parent ]
        • Re:Processor info? by ncc74656 (Score:2) Wednesday February 07 2007, @02:14PM
      • Re:Processor info? (Score:5, Informative)

        Reading your BIOS to determine CPU ain't gonna be useful. I doubt any BIOSes store info on which CPU is on the board.

        As a former BIOS coder, I'll second that. Even if the BIOS did store some system specific info in Flash (on Embedded BIOSs sometimes this is done because CMOS is not reliable), there is NO way that Skype would know the format/place/meaning of this. It would be specific to a certain build of a specific BIOS for a specific board by a specific vendor.

        In any case, the method described to dump the BIOS is not very likely to get anything close to the complete, original BIOS image to begin with. By dumping memory at F000:0000 through F000:FFFF, a 16 bit DOS program, under Windows, will get the memory resident part of the BIOS. Most BIOSs are far bigger than 64KB and the memory resident part is the decompressed runtime part, which is nothing like what the actual BIOS image looks like at boot time.

        They are most likely using this in combination with other more or less 'unique' things to identify a specific machine. It wouldn't surprise me if after this some people would do a more in-depth analysis of their code and find out that it also reads the serial number of the harddrive and gets the MAC address of the Ethernet adapter.
        [ Parent ]
        • Re:Processor info? (Score:5, Informative)

          by Anonymous Coward on Wednesday February 07 2007, @08:12AM (#17919578)
          Fact 1: 0xF0000-0xFFFFF are the SHADOWED copy of BIOS on almost every BIOS. It's write-enable-able.

          Fact 2: That's usually where the SMBIOS pointer is found.

          Fact 3: It's easy (and the only way really) to scan for SMBIOS and find it.

          Fact 4: SMBIOS *does* often contain serial numbers and hardware details.
          [ Parent ]
        • Don't like it one bit. (Score:5, Interesting)

          by Kadin2048 (468275) <slashdot@kadin.xoxy@net> on Wednesday February 07 2007, @08:46AM (#17919900)
          (http://kadin.sdf-us.org/ | Last Journal: Tuesday October 16, @01:46PM)
          They are most likely using this in combination with other more or less 'unique' things to identify a specific machine. It wouldn't surprise me if after this some people would do a more in-depth analysis of their code and find out that it also reads the serial number of the harddrive and gets the MAC address of the Ethernet adapter.

          This seems pretty logical. Since they got rid of that hackneyed scheme a while back to give each processor a serial number (wait -- did they get rid of that?), some sort of hash of the BIOS memory, plus the Ethernet MAC, plus the HD serial number, all concatenated together, is probably as close to a unique identifier as you're likely to find on a "per machine" basis.

          That said, it doesn't make me feel any better. I wasn't a fan of the processor serial number concept, and not just because it was a serial number in the processor; there were serious privacy concerns with any uniquely identifying, per-machine serialization concept, and that's true whether it's a dedicated number that's being used, or some sort of combination of semi-unique factors.

          It's just one more piece of information, sitting in a database somewhere, that could be subpoenaed and used to generally cause trouble. Particularly given how close-mouthed the Skype people are about how their network actually operates (e.g. their alleged encryption, peer to peer communications), I'm not ready to run right out and trust them.

          I wonder if it would be possible to run Skype in a sandbox, where the information it's fed could be carefully controlled? On further thought, I wonder what happens when you run it in VMWare or Wine? Do they actually pass information about the hardware up to guest applications? It seems like this behavior would be one that the user should be given an option about, at the very least; I can only think of a few programs who have any reason to be getting the drive serial number, or the Ethernet MAC address, and for the most part they are not userland apps.
          [ Parent ]
          • Re:Don't like it one bit. by Gr8Apes (Score:1) Wednesday February 07 2007, @09:08AM
            • Re:Don't like it one bit. by Creepy (Score:2) Wednesday February 07 2007, @11:39AM
            • Re:Don't like it one bit. (Score:5, Insightful)

              by Gr8Apes (679165) on Wednesday February 07 2007, @11:36AM (#17922068)

              the original hardcoded MAC address is always visible to the OS somehow. Just changing the setting does not lose that information.
              I was under the impression that there was no such thing as a hard-coded number. Why do I say this? Because one fine day many years ago I received a shipment of 100 ethernet cards all with identical MACs. That was one fun day as those cards rolled out into the network...

              Processor serial numbers are about as innocuous as a privacy concern as if you used your grocery store loyalty card. To say that someone is going to target you because you have a certain loyalty to the grocery store is ludicrous.
              I don't share your ambivalence, yet agree with your point. They might haul you into jail, however, for buying large amounts of plastic forks, rubbing alcohol, and a couple of other items though.

              Uniquely identifying systems is ESSENTIAL to the current internet and DRM problems.
              Wrong. It's completely irrelevant and impossible to uniquely identify a system on the internet. It is ESSENTIAL to have unique connections. Identity is essential for law enforcement types, not the internet. For instance, do I care that I connect to machine 1 or 1,000,000 of those answering for google.com? DRM in this scenario is irrelevant, and any argument in support of that is already terminally flawed. (DRM's problems are that DRM exists at all)

              Just think, if a processor serial number had become a standard, they may not have decided so fast that they needed TPM and per-machine iTunes authorizing so hackneyed, and so on. Of course you can be uniquely identified on the internet. How much crazy hashing crap like this would it have made totally unecessary?
              TPM exists purely to serve DRM. See above. QED.

              [ Parent ]
              • Re:Don't like it one bit. by Sancho (Score:3) Wednesday February 07 2007, @08:53PM
                • Re:Don't like it one bit. (Score:4, Insightful)

                  by Alsee (515537) on Thursday February 08 2007, @11:00AM (#17934808)
                  (http://slashdot.org/)
                  No, the TPM design is indeed inherently evil.

                  Your explanation otherwise... it's like citing the vitamins and minerals in a poisoned apple. Apples where you are forbidden to have anything but an apple with a cyanide pill inside. The TPM is explicitly designed to secure the computer against the owner, the TPM technical specification even explicitly refers to the owner as an "attacker" to be defended against. Yes, I have read the entire (several hundred pages) TPM technical specification.

                  You very can easily get *all* of the benefits for the owner, including the secure startup you reference, and eliminate the cyanide pill and eliminate *all* of the abuses, from virtually identical hardware that is *not* secured against the owner.

                  The problem with the TPM, the cyanide pill that makes it inherently evil, is the fact that the owner is forbidden to know his own master key. In technical terms we are talking about the PrivEK - Private Endorsement Key. (* footnote)

                  Take absolutely identical hardware with absolutely identical capabilities, and simply offer people the option to receive a printed copy of their PrivEK (their master key) along with their machine when they buy it. Simple as that. It is identical hardware with identical capabilities to secure your computer for you. The mere fact that you may *know* your own master key (if you wanted it) does not alter that functionality. However the fact that you can know your master key then means that your computer cannot be secured against you. With your master key you can control and alter your security settings at will. With your master key you can override any lockout and escape any lock-in. With your master key you can ensure you can unlock your own encrypted files if you need to.

                  The Trusted Computing Group and the Trusted Computing specifications absolutely *forbid* you to ever get your master key. They forbid you to have an apple without the cyanide pill inside. A poisoned apple is not a "neutral tool" because it has vitamins and minerals in it... not when you are being forbidden to have normal nutritious non-poisoned apples. Not when you could so easily get all of the benefits and eliminate all of the abuses.

                  (*)Footnote: Being able to know your PrivEK is the minimum to guarantee you can maintain full control over your computer, but for very technical reasons only knowing your PrivEK leads to a more complex and less secure solution. You really want both your PrivEK and your RSK - Root Storage Key. Aside from the option to get a printed copy of your PrivEK, the chip should gain a single added function - the ability to output the RSK encrypted to the PrivEK. That keeps the RSK properly secured and only usable in conjunction with the PrivEK.

                  -
                  [ Parent ]
                • Re:Don't like it one bit. by Gr8Apes (Score:1) Thursday February 08 2007, @11:37AM
              • Re:Don't like it one bit. by breckinshire (Score:1) Thursday February 08 2007, @05:24PM
              • 2 replies beneath your current threshold.
            • Grocery store loyalty cards by Beryllium Sphere(tm) (Score:1) Wednesday February 07 2007, @03:50PM
            • Re:Don't like it one bit. by redcane (Score:1) Wednesday February 07 2007, @10:57PM
            • 1 reply beneath your current threshold.
          • Re:Don't like it one bit. by Anonymous Coward (Score:1) Wednesday February 07 2007, @10:14AM
          • Re:Don't like it one bit. by iksrazal_br (Score:2) Wednesday February 07 2007, @11:46AM
        • 2 replies beneath your current threshold.
      • Re:Processor info? by ajlitt (Score:2) Wednesday February 07 2007, @11:16AM
      • Re:Processor info? by tgrigsby (Score:2) Wednesday February 07 2007, @03:55PM
      • 1 reply beneath your current threshold.
    • Re:Processor info? by Anonymous Coward (Score:2) Wednesday February 07 2007, @03:21AM
    • Re:Processor info? by Anonymous Coward (Score:2) Wednesday February 07 2007, @03:29AM
    • Re:Processor info? by lachlan76 (Score:3) Wednesday February 07 2007, @03:33AM
    • Re:Processor info? by Anonymous Coward (Score:1) Wednesday February 07 2007, @08:50AM
    • Re:Processor info? by ponos (Score:2) Wednesday February 07 2007, @07:21PM
    • 2 replies beneath your current threshold.
  • bad history? (Score:3, Interesting)

    by chimpo13 (471212) <gorn@nokilli.com> on Wednesday February 07 2007, @03:06AM (#17917786)
    (http://nokilli.com/rtw/ | Last Journal: Tuesday November 06, @03:20PM)
    What is Skypes bad history?
    • Re:bad history? (Score:5, Informative)

      by Anonymous Coward on Wednesday February 07 2007, @03:12AM (#17917818)
      I think he was talking about the company who owns it. They also made kazaa, which was full of spyware and other harmful malware.
      [ Parent ]
    • Re:bad history? (Score:5, Informative)

      by Cocoshimmy (933014) on Wednesday February 07 2007, @03:31AM (#17918002)
      They could be referring to the time where Skype would only allow 10-way conference calling on dual-core Intel processors [slashdot.org]. Those running AMD processors could only have 5-way conference calls. At the time they cited the "technical superiority" of Intel processors over AMD ones.

      Of course thie gave bad publicity to both Intel and Skype after AMD issued a subpoena [slashdot.org] against Skype and the fact that it was discovered that the software simply checked the processor ID and enabled the feature based on that. A patched version [slashdot.org] was also released which bypassed this artificial limitation.
      [ Parent ]
    • can you say electronic bay of theives? by frovingslosh (Score:2) Wednesday February 07 2007, @04:36PM
  • Theres... (Score:5, Funny)

    by Anonymous Coward on Wednesday February 07 2007, @03:07AM (#17917792)
    nothing to see here. move along.

    we are not spying on you. we swear.

    oh btw.. your wife is cheating on you.
  • To prevent abuse? Usage statistics? (Score:5, Interesting)

    by Cocoshimmy (933014) on Wednesday February 07 2007, @03:14AM (#17917832)
    What better unique identifier than the system bios? Ip addresses are becoming less reliable since many people use wireless internet and mobile phones for skype.

    Skype is probably just looking for abusive users who sign up for their low margin unlimited calling plan only to share it with their relatives and friends accross the world. If they say detect say 5 different machines calling 5 different people all within a span of 10 minutes, then something is likely wrong.

    Of course they could just be collecting system info such as the system manufacturer, processor type, number of processors, sound card, etc. This could be combined with the survey results regarding phone quality they ask you to take after every few calls. In the end it could result in a better product and better service. Of course many other software products already do this (such as firefox, ms windows, ms office) but they are more open about it and at least give you the option of participating.
    • Yeah, and those bastards, requiring some sort of unique number to identify people using a telephone! Who ever heard of such trickery!
      [ Parent ]
    • Here's a question for you.... (Score:5, Informative)

      by Khyber (864651) <khyberkitsune@gmail.com> on Wednesday February 07 2007, @03:31AM (#17917996)
      (Last Journal: Saturday November 10, @03:30PM)
      I once read somewhere that the only identifying information that you could legally acquire, being installed on someone's computer, was MAC, IP, and Nickname. Anything else (Pentium 3 fiasco, anyone?) constituted a breach of privacy. Dunno if it's true, or not, but personally, I don't want you trying to identify what the hell makes up my system. Perhaps I'm building it SECRETLY for a fucking reason. You don't need to know what CPU or HDD I have installed - the only reason you would want to would be to directly target advertisements at their own users, concerning their own fucking hardwaer. If Skype did that, they'd lose not every bit of faith from me, but I'd go tell my company that I work for, which uses SKYPE on a regular basis. I can guarantee you that IT is so stupid they'd drop Skype and install Asterisk on a whim if I told them too, since I usually end up having to fix their intranet when it goes down.
      [ Parent ]
      • Re:Here's a question for you.... (Score:5, Insightful)

        by Ash-Fox (726320) on Wednesday February 07 2007, @04:40AM (#17918354)
        (http://scorch.quickfox.org/)

        I once read somewhere that the only identifying information that you could legally acquire, being installed on someone's computer, was MAC, IP, and Nickname. Anything else (Pentium 3 fiasco, anyone?) constituted a breach of privacy.
        I doubt it. Besides, one can change their Mac address, IP address and 'Nickname' without replacing hardware.

        You don't need to know what CPU or HDD I have installed - the only reason you would want to would be to directly target advertisements at their own users, concerning their own fucking hardwaer.
        Or maybe... Just maybe... They could make design decisions based on the majority of users.

        What proccessor speed do the majority have? What OS? How much RAM? How much harddrive space?

        It's important to know about who you're making software for.

        If Skype did that, they'd lose not every bit of faith from me
        Did you know Skype is owned by Paypal and eBay now?

        I can guarantee you that IT is so stupid they'd drop Skype and install Asterisk on a whim if I told them too, since I usually end up having to fix their intranet when it goes down.
        Asterisk and what? What SIP providers? What solution exactly? -- Asterisk is not a easy solution to setup compared to Skype. The end user can setup Skype, but Asterisk? I doubt it.
        [ Parent ]
        • by ajs318 (655362) <sd_resp2&earthshod,co,uk> on Wednesday February 07 2007, @05:29AM (#17918614)
          Asterisk is very easy to set up. You just have to be good at setting Asterisk up. The way to get good at setting Asterisk up is to set Asterisk up. For your first assignment, use just two hardware SIP phones. Once you have got them talking to each other, then you can think about adding more phones and things like POTS gateways.

          Within weeks you'll be writing advanced dial plans to do things like ring all the phones in a department or divert calls to your mobile if you haven't picked up in twelve rings, and you'll have DHCP and TFTP set up so each phone on the network can configure itself at switch-on. Then it'll all be working exactly how you want it to, with nothing for you to do except occasionally unplug and replug a misbehaving telephone.

          About a year or eighteen months later, you will want to add a simple new feature. Unfortunately, by this time you will have forgotten altogether how you set everything up in the first place.
          [ Parent ]
        • Re:Here's a question for you.... by Bert64 (Score:2) Wednesday February 07 2007, @10:18AM
        • Re:Here's a question for you.... by Khyber (Score:2) Wednesday February 07 2007, @03:01PM
      • Re:Here's a question for you.... by DrSkwid (Score:2) Wednesday February 07 2007, @10:22AM
      • Re:Here's a question for you.... by Angostura (Score:2) Wednesday February 07 2007, @02:14PM
      • Re:Here's a question for you.... by vadim_t (Score:2) Wednesday February 07 2007, @08:16AM
        • 1 reply beneath your current threshold.
      • 2 replies beneath your current threshold.
    • Re:To prevent abuse? Usage statistics? by suv4x4 (Score:2) Wednesday February 07 2007, @04:28AM
    • by evilviper (135110) on Wednesday February 07 2007, @04:33AM (#17918318)
      (Last Journal: Monday October 15, @11:53PM)

      Of course they could just be collecting system info such as the system manufacturer, processor type, number of processors, sound card, etc.
      That's complete nonsense. Windows has a perfectly standard way of finding out about system devices. Reading the BIOS would tell you almost none of the things you listed to begin with.

      [ Parent ]
    • 2 replies beneath your current threshold.
  • About figures (Score:5, Insightful)

    by TopSpin (753) * on Wednesday February 07 2007, @03:17AM (#17917866)
    Wouldn't it be nice of the Operating System helped you protect it from intrusive applications? No, you don't get to silently spam half baked crap into /etc/rc.d/init.d just because the you actually need sufficient privilege to do some other thing on install. No, my registry is NOT a free-for-all; you get to put just what you need in there and not go on a fishing expedition or 'fix' stuff you're not compatible with. No, the BIOS isn't for you because you're just a VOIP app and have no business whatsoever mucking around with the nonvolatile CMOS I need to boot. No, I don't need a fourth JVM crammed into my PATH, thanks.

    Vendors would be forced to detail the mucking around they do, probably leading to much less mucking around in general. Indifferent users could just do what they always do and bang on the 'accept/yes/ok' widgets. Those of us who know enough to care (or get paid to) would then have an actual chance.

    Too much to ask I guess.

    • Re:About figures by jimicus (Score:1) Wednesday February 07 2007, @03:44AM
    • Re:About figures by Tom (Score:3) Wednesday February 07 2007, @04:50AM
    • Gentoo emerge by backwardMechanic (Score:2) Wednesday February 07 2007, @05:01AM
    • Re:About figures by at_slashdot (Score:2) Wednesday February 07 2007, @08:23AM
    • Re:About figures by DrSkwid (Score:2) Wednesday February 07 2007, @10:25AM
    • Re:About figures by The_Wilschon (Score:2) Wednesday February 07 2007, @10:31AM
    • by Pfhorrest (545131) on Wednesday February 07 2007, @01:31PM (#17923734)
      Wouldn't it be nice of the Operating System helped you protect it from intrusive applications? No, you don't get to silently spam half baked crap into /etc/rc.d/init.d just because the you actually need sufficient privilege to do some other thing on install. No, my registry is NOT a free-for-all; you get to put just what you need in there and not go on a fishing expedition or 'fix' stuff you're not compatible with. No, the BIOS isn't for you because you're just a VOIP app and have no business whatsoever mucking around with the nonvolatile CMOS I need to boot. No, I don't need a fourth JVM crammed into my PATH, thanks.

      Right on!

      Coming from the Mac world, where I know there's most often no technical reason why an app couldn't just be drag-and-drop "installed" (i.e. just copy the app bundle to wherever the hell you want it and run it from there), I raise a suspicious eyebrow every time I download some program which should be entirely a userland thing (a game, a document or media editor or player of some sort, etc) which insists that I run an installer program that asks me for an admin password. I feel like asking the devs, "Why exactly do you need write access to anything outside your app bundle? Give me a damn good reason why I should entrust my system to you."

      I want my OS to serve me like I want my government to serve me: stay out of my way unless I ask it for something (and have useful services available for the asking), except to keep people from doing bad things to me and my property, in which case I want it to proactively defend me. This means that no programs are running that I don't want running or don't know are running; nothing can *get* running without my telling it to or at least granting it permission to; and no files get written anywhere, perhaps outside of a few sandbox areas like the user's Preferences folder, without my permission.

      OSX does most of this right already. The only more-stringent thing I would really ask for is that installers/etc which ask for an admin password not just get blanket permission to do whatever they want; I'd prefer it if the system instead told me, for each item the app wanted to install, that:

      "The application FooBar wants permission to create the folder "Beezelbub" in System/Library/YourMom/. The justification it provides for this is:
      Beezelbub is a video codec needed to play cutscenes in FooBar: The Quest For Metasyntax.
      Do you wish to allow FooBar to create this item? [Yes] [Yes To All] [No] [No To All]."

      And if you click one of the "Yes" buttons, THEN it prompts you for an admin password.

      Of course, the app would be allowed to write whatever the hell it wants into folders it creates, so you don't have to get this prompt for every one of the thousand little files that some library or codec might include, unless those files are scattered to the winds and not in one nice neat package like they should be. Currently existing apps of course would not have such justification strings built into them, but even still, this would be a more secure way that would allow users who care to selectively allow the installation of crap on their system. And of course, users who don't care can always say "Yes To All" and be no worse off than they are today.

      But users like me would feel much less suspicious, no longer wondering "what the heck does this installer want with my admin password? Why does this program need an installer in the first place?"

      A related thing I might like would be if the system notified me any time any program tried to open up a network connection of any sort; to which I could say "allow", "always allow" (for trusted things), "disallow", or "always disallow" (for things you think are spyware). Include similar justification strings as the above dialogue does. This would work well to combat any sort of trojan spyware you might have gotten (that is, programs you downloaded and installed yourself, which are sending data to someone that you don't want it to send; since the way O
      [ Parent ]
    • See Microsoft ClickOnce deployment for .NET by mounthood (Score:1) Wednesday February 07 2007, @02:17PM
  • by 280Z28 (896335) on Wednesday February 07 2007, @03:19AM (#17917898)
    (http://blog.280z28.org/)
    They could use this for tracking the number of computers the program is installed on, which would work independently of current user, IP, or even reinstalls. Combined with other things this could be a unique and interesting statistic that's hard (impossible) to test by other methods.
  • Random generator? (Score:1, Interesting)

    by Anonymous Coward on Wednesday February 07 2007, @03:33AM (#17918008)
    could it be that skype uses bios data to generate random numbers for the crypted communication layer?
  • by B3ryllium (571199) on Wednesday February 07 2007, @03:36AM (#17918018)
    (http://www.beryllium.ca/)
    Wait, I know the answer to this one!!

    Because it was stapled to the punk rocker's face!!!1
  • Go to the source (Score:5, Insightful)

    by ZX3 Junglist (643835) <[ZX3Junglist] [at] [hotmail.com]> on Wednesday February 07 2007, @03:38AM (#17918030)
    Has anyone asked them for their explanation? I feel now would be a good time for them to exercise their right to tell us why they do this.
    Might I suggest mailto:info@skype.net [mailto]

    I would do so I myself, but I assume there's a paying Skype user here who would garner a bit more attention than I would.
    • Done (Score:5, Interesting)

      by adpsimpson (956630) on Wednesday February 07 2007, @05:20AM (#17918558)

      Dear Sir/Madam,

      As a Skype customer (adpsimpson) and software developer who has used skype-out from across the world to stay in touch with folk at home, I read with some interest on http://slashdot.org/ [slashdot.org] this morning that Skype appears to read the system bios on start up.

      While I am aware that there are legitimate reasons that some software may do this, I cannot immediately think what a VOIP application would require the data for.

      Using closed source software is always a second-best from my point of view, especially in terms of privacy and transparency of the software's function - this in fact is what led me to Skype, since it runs on Linux. As such I am slightly concerned about unexpected application behaviour.

      What does Skype do with this information? Is it transmitted across the network in any form? Is it identifiable?

      I look forward to your response,

      Yours,
      Andrew Simpson

      [ Parent ]
      • Re:Done by Pond823 (Score:1) Wednesday February 07 2007, @06:06AM
      • Re:Done by tomatensaft (Score:1) Wednesday February 07 2007, @07:42AM
      • Re:Done by jayloden (Score:2) Wednesday February 07 2007, @09:41AM
      • Re:Done (Score:5, Funny)

        by Fhqwhgadss (905393) on Wednesday February 07 2007, @10:29AM (#17921110)
        Dear Mr. Simpson,

        Thank you for inquiring about Skype service. Please let me be you informed about our respect for the privacy of you. Skype wants only good things for the customers of Skype and only uses information for good things, not bad things.

        Sincerely,
        Apu Nahasapeemapetilon
        Skype. Take a deep breath.

        P.S.
        Now that you have a deep breath taken, you should really see a doctor about that rash and ask your daughter about where she's *really* going this weekend (hint: it's not the Tijihuana Bible Camp). And whatever you do, don't ever come home early on a Wednesday unless you want a nasty surprise. That's the day the missus "gets the carpet cleaned."
        [ Parent ]
        • Re:Done by mqj (Score:1) Wednesday February 07 2007, @10:22PM
      • Re:Done by metamatic (Score:2) Wednesday February 07 2007, @11:12AM
        • Re:Done by Ilgaz (Score:2) Thursday February 08 2007, @07:07AM
      • Re:Done by pionzypher (Score:1) Wednesday February 07 2007, @12:39PM
      • 1 reply beneath your current threshold.
    • 1 reply beneath your current threshold.
  • Why does it read the BIOS? (Score:5, Funny)

    by dangitman (862676) on Wednesday February 07 2007, @03:46AM (#17918070)
    Because it's bored and can't find a good book.
    • 1 reply beneath your current threshold.
  • by OpenSourced (323149) on Wednesday February 07 2007, @03:48AM (#17918078)
    (Last Journal: Saturday December 04 2004, @05:17PM)
    ...
    To know what's written there. ...

  • What about Macs ? (Score:4, Interesting)

    by warrior_s (881715) on Wednesday February 07 2007, @03:49AM (#17918086)
    Can someone tell me how can I check if its doing the same on my Macbook?
    Thanks
  • Sorry whats the big deal? (Score:2, Interesting)

    by Timberwolf0122 (872207) on Wednesday February 07 2007, @04:16AM (#17918212)
    (Last Journal: Tuesday May 24 2005, @09:11AM)
    Read my bios settings, I have no problem with this. There is no information on my BIOS that I would consider sensitive, maybe a touch of chargin if if turns out I have my RAM config set wrong(?) but thats it.

    Writing to my BIOS.... now thats a different matter and one I would take exception to.
  • Copyright on the BIOS ??? (Score:4, Interesting)

    by Alain Williams (2972) on Wednesday February 07 2007, @04:41AM (#17918366)
    (http://www.phcomp.co.uk/)
    It took a minute for the penny to drop, but is it not downloading the BIOS code rather than the system setup info held in CMOS ?

    If that is the case then transmission of that BIOS back to Skype HQ must be a breach of Phoenix/... copyright.

    Look what they try to do if you or I copy someone's code ...

  • by zuhaifi (1060950) on Wednesday February 07 2007, @04:43AM (#17918378)
    There's someone teach the skype 'reading'
    • 1 reply beneath your current threshold.
  • Identification? (Score:1)

    by Alkonaut (604183) on Wednesday February 07 2007, @04:57AM (#17918456)
    Couldn't it just be that they want to identify individual computers? If they can read a serial number from the motherboard then they don't have to count that computer again? The actual number of installations made (and used) is quite important for a company whose stock price depends on the number of customers but whose product is free to download...
  • Serves You Right (Score:1, Troll)

    by ajs318 (655362) <sd_resp2&earthshod,co,uk> on Wednesday February 07 2007, @05:14AM (#17918530)
    If you run closed-source software on your machine, then you deserve everything you get.

    If the suppliers of software weren't ashamed of it, they would gladly show you what was inside, beaming with pride as you carefully inspected each immaculately-tooled part. If they won't let you look, it's always for one of two reasons. Either it's doing something they don't want you to know about (*cough* ActiveX *cough*), or it's so badly written that they wouldn't want to admit to it (*cough* StarOffice *cough*).

    Stick to open standards like SIP and IAX. Only download Skype if you're planning to try to force it open.
    • Re:Serves You Right by tsa (Score:2) Wednesday February 07 2007, @05:29AM
    • Re:Serves You Right (Score:4, Insightful)

      by animaal (183055) on Wednesday February 07 2007, @05:44AM (#17918702)

      If you run closed-source software on your machine, then you deserve everything you get
      support that isn't limited to that old open-source favourite advice, "RTFM"?
      [ Parent ]
    • Nah, you are being silly (Score:5, Funny)

      by SmallFurryCreature (593017) on Wednesday February 07 2007, @05:50AM (#17918732)
      (Last Journal: Friday August 17, @05:34AM)

      I will only eat in restaurants that have a double door to the kitchen and a rabid security guard preventing entry. Everyone knows that the best kitchens never allow you to see what goes on inside. That is un-hygienic.

      Neither do I ever check under the hood of my car. My wife insisted on that, she assured me she made sure the brakes work just fine afer she adjusted them with the box-cutter. So that is alright and she waved me goodbye so nicely, together with the poolboy, as I drove away for a week trip across the mountains.

      Checking the work of a software company? Pah, next thing you will be insisting that the bible is translated into your native tongue so you can read it for yourselve and not have to rely on your religious leader to tell you what is inside it. INFIDEL!

      [ Parent ]
    • Re:Serves You Right by ndg123 (Score:1) Wednesday February 07 2007, @05:51AM
    • Yeah, heard that before! by Wooky_linuxer (Score:1) Wednesday February 07 2007, @08:00AM
    • Re:Serves You Right by pantalanaga (Score:1) Wednesday February 07 2007, @08:57AM
    • 1 reply beneath your current threshold.
  • They could have used Win32 calls (Score:4, Interesting)

    by AndrewStephens (815287) on Wednesday February 07 2007, @05:42AM (#17918678)
    (http://sandfly.net.nz/)
    I don't know why Skype is reading the BIOS, others have speculated that they are trying to generate a unique key from the SMBIOS tables or perhaps lock certain features to certain processors. Sounds plausible I guess.
    What I do know is the Skype programmers are überl4m3rz; the BIOS can be mapped into a process's address space using perfectly good Win32 calls. Resorting to calling a COM program to read the memory is an incredibly cheap hack, and obviously a badly tested one.
    • Re:They could have used Win32 calls (Score:5, Interesting)

      by blackest_k (761565) on Wednesday February 07 2007, @06:38AM (#17919028)
      (http://www.suninternetcafe.co.uk/ | Last Journal: Wednesday March 15 2006, @08:58AM)
      you make the assumption there that win32 calls are available, I'm running Linux.

      It makes sense to try and keep the code as cross platform as possible.
      However the question we all have is why?

      Possibilitys include user statistics, i would guess internet cafe's would have large numbers of accounts on a small number of PC's, but most accounts will be used at home or possibly on holiday. So maybe it is the marketing department that is interested.

      A less sinister reason may be to combat fraud, recently I noticed that Skype have introduced monthly caps on the skype out credit you can buy. Perhaps there is an issue or potential issue of fraudulent use of credit cards to buy credit.

      would be some protection for them if some user claims that his credit card details were stolen, and used to buy skype credit. With the bios code you could probably identify fraud on the part of that user when there is a dispute and the credit card company is refusing to pay. For skype to be able to say well we believe that user did incur these charges since we have it on record that the PC used was used both before and after the disputed dates for making calls on this account.

      and finally lets face it skype isn't that secure all it takes is for you to know my username and password and you can make free calls on my account.

      actually when you think about it attacking the username password system on skype should be fairly trivial at least it should be noticable when someone starts bruteforcing username password combinations.

      when you think about it, take your wireless laptop or pda war driving.

      connect to unsecured network
      brute force a username password
      make free calls world wide.

      with the ability to blacklist the particular pc used for the attack it becomes a lot more difficult and expensive
      to compromise user accounts.

      [ Parent ]
    • Re:They could have used Win32 calls by Malc (Score:2) Wednesday February 07 2007, @10:31AM
  • Skype is from Kazaa's founders (Score:1, Redundant)

    by otisg (92803) on Wednesday February 07 2007, @05:43AM (#17918692)
    (http://www.simpy.com/ | Last Journal: Tuesday April 15 2003, @12:58PM)
    It's important to remember that Skype comes from the same people who brought us Kazaa. It's the DNA.
  • seeding a random function (Score:1, Informative)

    by quench (187533) on Wednesday February 07 2007, @05:43AM (#17918698)
    well getting hardware information of this kind could practically be used as seed for random numbers.
    why always feed it with zero or get-ticks-since reboot?
    bye

  • Finally... (Score:2, Troll)

    by owlstead (636356) on Wednesday February 07 2007, @05:45AM (#17918706)
    This will generate some much needed criticism of Skype. It's not only that it is closed source, it's a closed protocol as well. I presume every Skype phone will have to pay nice amount of royalties.

    Basically Skype is not much more than VOIP. What it has going is a lot of hype, a cool name and an efficient way of doing the networking. But even then I have always been very sceptical of Skype. Unfortunately I haven't seen this reflected in real life. People simply buy Skype phones - even ones that only know how to do Skype - without realizing they are setting up a new monopoly again.

    And, as you can see, monopolies can do really bad stuff. Maybe this will turn out to be nothing spectacular, but who says that the next time this will be the case? It's not that I hold eBay in such a high esteem either (although this is mostly gut-feeling).

    • Re:Finally... (Score:5, Insightful)

      by Lurks (526137) on Wednesday February 07 2007, @07:02AM (#17919150)
      (http://www.electricdeath.com/)
      The thing is, what Skype did was take VOIP and turn it into an actual consumer usable product. Actual real IP phones are indeed based on an open standard but it's a really really stupid standard. Seriously, buy one and visit the configuration web page for it. I've tried many with several real VOIP services and they are pretty much a pain to set up even if you do know what you're doing, and as products they're under polished and buggy. That's today, go back to when Skype started up and these things were even *worse*.

      So yeah it's a closed standard because, not for the first time, a company sitting down to design a protocol and infrastructure from scratch often comes up with something remarkably better than designed-by-commitee products.

      Now I'm not saying everyone should dump stuff and go to Skype, I still find their service haphazard and buggy at best particularly when using the Skype in/out functionality. However I think a bit of respect is due for a company that realised the killer application and went on to deliver in a consumer friendly manner that was genuinely useful and, more or less, single handedly forged the entire consumer idea of net phones full stop.

      [ Parent ]
    • Re:Finally... by Knutsi (Score:2) Wednesday February 07 2007, @07:05AM
    • Re:Finally... by Dilaudid (Score:1) Wednesday February 07 2007, @07:25AM
    • Re:Finally... (Score:5, Informative)

      by battjt (9342) on Wednesday February 07 2007, @07:30AM (#17919284)
      (http://soliddesign.net/)
      No, the really cool thing about Skype is that it works and works very well.

      The audio quality over my MacBook, through a public WiFi network, through a very restrictive firewall, across the net, through another anally restrictive corporate firewall, across a nearly saturated WAN, to my client's desk is much, much better than using my digital mobile phone.

      The ease of use is great. We whip together video calls or conference calls all the time and never have to worry about getting a third party involved to set it up for us.

      Being able to call out is fabulous also. I've spent a lot of time in ICU's lately where I'm not able to use the mobile phone, but am able to use the WiFi network. It is very neat to be able to phone from an ICU to pretty much anyone (Skype or phone) with the option for video if they are on Skype also.

      The Jabber community just hasn't gotten their stuff together quick enough. There was plenty opportunity to beat Skype to market, but no one else, using open protocols, got the job done. I wish they would have.

      Joe
      [ Parent ]
      • Re:Finally... by Anonymous Coward (Score:1) Wednesday February 07 2007, @10:39AM
        • 1 reply beneath your current threshold.
    • 1 reply beneath your current threshold.
  • Tracing (Score:5, Interesting)

    by ignorent (857223) on Wednesday February 07 2007, @06:31AM (#17918978)
    Perhaps the federal government requires them to make all phone calls traceable?
  • Fraud (Score:1, Flamebait)

    by samj (115984) * on Wednesday February 07 2007, @06:57AM (#17919124)
    (http://samj.net/)
    This is almost certainly relating to fraud - sometimes Skype offer free credit and using something akin to a poor man's Trusted Platform Module (TPM) makes them sleep better at night knowing the hordes aren't running them up a big phone bill.

    This is not to excuse this behaviour, both in terms of them for asking for the information and of the operating system for giving it to them!
  • So what? (Score:1)

    by tobiashm (687885) on Wednesday February 07 2007, @07:46AM (#17919392)

    So Skype reads my motherboards serial number. We don't know what it does with it and if they send it anywhere. And so what? Even if they do send it back to HQ, they will be able to say "someone with a BrandName motherboard with the serial number ABC123XYZ has been using Skype"... and?...

    I just don't see the big deal.

    Anyway, my guess would be that they are using it - along with some other info - for generating some kind of unique key for the encrypted communication.

    • Re:So what? by emor8t (Score:1) Wednesday February 07 2007, @04:50PM
      • Re:So what? by tobiashm (Score:1) Thursday February 08 2007, @02:28PM
        • Re:So what? by emor8t (Score:1) Thursday February 08 2007, @05:09PM
          • Re:So what? by tobiashm (Score:1) Saturday February 10 2007, @06:47AM
  • by s_p_oneil (795792) on Wednesday February 07 2007, @07:54AM (#17919452)
    (http://sponeil.net/)
    Anyone who tries hard to secure their app tries to find the most unique way to seed their key generation process. By grabbing a bunch of unique hardware ID's, they may simply be trying to make it more difficult for hackers to find the key generation pattern to crack your calls.
  • Another reason not to use Skype (Score:4, Informative)

    I refuse to use Skype since it has it's own 'standard' and is not interoperable with SIP or any other standard and open VoIP protocol. It's also closed source so you don't know what it's doing. I hope a lot of these 'privacy' breaches will be uncovered and people will start seeing the benefit of having truly open source code.
    • Gizmo Project. by Joseph Vigneau (Score:2) Wednesday February 07 2007, @03:13PM
  • by blanks (108019) on Wednesday February 07 2007, @08:39AM (#17919814)
    (http://www.truepunk.com/ | Last Journal: Friday October 14 2005, @03:35PM)
    Most likely it is for the software registration and to check to the software is registered too / what features you have and to make sure you have a valid registration.

    One of the companies I work for do the same thing.   What happens is each time application is run it collects some information from the users hardware.  If then makes a magic number and sends it to a web service to compare to the magic number that was created when the person registered the program.

    If the numbers dont match then the software is not valid and the program wont allow the users to access the program.

    And yes if the person does upgrade their hardware they have to re-register the software.
  • IIRC (Score:2)

    by Apreche (239272) on Wednesday February 07 2007, @08:40AM (#17919836)
    (http://www.apreche.net/ | Last Journal: Tuesday November 08 2005, @11:17PM)
    Skype allows you to conference in more people if you have a newer Intel Core CPU. The easiest way to check what CPU you have, without letting you lie to Skype, is to check the BIOS. Also, checking the BIOS is code that works on all platforms. Saves them a little bit of trouble when porting Skype to the other platforms.
    • 1 reply beneath your current threshold.
  • NSA conspiracy (Score:5, Interesting)

    by sideswipe76 (689578) on Wednesday February 07 2007, @08:44AM (#17919876)
    I am gonna repeat my grand conspiracy theory: It is my belief that eBay's purchase of Skype was somehow coaxed by the NSA/CIA and here is why: Ebay's purchase of Skype never made sense. Ebay could have included skypeout:// links in their auctions without spending a penny. That would be like saying slashdot can't use IM unless they buy AOL. Skype spent way above considered market value for Skype and their share holders have applied no real pressure to have it turn a profit. This makes the transaction suspicious. The reason of course if because prior to the eBay's purchase Skype was owned in Luxembourg and definitely not an ideal partner for eavesdropping on "terra'rists" (given those crazy European privacy laws). Given that the calls are encrypted, and that Skype does maintain the keys to decrypt those session, getting Skype under US subpeona power is a powerful tool for eavesdropping. Infact, because it is VoIP for most if not all of the calls, it can easily route traffic into the US were it can be picked up, decoded and monitored. Or, since it is known that open IP's become super nodes, Skype can naturally be coaxed into steering packets toward a super-node that can easily be monitored. I use to work for the company that wrote Carnivore. People got worked up over that? It was only the prototype.
  • Legality? (Score:1)

    by spedrosa (44674) on Wednesday February 07 2007, @08:47AM (#17919914)
    They are reading the BIOS and sending it to Skype's servers.

    Isn't that a violation of the BIOS manufaturer's rights? I don't think it is legal if I read my BIOS and dumped it on the net without their written consent. Why would this be any different?
    • I doubt it by Myria (Score:2) Wednesday February 07 2007, @01:52PM
  • by MadCow-ard (330423) on Wednesday February 07 2007, @08:57AM (#17920014)
    We all like a good conspiracy theory, but it seems to me there are enough tech journalists at /. reading this thread that at least one might call and ask. It might even break into a bigger story, or maybe just be a few more minutes spent reading /. instead of working...
  • What if they could use such a feature to ban usage by Mobo serial numbers? It would be a bit complicated, but should be able to work. Good way to get rid of a user instead of IP bans.
  • by bcmm (768152) on Wednesday February 07 2007, @09:30AM (#17920376)
    Does Skype 1.x do this? Does it do it on Linux?

    Is it in fact possible for a non-root user to read the BIOS on Linux?
  • by tburt11 (517910) on Wednesday February 07 2007, @10:12AM (#17920882)
    Following the Superbowl a few days ago, was a Television program that introduced the concept that a criminal was able to control the webcam (on a Mac) to surrepticiously view the activities in the room in which the running laptop was placed.

    My wife said "They cannot really do that!", to which I replied, "Oh, yes they can". In the TV program, the laptop was conveniently left open and running in the bedroom.

    It has bothered me alot that Skype is a closed source program that responds to commands from outside of your home, and conveniently, has complete control of your microphone and webcam. And as a default, Skype installs in the system tray, so that it is "always on".

    Am I the only person to feel uneasy about this?
  • So what? (Score:2)

    by RightSaidFred99 (874576) on Wednesday February 07 2007, @10:26AM (#17921072)
    Good god, who cares? You people _do_ know that your machine is easily identifiable by, I don't know....your IP ADDRESS!!?

    Furthermore, even if you're behind, for example, a firewall _someone_ knows your IP address from proxy logs. Also, Skype could easily generate a GUID and store it somewhere on your computer where you couldn't find it, or use an existing GUID

    • Re:So what? by mlush (Score:1) Wednesday February 07 2007, @11:17AM
      • Re:So what? by RightSaidFred99 (Score:2) Wednesday February 07 2007, @01:18PM
        • Re:So what? by mlush (Score:1) Thursday February 08 2007, @05:43AM
        • 1 reply beneath your current threshold.
    • 1 reply beneath your current threshold.
  • by sabre86 (730704) on Wednesday February 07 2007, @10:31AM (#17921168)
    The posts says "For copyright reasons I can't post the file or a complete disassembly. However, I can describe the program in terms of 16-bit DOS C:" While I understand the author's worries, it's frightening he feels this way. He shouldn't have to worry.

    Doesn't fair use specifically include an exception for Comment and Criticism [stanford.edu]? If the whole code is being criticized and commented on, it should be reproduced in full, particularly given that it's distribution and dissemination does not harm Skype's marketshare.

    Never mind that a reasonable interpretation of freedom of the press demands that the entire code be reported on and shared in an informative matter. Right? Right?

    --sabre86
  • Their Spyware Past (Score:1, Interesting)

    by ThinkFr33ly (902481) on Wednesday February 07 2007, @10:47AM (#17921358)
    The creators of Skype got their money from the very popular P2P application, Kazaa.

    Kazaa was well known for being a conduit for spyware on to user's machines. Virtually all of the money these guys made from Kazaa was by charging huge per-install fees to makers of spyware and adware. They full well knew what this software did, and they were perfectly happy to take the money.

    But paying on a per-install basis means you need to be able to reliably identify a person's machine. This isn't as easy as it sounds. There is really no single piece of information that can uniquely identify a machine.

    But doing a dump of the BIOS and gathering a few dozen pieces of information would allow you to fairly accurately identify unique installs.

    Now, I'm not saying that Skype is spyware. And I'm not saying that these guys intend for it to become spyware at any point in the future. But I bet that they originally intended Skype to be the next big vehicle for spyware delivery.

    Now that Skype is so popular and seems like a legit way to make money, they no longer intend to use it for evil. But old habits die hard, and so does old code.
  • by blindd0t (855876) on Wednesday February 07 2007, @11:28AM (#17921922)

    Somebody else probably already said something about this, but if they're having trouble getting a 64 bit driver working, why don't they migrate to using a WMI query instead? You should be able to get plenty of information regarding the BIOS and CPU via WMI, as well as almost any other information you could ever dream about finding about the computer. Of course, this fails to answer the question of why they need this information, but I'm merely assuming it stems from the CPU check.

  • not always evil (Score:2)

    by micromuncher (171881) on Wednesday February 07 2007, @02:52PM (#17924894)
    For example, if you want to generate a UID from what unique stuff you can get on a machine... you can peek at the bios version, look at the scsi serial (did you know every scsi drive has a unique serial number?), mac address...
  • by ZOverLord (902034) on Wednesday February 07 2007, @03:41PM (#17925434)
    (http://testing.onlytherightanswers.com/ | Last Journal: Sunday July 31 2005, @12:41AM)
    First, if you took all the applications that read BIOS for some reason and printed their names, you would need to replace your ink cartridge before you were done. What makes this different? If BIOS reads were such a dangerous violation of privacy, how come any application can read it and as a limited user, since the PC stone age! If one wants to yell Fire in a crowded building, lets start by creating a list of applications that read BIOS, find out how many years they have been doing it, and make a list. I would be much more worried about the little yellow dots on your documents you printed on your printer than the master database of mother board numbers kept by the pentagon. One thing is for sure, this story just set back the possiblity of intelligent life forms stopping at this bus stop of a rock for at least 10 more years.
  • I know why (Score:1)

    by ac3boy (638979) on Wednesday February 07 2007, @05:47PM (#17927286)
    It is so eBay can prepare future pages for you to sell your computer.
  • by jiawen (693693) on Wednesday February 07 2007, @06:41PM (#17927980)
    (http://www.jiawen.net/)
    Does this BIOS call have anything to do with the soft lock problem [launchpad.net] encountered by me and many other Ubuntu users? My guess is not, but I don't know enough about these things to guess with much confidence.
  • by jkells (1004385) on Wednesday February 07 2007, @07:12PM (#17928354)
    I ran Skype with filemon and it didn't access a single .com file on my machine. Maybe the articles author should install a virus scanner lol. Can anyone else reproduce this behavior, perhaps Slashdot should start doing more thorough fact checking on their articles.
  • Bios (Score:1)

    by zuhaifi (1060950) on Thursday February 08 2007, @05:14AM (#17932254)
    If they hadn't been ignorant of Win64's lack of NTVDM, nobody would've noticed this happening.
  • by grazman (926478) on Thursday February 08 2007, @09:49AM (#17933958)
    First off, anyone stupid enough to use Skype and IGNORE their EULA is probably having their bank account cleared out by someone while their on vacation since they are probably VERY careless with their personal data on the Internet too.

    It's quite obvious to me how this is used. If the CPU and other hardware information score high enough, this is part of how SKYPE likely uses your PC (oh yeah, violating the terms of service with your ISP at the same time, because you host stuff, right?) to activate the SKYPE Hub-to-Hub protocol.

    This is just one of the many reasons why the SKYPE network is untrustworthy, because it's almost impossible to keep your PC from being elevated if they determine your network configuration and hardware profile makes a good candidate as a SKYPE switchboard operator.
  • by Carl 2093 (1061688) on Thursday February 08 2007, @05:48PM (#17940676)
    Maybe you could create an empty read-only file named "1.com" and place it here:
    C:\Documents and Settings\[name]\Local Settings\Temp\12\1.com
    Then Skype would be unable to create the file. (Does Skype always use "12?

    -Or if your file system is formated NTSF and you don't use any 16-bit applications you could disable execute permission for ntvdm.exe. I saw this as a suggestion for stopping certain trojans. (I have FAT32, so CACLS won't change the execute permission, ATTRIB can't do that... I tried renaming ntvdm.exe, but windows prompty recreated it. I don't know what system process did that, or if it can be disabled.)
  • Yeah, I'm shaking in my shoes thinking that eBay might steal my identity and sell my files to the government because their software might theoretically be able to read my bus speed and AGP window size.
    [ Parent ]
  • by pandrijeczko (588093) on Wednesday February 07 2007, @06:58AM (#17919130)
    Skype uses a proprietary protocol so it's not easy for programmer-types to reverse engineer those to get a working FOSS app. as a result.

    I would imagine that any FOSS effort is going into SIP (Session Initiation Protocol) which is open and is already being used in the likes of the open PBX "Asterisk".

    My guess is that SIP will eventually turn out to be for telecoms what TCP/IP is for datacoms - so the likes of Skype's proprietary stuff will probably disappear at some stage anyhow when they're forced to go the way of SIP.

    [ Parent ]
  • by Cheesey (70139) on Wednesday February 07 2007, @07:36AM (#17919314)
    http://www.blackhat.com/html/bh-europe-06/bh-eu-06 -speakers.html [blackhat.com]

    That Blackhat link is very interesting, thanks. Deliberate spying behaviour aside, Skype doesn't seem a very trustworthy app!
    [ Parent ]
  • by tburt11 (517910) on Wednesday February 07 2007, @10:26AM (#17921064)
    Tools -> Options -> Advanced -> Start Skype when I start windows

    At least for WinXP. The Mac is somewhere else.
    [ Parent ]
    • 1 reply beneath your current threshold.
  • Well I am 6 feet three inches tall, and by definition, my height at least puts me in the troll ballpark as far as physical attributes go.

    "Troll - a race of giants. They appear in various Northern mythologies. In Norse mythology Trolls are represented as a type of goblin."

    I also have been "goblin" my lunch recently - I should slow down and take my time - it's better for digestion.

    To papraphrase a movie title - "The Mods Must Be Crazy."

    I just found it interesting that the first two Google links talked about a Blackhat convention, and the article on flash BIOS's made me think that it would not be too hard to create an EXE (Dell does this with their BIOS updates) to exploit flash BIOS vulnerabilities. [securityreason.com]

    Well, gotta go now - some goats want to cross my bridge" [wikipedia.org] - and it ain't happening!

    [ Parent ]
  • by Myria (562655) on Wednesday February 07 2007, @01:39PM (#17923870)
    NTVDM, the DOS emulator in NT, needs a BIOS image to place for DOS programs to use, since many depend on it. Rather than provide such an image with NT, Microsoft decided just to map the real image into user space 000F0000 on request. This is done with the (officially) undocumented system call NtVdmControl.

    Other than perhaps revealing a unique identifier, there isn't a security risk to allowing unprivileged programs access to it. The mapping is read-only, and only the BIOS and video BIOS can be mapped this way.

    I don't know why they want the BIOS so much. The Windows product key, the primary MAC address and the computer SID all make good identifiers if you combine them.
    [ Parent ]
  • 11 replies beneath your current threshold.