Slashdot Mirror


Laptop Thief Caught via AOL Login

Mundocani writes "Yahoo (Reuters) is reporting that the FBI has caught the guy who stole computers from Wells Fargo. The interesting part is that 'Investigators traced the computer to Krastof when he logged onto his own America Online account at home through one of the stolen computers.' Makes you wonder what sort of hooks the FBI has into AOL or other ISPs and what hardware identification is being transmitted at login."

122 of 524 comments (clear)

  1. Mac address perhaps ? by Anonymous Coward · · Score: 3, Funny

    Mac address perhaps ?

    1. Re:Mac address perhaps ? by kjba · · Score: 2, Interesting

      Couldn't it just be the case that the internet browser's homepage was still set to an address on Wells Fargo's intranet? The wrong http request would be easy to find.

    2. Re:Mac address perhaps ? by Jugalator · · Score: 2, Informative

      Maybe that intel CPU serial number.

      Does the Pentium III processor broadcast its serial number when it is enabled and a user is connected to the Internet?

      - No. The processor serial number is passive. Thus, it does not transmit or broadcast itself. If a person chooses to enable the feature, then, when visiting a website that can utilize processor serial numbers, the website needs to send software to the PC to read the processor serial number.

      --
      Beware: In C++, your friends can see your privates!
    3. Re:Mac address perhaps ? by Jugalator · · Score: 2, Informative

      ... oh, and even in a case where the P3 processor would send its serial number upon login, this only applies to P3 processors. From intel.com:

      Only the Pentium(R) III Xeon(TM), Mobile Pentium(R) III and Pentium III processors support the processor serial number feature introduced by the Pentium(R) III processor. No other Intel(R) processor supports the processor serial number feature.

      --
      Beware: In C++, your friends can see your privates!
    4. Re:Mac address perhaps ? by einhverfr · · Score: 2, Informative

      Mac address perhaps ?

      For those of you who don't know, mac addresses are only valid on the same network segment, which means that the router would drop them, and so it can't be that (unless the login program sends that info). More likely it si something like the intel cpu id, etc.

      --

      LedgerSMB: Open source Accounting/ERP
    5. Re:Mac address perhaps ? by Epistax · · Score: 3, Funny

      On a windows box you can change the MAC address by creating a network bridge and adding your network connection to it. On a linux box you probably just have to edit a file called something like
      MAC Address DO NOT CHANGE.conf
      And then they put it as read only hoping no one learns how to use chmod.

    6. Re:Mac address perhaps ? by frehe · · Score: 4, Informative

      Read ifconfig(8) to see how you can do it under Linux. Google for "sea.c" to see how you can do it under OpenBSD.

    7. Re:Mac address perhaps ? by inode_buddha · · Score: 3, Informative
      I'm reading this thread for the Windows/AOL info, since I use Linux and need more clues about Windows.

      That said, the 2.6.x Linux kernels have the ability to mangle and spoof MAC addys, in addition to NAT/MASQ and building firewalls based on MAC. This is in addition to all the iptables godness.

      My firewall uses iptables *and* echoes the desired behavior into kernel-space by setting the desired values in /proc with a script at bootup. For ex:

      ## Disable accepting IP source routing

      for f in /proc/sys/net/ipv4/conf/all/accept_source_route; do

      echo 0 > $f

      done

      As far as the chmod goes, one could also use chattr to set the "immutable" bit e.g. "chattr +i foo.bar". Its more potent than chmod since not even root can touch an immutable file; you have to become root and remove the immutable bit first.

      --
      C|N>K
    8. Re:Mac address perhaps ? by Joe+Decker · · Score: 3, Insightful
      Yeah, but why did they care about this case?

      They cared because the computer involved had enough information to carry out identity theft on many, many folks, they were probably investigating this as a potential large-scale identity theft case, not just a computer theft.

      They say the number of folks involved was "a small percentage ... of Wells Fargo's 22 million customers." One percent would be 220,000 people. I don't know if it was even one percent, but I do know someone (not myself) who got a letter from Wells Fargo about the incident, I thin this was a very big loss of private data.

  2. PC call home by leerpm · · Score: 2, Insightful

    More than likely, the computers had some sort of software built into them to 'phone in' and notify a central location of its IP address. Then they just traced the IP address to his AOL account. Not very fancy detective work, just standard stuff.

    1. Re:PC call home by mental_telepathy · · Score: 4, Informative

      Actually, I would say that is less than likely. I haven't heard of any company that installs software like that by default, even on laptops. And it would be much easier for AOL to check for a MAC address Wells Fargo provided.

    2. Re:PC call home by miu · · Score: 5, Informative
      Nope, the slashdot blurb about him using his own aol account is wrong.

      According to another source "He logged onto an (America Online) account that was registered on that computer and we traced it back to his phone number and address''.

      It's the 4th item down on the page, under "Suspected thief arrested".

      --

      [Set Cain on fire and steal his lute.]
    3. Re:PC call home by weicco · · Score: 2, Informative

      You are missing the point. If laptop had phone home - software, it could easily inform it's IP address to "home" when it detects that internet connection is available. After IP address has been received, one can easily trace what ISP computer is using. ISPs usually knows ARP address of computers (network interfaces actually) that are connected to their gateways because DHCP-servers are caching them. I don't have details about this but I'm pretty sure about that DHCP stuff.

      So one doesn't have to know MAC address, just IP address and that's enough. And on the other hand tracing MAC address in internet is almost impossible so you need that IP address.

      --
      You don't know what you don't know.
    4. Re:PC call home by Zocalo · · Score: 4, Informative

      Actually, the kind of security software implied by the original poster does work on IPs since you can't track a MAC address back across the Internet. When you log in, the laptop transmits its current IP address back to the servers of the "phone home" application vendor along with an ID. If that ID is flagged as belonging to a stolen system, then that IP is used to identify the ISP, who will then be informed of the situation and will hopefully be able to identify which user was using that IP at the time. Tie that user back to a person and contact details through billing records and you can proceed to make an arrest.

      --
      UNIX? They're not even circumcised! Savages!
    5. Re:PC call home by Ewan · · Score: 2, Interesting

      A lot of corporate laptops now have "dial-home" software installed, and if you don't login every x (normally about 14) days without getting authorisation in advance, then the company will consider the laptop stolen and lock out any accounts stored on it.

      It operates much like spyware, and hides itself in the same way. This could be what happened here, and after the x number of days the system starts logging which IP address and time the computer logged in at and flags the information for further investigation. Once you have an IP address and a timestamp, it's relatively trivial for most ISPs to find out which user was online at that time.

      Ewan

    6. Re:PC call home by jellomizer · · Score: 4, Informative

      Though why AOL should be tracking mac addresses to user logins is beyond me.
      Its called good administration. AOL is a large ISP if you didn't know. They have a lot of members and non-members trying to send Spam threw them, hack other computers threw them, and hack and Spam their own systems. So when someone puts out a complaint that so and so spam them threw AOL or was being tracked threw AOL and you show them proof then they can check the logs to see when they logged in and if they actually did that, at least coinciding with the login times and the times the incident occurred. I am pretty sure that they are also recording your telephone number that you used to call in as well. This is not a part of some Evil scheme or government plot. It is a way that a company the size of AOL uses to protect its butt. Because if they don't track this information and enforce it, (And yes some times they may need to call the police and some times the police asked them for some information) then they will be getting lawsuits left and right saying your servers attacked my computer, and AOL is not even showing good faith to remedy the situation. System Administration is sometimes public administration as well, especially when the public uses your systems.

      --
      If something is so important that you feel the need to post it on the internet... It probably isn't that important.
    7. Re:PC call home by jjshoe · · Score: 2
      No offense, but the /. blurb is not nesecerily wrong. Two quotes about what happend, use your better judgement and pick one.


      In short, the point of the story is, yet another stupid criminal gets caught.

      --
      -- botsex is {grep;touch;strip;unzip;head;mount} /dev/girl -t {wet;fsck;fsck;yes;yes;yes;umount} {/de
    8. Re:PC call home by haunebu · · Score: 2, Interesting

      Why is a Wells Fargo laptop accessing AOL's network? Most corporations (and especially financial institutions I'd venture) require users to access corporate Intranets through a VPN and in turn access the Internet through their proxies. There's no way in hell that laptop should be connecting to the public Internet using an AOL account.

      --

      Blue skies, Barthy Burgers, girls...

    9. Re:PC call home by Mattcelt · · Score: 5, Informative

      There are several software packages including Ztrace and Absolute Software's Computrace which deal with the issue of laptop theft directly. It seems very likely that these computers were protected with one of these type of programs.

    10. Re:PC call home by miu · · Score: 4, Insightful
      One continuing problem that IT has is locking down computers. It is very common for employees to install their own software and dial connections on laptops.

      I agree with you that a laptop with the sort of sensitive data that this one contained should never be connected directly to a public network - but such is the state of data security these days.

      --

      [Set Cain on fire and steal his lute.]
    11. Re:PC call home by Zocalo · · Score: 4, Interesting

      I kind of get the impression, that with this being a laptop and all, it would have been using a modem to connect. Last I heard a modem does not actually have a static MAC address in firmware like a network card. Since this is Slashdot, we might as well blame Microsoft for this confusion since they gernerate a MAC with the vendor ID of 44:45:53 to "internal adapters" such as modems.

      --
      UNIX? They're not even circumcised! Savages!
    12. Re:PC call home by miu · · Score: 5, Insightful
      I should state exactly why I felt the Herald version is more credible.

      The Yahoo statement:

      Investigators traced the computer to Krastof when he logged onto his own America Online account at home through one of the stolen computers, White said.

      and the Herald statement:

      "He logged onto an (America Online) account that was registered on that computer and we traced it back to his phone number and address,'' White said.

      I felt that the direct quote of Chief White was more credible, and less likely to be subject to an error of interpretation on the part of the reporter.

      --

      [Set Cain on fire and steal his lute.]
    13. Re:PC call home by snake_dad · · Score: 4, Informative

      Companies server receives the unique ID. Sysadmin: "Hey, Fred just logged in, but his machine was stolen. WTF? Hmm.. what IP did his request come from? Aaaah.. 69.69.69.69. Let's do a lookup.. hey.. it seems to be an AOL modem-pool". Company goes to police, policy goes to judge, police show credible evidence that a crime was committed, judge gives warrant, AOL gives info (login account or the phonenumber that was dialed in from) on who was logged in at that time on that modem in that modempool. Police goes to address, takes laptop, returns it to Fred, jails crook. Fred: "1337!".

      --
      karma capped .sig seeking available Slashdot poster for long-term relationship.
    14. Re:PC call home by Stephen+Samuel · · Score: 4, Informative
      ISPs usually knows ARP address of computers (network interfaces actually) that are connected to their gateways because DHCP-servers are caching them. I don't have details about this but I'm pretty sure about that DHCP stuff.

      Machines which dial in don't use ARP. ARP only applies to Ethernet

      . Nontheless, I can easily see a machine with sensitive information wanting to report it's IP address to a central location whenever it connects. Cookies in the web browser might also help identify a stolen machine.

      Using the default account and password stored on a machine seems stupid at first, until you consider that the guy had ID theft equipment... I don't use AOL, but I wouldn't be to surprised if you could fetch some ID-associated info by logging into the account of a stolen computer. In this case, the computer was of special interest, so the guy was picked up.

      I wouldn't be surprised if more people could be caught by this same method, it's just that police aren't interested enough in following such tracks for 'normal' owners.

      --
      Free Software: Like love, it grows best when given away.
    15. Re:PC call home by RossyB · · Score: 2, Insightful

      And how does one get online to connect to the VPN? AOL is very popular as it has access points world wide, which means that if you give every travelling person an AOL account and a VPN login, they can get to the company network from anywhere in the world securely.

    16. Re:PC call home by beacher · · Score: 4, Funny

      Nah.. I have a copy of the evidence right here....

      Subject: ME TOO
      From: Krastof (Krastof@AOL.com)
      Reply-To: Krastof@AOL.com
      Newsgroups: comp.laptops.stolen
      Date: Wed, 26 Nov 2003 09:18:22 -0500

    17. Re:PC call home by miu · · Score: 2, Insightful
      I guess this "38-year-old Home Depot clerk" wasn't aware of the data this laptop contained, and never understood seriousness of the crime until feds knocked on the door. had he known how serious it was, he shouldn't have made such a stupid mistake (and sold the laptop on ebay).

      Who knows. Sounds like the guy was a small time con man and forger. Had he known what he had he might have tried to do something really stupid - like sell the info or attempt to blackmail the corporation he stole it from. Probably lucky for him he that he didn't know :)

      --

      [Set Cain on fire and steal his lute.]
    18. Re:PC call home by Pastis · · Score: 2, Funny

      Actually companies now have a reason to let employees put software on the company's laptops: they allow to catch you the guy who's going to steal your computers.

    19. Re:PC call home by gl4ss · · Score: 2, Informative

      there's also similar kind of programs for gsm phones (mainly the series60 phones, 7650,3650,6600,ngage&all) that can be configured to send and sms with all the knoweledge on the new simcard if it notices that the card gets changed.

      now if i wasnt so goddamn lazy i might actually install one of those..

      --
      world was created 5 seconds before this post as it is.
    20. Re:PC call home by Theatetus · · Score: 3, Informative

      Modems don't have MAC addresses.

      And, btw, tracing MAC addresses across the Internet is not "almost impossible" but "by definition impossible". Traffic on any internet (but especially The Internet) crosses routers (that's what the "inter" part refers to). Routers kill OSI Level 2 identifiers, like hardware addresses.

      --
      All's true that is mistrusted
    21. Re:PC call home by El+Cubano · · Score: 2, Informative

      Let's do a lookup.. hey.. it seems to be an AOL modem-pool". Company goes to police, policy goes to judge, police show credible evidence that a crime was committed, judge gives warrant, AOL gives info (login account or the phonenumber that was dialed in from) on who was logged in at that time on that modem in that modempool. Police goes to address, takes laptop, returns it to Fred, jails crook. Fred: "1337!".

      Thanks to the DMCA, they can probably skip 3 or 4 of those steps and just demand the info directly from AOL (with no judicial or LE oversight) and then raid the guy themselves.

      Were he pirating music, that is probably what would have happened.

    22. Re:PC call home by PunchMonkey · · Score: 2, Informative

      Computrace

      I know an office that uses this software... it's not bad, it stays quite hidden in the OS (Windows only of course). Login with your ID and you get a list of all your laptops and the last IP they were detected as being logged in from.

      --
      I'll have something intelligent to add one of these days...
    23. Re:PC call home by Tux2000 · · Score: 2, Interesting
      One continuing problem that IT has is locking down computers. It is very common for employees to install their own software and dial connections on laptops.

      At my company, users simply can't change dialup connections, and they can't install software requiring administrative privileges. They are "Restricted Users" in Windows. To select a dial-up connection, a selfmade software running "suid" (or the equivalent of this on W2K) changes a preconfigured and locked dial-up connection. To install more software than the default, they need to connect to a software distribution server in the corporate network. To install other software, they need to hand out their machine and the cdrom to the IT support. In very rare cases (having a high rank or having robbed on knees for a while), the IT support can enable a "24 hours administator" mode, giving the user local administrator rights for 24 hours.

      (It might be possible to copy a special program onto the machines to bypass some of the restrictions, but our users don't know that much about computers. Most can't even tell the difference between a power cable and a (laptop) power supply unit, they name both "power cord".)

      --
      Denken hilft.
    24. Re:PC call home by mess31173 · · Score: 5, Informative

      I work at Wells Fargo and there is a pile of 8 laptops on my desk and the images I apply to them don't have any "call home" software. FYI.

    25. Re:PC call home by Dr.+Evil · · Score: 2, Interesting

      Naw, phone numbers only set up the connection, they don't exist once the connection is established. Modems are only capable of a point-to-point connection so the MAC is meaningless.

      I assume Microsoft assigns a bogus MAC just because it is easier (== less bug prone) than dealing with special cases in their protocol stacks.

      I've always been a bit curious about how they generate the bogus MAC though. Can it be an identifier?

      IMHO, if the thief didn't wipe the HDD on the notebook, then they were probably nailed by a cookie as soon as they fired up their browser.

      The cookie would give an IP, an IP would give a rack of modems, a rack of modems would give the caller's phone #, and pow.

      Or... the cookie would give an IP, the IP would give a provider, the provider and IP would give an account, the account would give a physical address and pow.

      BTW, one ISP I was with would create a dynamically generated reverse-lookup DNS entry which contained my MAC address. Pretty clever since my MAC and IP, thus provider and account would be splottered all over ISP logs everywhere. It's not so much a privacy invasion, since the IP and the date/time would give the same info.

    26. Re:PC call home by Afty0r · · Score: 2, Insightful
      This is not a part of some Evil scheme or government plot...
      Because if they don't track this information and enforce it... then they will be getting lawsuits left and right

      Didn't you just contradict yourself? You're claiming it's not part of a government plot, and next minute you're saying the government forced them to carry out their actions?
      Laws are enacted by the government to force the citizenry to conform... so when you have to do something to obey the law, you have been forced to carry out that action by the government.
      But this has nothing to do with the government, right?
    27. Re:PC call home by majid · · Score: 2, Insightful

      Most network access servers send Caller-ID information in the RADIUS authentication request. AOL would have that in their logs, and if the thief used caller ID blocking, the FBI could ask the phone company for their call detail records for the ISP number.

      A thief that had even the modicum of clue to use Caller ID blocking, let alone spoof his telephone number, would not have been dumb enough to use an AOL account on a stolen machine.

  3. Good vs Bad by Anonymous Coward · · Score: 3, Interesting

    There may be some good in the fact that they are able to trace someone like this...but the ramifications make me shudder.

    That and make me glad I am in Canada..

    1. Re:Good vs Bad by leerpm · · Score: 4, Informative

      It not's very difficult. Once you have the IP address, you just do a query at ARIN. That will tell you which ISP the address belongs to, so you phone the ISP and ask them for the information about which subscriber had that IP address at the time you are concerned about. Almost All ISPs maintain this sort of information for auditing/logging purposes.

    2. Re:Good vs Bad by jridley · · Score: 4, Informative
      Yes, but it's not clear that's what really happened; it appears that the actual info may have been muddled by the reporter. I suggest looking for Krastof in news.google.com and read some other articles.

      Here's an excerpt from another article on this matter:

      The suspect led the police right to his door when he decided to go online. Gascoyne alerted the police that someone had used his account since the burglary. America Online helped investigators link the dial-up computer connection to a phone number, which SBC then linked to a phone jack at Krastof's home.


      This is TOTALLY un-scary. The Wells-Fargo guy apparently has his password cached on the machine. This guy just clicks "login" and logs in AS THE GUY WHOS COMPUTER WAS STOLEN. At this point it's a trivial bit of work to go catch the guy.
    3. Re:Good vs Bad by AllUsernamesAreGone · · Score: 3, Insightful

      " I think that I'd wipe the harddrive and install a new OS (read: Linux) before I even thought about connecting it to the net."

      The only problem with that is that this guy was trying to pull off sensitive information from the box. But yes, if he had more than a couple of functioning grey cells he certainly wouldn't have hooked it up to any kind of public network until he had pulled off any useful information, done a thorough drive wipe (not just a format) and installed a new OS.

      Of course, the FBI probably likes the less technically inclined computer lifter....

    4. Re:Good vs Bad by li99sh79 · · Score: 2, Insightful
      Of course, the FBI probably likes the less technically inclined computer lifter....

      Not every crook can be The Napster, Left-Ear or Handsome Rob. Hell, most of 'em aren't, that's why they're crooks. :)

      -sam

      --
      I was just here, where did I go?
  4. hardware id by neodymium · · Score: 2, Insightful

    I guess the AOL software might "accidentially" transmit the ethernet hardware (MAC) id of the machine...

  5. hardware ethernet addresses by Space+cowboy · · Score: 2, Insightful

    I guess if AOL take a note of the hardware ethernet address (not surprising, because DSL lines aren't supposed to be shared, right :-) then just doing a query for the address on AOL's db would be enough to get a (very) shortlist...

    Simon.

    --
    Physicists get Hadrons!
  6. last thing the thief heard... by dark_day · · Score: 4, Funny

    "You've got jail!"

  7. Moral of the story... by jkrise · · Score: 5, Funny

    1. When you steal computers, don't steal laptops.
    2. After stealing a dedsktop PC, even if it has the latest Windows OS and Service Pack, format the disk and load RedHat.
    3. If you steal a Linux PC, install Windows on it for a year, then switch back - even AOL can't maintain that big a log!
    4. Don't use AOl - switch over to MSN - it's much more secure - instead of the FBI, it'll be the BSA that's after you!

    --
    If you keep throwing chairs, one day you'll break windows....
    1. Re:Moral of the story... by vofka · · Score: 2, Interesting

      Yes, there is an AOL Client for Linux - though it's not an 'official' client.

      Look at This Tutorial to see how to install the PengAOL Linux Dialer.

      I have set this up on both SuSE and Mandrake systems from source for a couple of friends who wanted to try Linux, but who didn't want to drop AOL... It can be a bit tricky to get working, but it does work (in the UK at least).

      --
      Disclaimer: I meant what I thought, not what I wrote! What? You can't read my Mind? Oh dear!
  8. CPUID is your friend by isa-kuruption · · Score: 2, Interesting

    Once in a while, yes, it is your friend.

    But then again, AOL probably has other ways to track computers for marketing and such... to determine what PCs are being used how much to access AOL services, etc...

  9. Get over it by marko123 · · Score: 3, Insightful

    The line between being able to trace crooks and being able to maintain your privacy has always been small. You know what to do if you want privacy, and everyone else should not ever assume they are private just because noone else is in their lounge room.

    This is a valuable education, and it will help the regular user understand how unprivate their internet communications are.

    No-one loses here. What's the story?

    --
    http://pcblues.com - Digits and Wood
  10. ...or maybe... by cnelzie · · Score: 4, Insightful

    Well's Fargo is using some cool 'Phone Home' software that was described on Slashdot several times that MOST everyone thought was a good idea...

    Why is it a good idea when it will protect your laptop or employer's laptop, but suddenly, the FBI has some nefarious hooks into AOL when they publish that they captured a laptop thief because the thief logged into AOL?

    Anyone care to give that answer that?

    --
    If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
  11. You know... by mental_telepathy · · Score: 5, Insightful

    I hate to say that Slashdot readers have obvious biases, but why is it that when the police do something smart with computers, you get:
    Makes you wonder what sort of hooks the FBI has into AOL or other ISPs and what hardware identification is being transmitted at login.
    And when they can't solve a computer crime case, you get 100 posts about how the police are computer dummys. I'll be honest, I'm not too worried about my ISP having my MAC address, or even the make and model of my video card if they are interested. It's just nice to see a criminal get busted

    1. Re:You know... by jkleid · · Score: 5, Insightful

      "I'll be honest, I'm not too worried about my ISP having my MAC address, or even the make and model of my video card if they are interested."

      Authorities now have a sizable fraction of the technology possessed by big brother in the book 1984. Whether or not to fear that power is a matter of trust.
      _______

    2. Re:You know... by Alsee · · Score: 5, Interesting

      why is it that when the police do something smart with computers...
      And when they can't solve a computer crime case...


      Because the issue is how they do it. News items appear slam the police for success and ridicule them for failure simply becuase news items are not a representitve sampling of reality! The police have a hundreds of successes every day, but who cares to write about them or read them? It only becomes a news item when the police have a success AND they did something wrong or controvercial in the process. The same goes for their failures - it only becomes newsworthy when someone really screwed up.

      As for this particular story it is all about how the police caught the guy. It appears that Slashdot botched the story in this case. Another news site reports that the guy did NOT log into his own AOL account, he logged into an AOL account belonging to the owner of the machine. If that's the case then there really isn't any story here. If some moron steals my wallet and then shows up at bank trying to use my safety deposit key then there's no problem grabbing him and throwing him in prision.

      I was going to continue with an example of police methods that would not have been acceptable, but lets skip arguing over specifics. Suffice it to say that there *are* a wide variety of unacceptable methods. If you don't agree with that then you are a far greater threat to this country than any terrorist with a bomb.

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  12. tin foil hat... by mirko · · Score: 2, Interesting

    If the guy tell the fbi his laptop got stolen, he may laos have given them some info about a recent internet connection which would have allowed them to find his mac address which was then looked for in some isps' logs until they found out who did it.
    I guess it's more optimal for the fbi to do it this way than to just store whichever information thanks to some software backdoors.
    we have some reasons to worry about our Freedoms but it is not a reason to imagine we're always being spied on.

    --
    Trolling using another account since 2005.
    1. Re:tin foil hat... by arth1 · · Score: 2, Insightful
      If the guy tell the fbi his laptop got stolen, he may laos have given them some info about a recent internet connection which would have allowed them to find his mac address which was then looked for in some isps' logs until they found out who did it.

      While this is possible, I find it unlikely.
      Why? Because the feds would not put down investigative resources on a simple theft, especially from a private person.
      I find it more likely that the original owner pleaded with AOL into checking whether the account had been used after stolen, and then again pleaded with them to give that information to the detective assigned to the case.
      Which would be a perfectly normal story, if it had been a small ISP. The story here is that someone actually got a big ISP to check their logs and cooperate with the customer in informing the police, instead of just reading scripted responses from a call center in Bangalore.

      Regards,
      --
      *Art
  13. AOL Id is in the install by acomj · · Score: 2, Insightful

    When you install AOL it knows your "Master account" name. From there you can pick one of the other account names or use the "Guest" login feature.

    My guess is that when the theif loged in they use the guest feature.

    AOL probably had the account flagged as "Stolen" so the theif couldn't buy AOLL stuff through the account on the machine

  14. MAC Address? Proc Serial? Magic Lantern? by tintruder · · Score: 2, Redundant
    Nobody ever talks about the MAC Address being a unique serial number for a PC. But if a company uses a management tool like OpenView, Tivoli, Spectrum etc., the MAC is certainly one of the parameters collected and recorded as part of the inventory.

    So if this guy installed his own software or OS on a stolen box and then got caught, that leaves precious few other options.

    Processor Unique ID?

    WindowsXP Phone Home?

    Keystorke Logger?

    In any case, it certainly appears that some "known" piece of identifying data was present and easily flagged.

    I for one would like to know more about the exact method used, because if there is indeed some kind of government back-door that has the potential to circumvent encryption or anonymity, we ought to find out.

    Maybe the FBI's "Magic Lantern" is a 2-piece system with 1/2 on the network, and the other half in the OS or the Silicon?

    Maybe all the bank employees are being spied upon without their knowledge?

    Maybe Patriot Act rears its head in the authorization of certain methods and practices?

  15. Wait a minute... by cnelzie · · Score: 4, Insightful

    How was this thief even able to use this stolen laptop? Were they not running a password protected operating system, at least Windows 2000 or Windows XP?

    I know that if ANY of the laptops and roughly ALL of our desktop PC's would be useless to any thieves unless they format each and every machine, since there isn't a single account that doesn't have a password that isn't controlled by our Domain Controller...

    I am not so happy about Wells Fargo's apparent disinterest in keeping things secure...

    --
    If you ignore the other uses of a tool, does that make the tool less useful, or you less useful?
    1. Re:Wait a minute... by leenoble_uk · · Score: 5, Interesting

      Running Jaguar I set up a fake account with no password on purpose. If my laptop was stolen I WANTED the thief to use it to get online. My real accounts were hidden from the login screen and my home folder was invisible. I had a penny-per-minute dialup ISP set up to make it easy for the thief to get connected. Using DNS update software I would be able to see the IP address at Dyndns.org if it was ever used.
      If the thief was to find the computer locked down from the start then they'd be far more likely to wipe and restore making this a lot more difficult.
      Unfortunately, now running Panther and making user account invisible makes the fast user switching a buggy nightmare. So in spite of the extra security features like FileVault I think it less likely I would ever see it again if it were stolen. I liked my security through obscurity.

    2. Re:Wait a minute... by HeghmoH · · Score: 4, Interesting

      If you do want to implement e-mail, it's very simple. You don't need a local MTA; SMTP is very simple, and a server will accept a message for a user at its domain, no matter where you're connecting from. (Or nearly so....)

      So all you have to do is know the SMTP server for your e-mail address, and a bit of scripting with netcat does the rest. Just make a file with:

      helo phone_home@domain.blah
      mail from:phone_home@domain.blah
      rcpt to:phone_home@domain.blah
      data
      Subject: subject

      contents go here
      .
      quit

      Then you can send it with 'nc smtp.isp.blah 25 file'.

      I do this for my phone-home program. It doesn't send mail by default, but it checks a private page on my web site. If it finds the right command on that page, then it will send e-mail. I can also have it execute commands and open up an ssh tunnel so I can ssh in.

      Of course, like a dumbass, I don't have an easy way for them to get online unless they have a wireless network. Do you have a suggestion for how to do that without having a password-free admin account? I don't want random people to be able to do nastiness on my machine.

      --
      Mod down posts with a "Free Mac Mini/iPod" sig, they're spam!
    3. Re:Wait a minute... by Bobman1235 · · Score: 3, Informative

      How was this thief even able to use this stolen laptop? Were they not running a password protected operating system, at least Windows 2000 or Windows XP?

      Unfortunately Windows2000 and WindowsXP have an option that most people un-select which says "users must enter a name and password to access this system". It pretty much defies the use of HAVING a name and password when the computer automatically boots through it. The worst part is this is the default configuration. So most users never really even SEE that Windows has a password.

      And AOL lets you SAVE the password on your computer, which is equally foolish.

    4. Re:Wait a minute... by IM6100 · · Score: 2, Insightful

      Most people who use that option to bypass having to enter the password every time they turn their computer on have their computer situated in their home. Nobody can physically access the computer unless they break and enter. In most such circumstances it's highly unlikely their computer will be 'broken into' because of the no-password-needed feature, at least not before far worse things have happened to their property.

      Security-freak geeks are on the wrong side of public sentiment on this one. People don't want nor need draconian security features on computer systems they have in their own homes. There's a notion out there that they should be chastized for lax security practices that reeks of smug zeal.

      --
      A Good Intro to NetBS
  16. Re:MAC addresses? by Viol8 · · Score: 4, Informative

    The MAC address goes no further than the first router , in this case his broadband modem if thats what he's using.
    If he's using dialup the MAC address doesn't even come into it.

  17. There is no story here by Mr_Silver · · Score: 5, Insightful
    From SFGate:
    Investigators knew where to look for the gear not because of unusually intrepid sleuthing but because Krastof allegedly used the computer to log on to an AOL account belonging to the system's owner, Peter Gascoyne.
    Please remove your tin foil hats, the idiot logged onto the AOL account of the person he stole the laptop from. The police and AOL merely traced it back to his house.
    --
    Avantslash - View Slashdot cleanly on your mobile phone.
    1. Re:There is no story here by trystanu · · Score: 5, Informative
      ... and even then AOL didn't help *that* much:

      White said investigators had asked AOL as a routine precaution to watch for any log-ons in Gascoyne's name. He said the world's biggest online service had reported a hit earlier this month but then dragged its feet in providing information about the phone line used in the connection.
  18. A more detailed version of the article by claq · · Score: 3, Informative

    I found this version posted on www.securityfocus.com. It says the thief used the laptop owner's dial-up AOL account, which the FBI had asked AOL to monitor.

  19. Re:so how did they get his addy? by Zocalo · · Score: 4, Informative
    Logs, logs, and yet more logs. The process works like this (although not in this case, since apparently Yahoo is wrong and Krastoff actually used the original owners account):

    1. Use WHOIS to find out which ISP owns the IP address
    2. Get the ISP to look at their logs to determine which dial-up session was assigned that IP at the time.
    3. Look at the logs for the access platform to identify the caller's line ID. This is usually the same as the telephone number, but not necessarily, and is *always* known to the remote system, even if you withhold you phone number because it's used in call setup.
    4. Take that number to the Telco that owns it and look at *their* logs to give you the physical location of the phone that made the connection (or owner of the mobile).
    5. Arrest the perp.
    While that glosses over the paperwork, and assumes that the ISP maintain sufficiently details logs of calls and authentication, which many small ones don't, that's pretty much it.
    --
    UNIX? They're not even circumcised! Savages!
  20. Re:MAC addresses? by crevette · · Score: 5, Informative

    Why make it so complex? The computer was reported stolen by Wells Fargo with all the information, so the FBI issued a request to AOL to notify them if anybody logs into such and such accounts. Once it happens, the FBI simply had to check the phone records to know what is the number of the guys connected and voila!

    I work at a phone company in a country without secret services and sophisticated hooks into any ISP and we would be able to pull that out in a matter of minutes.

  21. I bet they tracked him down by IM by H8X55 · · Score: 5, Funny

    Makes you wonder what sort of hooks the FBI has into AOL or other ISPs and what hardware identification is being transmitted at login.

    i bet it wasn't that complicated.

    fbiAgentd00d99: Yo man, what's up?
    LaptopThief2310: Not much, i just ripped off some computers! HA HA WOOT!
    fbiAgentd00d99: SWEET!
    LaptopThief2310: Yeah I rockxxorz. Now I'm takin' a pic of me, an all the computers i stoled w/ a sony cybershot i "found".
    fbiAgentd00d99: You pwn3! Send me that pic! I'm gonna put it on my website!

    There we have it folks, probable cause, as well as an IP address.

  22. Computrace Plus or similar product? by Dynamoo · · Score: 2, Interesting
    It *might* be something like Computrace Plus which sits on a laptop and silently transmits audit information back over whatever IP network it connects to. They've got some case studies that show how the product actually works.

    Basically, it's legitimate spyware. I've personally never used the product, although we are about to evaluate it.

    --
    Never email donotemail@WeAreSpammers.com
  23. Re:Password protected? by rduke15 · · Score: 5, Interesting

    Were they not running a password protected operating system, at least Windows 2000 or Windows XP?

    You must be kidding, but I'm not sure.

    It takes only a few minutes to change the administrator password on a Windows box with a Linux boot floppy.

    Done it a couple of times (on Windows 2000), for users who didn't know the admin password.

  24. Take off your tinfoil hat by brunes69 · · Score: 3, Funny

    If this is anything like 95% of the windows laptops I know of, it was littered with bonsai buddy and RealPlayer and Windows Update and tons of other calling home crap. And more than likely, this bozo didn't format the PC or anything else. All the FBI would have to do is find out whats on the PC, and contact these companies for that software's unique IDs.

  25. Not spyware. The story is much simpler than that by Raphael · · Score: 5, Informative

    There is no need for any "Phone Home" software or anything sending the CPUID to AOL. The story is much simpler than that and rather low-tech:

    • Thief steals computer.
    • Thief tries AOL account found on stolen computer.
    • Account is known to have been compromised.
    • Connection type = dialup = phone number.
    • Phone number = address.
    • Address = thief gets caught.

    Nothing exceptional here. The FBI does not need any strange hooks into AOL. They only need stupid thieves. Case closed.

    --
    -Raphaël
  26. Because there is nobody to guard the guardians by Anonymous Coward · · Score: 3, Interesting

    It's simple. Everybody wants thieves to be locked up, but nobody wants to live in a police state. This means that we applaud whenever the authorities apprehend a baddie, but we boo whenever they give themselves even more powers and so bring the darker possibilities one step closer. There is nobody to guard the guardians, so we defend ourselves as best we can, by trying to postpone the day when their control might become total.

    The two things are directly related, inasmuch as in a police state there would certainly be much less crime, since freedom cuts both ways. What you see as a conflict is just a reflection of this inter-relationship. We have to do both if we wish to safeguard both our present and our future.

  27. Similar Experience by Lieutenant_Dan · · Score: 4, Interesting

    I had one of my notebooks stolen at the LA airport. I had one in my suitcase (there's only so many I can carry) because of a conference. One of the baggage handlers must have helped himself to my notebook.

    The funny thing is that the notebook was my personal, and because I did travel a lot at the time, I had an AOL account for convenience. Out of a whim, I called AOL and asked them for a log of my sign-ins. Lo and behold, turns out whoever stole my notebook was using my AOL account to surf! I pleaded with the tech person to at least give me the IP address so I can track the thief down. He sympathized with my problem and passed me to one of the network engineers who was very keen on helping me. I got the IP address and the phone number that he used to dial-in. He said that the Telecom department could give me the number that was used to dial in to AOL but I would have to get law involved as certain FCC regulations prevented him from sharing that info.

    So I collected all the info and sent the report to the security officer at the Airport, a copy to the LA sherrif's dept and another one to my insurance company (who I had hoped would be keen to solve the problem). After a few calls, I got nothing. Turns out that theft like that happens a lot at the LAX and the LAPD is way too busy with serious crime to investigate a crime committed to an out-of-towner.

    The good thing is, my home insurance covered the theft, so I got a better model for basically the amount I paid for my notebook a year prior (minus deductible).

    This was pre-2001 btw ...

    --
    Wearing pants should always be optional.
    1. Re:Similar Experience by qtp · · Score: 5, Insightful

      If you had demonstrated the common decency to be a large financial institution, as Wells Fargo so considerately did, then the police would have been more than happy to help you.

      The absolute gall that you demonstrated by being a lowly private citizen cannot be tollerated and our law enforcement agencies cannot and will not encourage such anti-social behavior.

      --
      Read, L
    2. Re:Similar Experience by isorox · · Score: 3, Informative

      LAPD is way too busy with serious crime

      Like that in the UK. The Police are too busy catching people doing 80mph on the motorway to bother with the boring stuff like murder and gangland shootings

    3. Re:Similar Experience by crashnbur · · Score: 4, Interesting
      ...the LAPD is way too busy with serious crime to investigate a crime committed to an out-of-towner.

      It's sad, really... but police officers have essentially been reduced to insurance claims officers when it comes to theft or vandalism. Unless someone is in clear and present danger, the police often can't or won't act because there is just too much crime.

      I read a sociological report about persons who have committed felonies recently, and the results shocked me. The statistics in particular that got my attention:

      Of all the grand theft (generally $500+) that occurs in the US, only 6% of it is even reported.

      Of all the grand theft that is reported, only 1% of the thieves are ever caught.

      Of course, you have to understand that sociology isn't the most exact science in the world, and that these stats most likely include career thieves who only get caught once. I guess you can tell any story you want if you've got the stats to back it up.

      But still, according to these numbers, 99.94% of all thefts of $500 value or more are lost causes for the theft victims, because either the thieves are too good or the police forces are not good (or willing) enough to catch them.

    4. Re:Similar Experience by Skyshadow · · Score: 4, Insightful
      If you had demonstrated the common decency to be a large financial institution, as Wells Fargo so considerately did, then the police would have been more than happy to help you.

      In fairness, this laptop represented a pretty serious amount of crime potential.

      The laptop was stolen from a Wells Fargo contractor, and if contained a whole mess of Really Important customer data (social security numbers and what have you) that would have enabled any halfway competent identity thief to get all they needed to start opening credit lines.

      The real issue here (which nobody's talking about) is how can Wells Fargo get away with this? Seriously, they left a mess of Real Important confidential customer data unencrypted on a highly mobile computer. Talk about negligence! This'd the the same as if they had customers dropping their night deposits into a large suitcase they left outside the front door of the bank (except in that situation all you stand to lose is one deposit).

      Is it so much to ask that institutions who have our Really Import Data take some basic steps to protect it? This whole thing could have been rendered moot with something as simple and easy as an encrypted filesystem.

      But nobody, nobody is talking about it. So they'll continue putting customer data on laptops, HMOs will keel putting patient records on tablet PCs or shipping it overseas for testing or whatever... I wonder what it'll take to change it...

      --
      Every year during my review, I just pray the words "slashdot.org" aren't mentioned.
  28. Re:Get over it - This is NOT about privacy by Anonymous Coward · · Score: 2, Insightful

    Did you read the article? There is nothing related to privacy in this story. No stealth software allowing the laptop to be traced. It is much simpler than that: the thief used the AOL account found on the stolen computer and connected to AOL using his own phone. The phone call was traced back to his home, and then he was caught.

    There is no story, and no real need to bring privacy into the picture. Sure, all you wrote is true. But it is irrelevant for this story.

  29. am[a|u]zing how far speculations can go... by Maresi · · Score: 2, Insightful

    ...when almost nothing is known about a topic...

    (I dont want to be Jacko at the moment =;-D)

    --
    The checkbox said "Requires Windows 98, NT, or better. And so I installed Linux
  30. Re:so how did they get his addy? by manon · · Score: 2, Interesting

    If I'm not mistaking, ISP's have to keep the logs for several years by law (at least in Belgium they have to). That way they can still trace a cracker/scriptkiddy or a stupid thief like the one in the story months, even years after their actions.
    In the federal building I used to work, we even needed to keep the proxy log (with date/time, login-id and visited sites)for 5 years... go imagine.

    --
    42 + 1 = 42
  31. AOL Likely Got a Subpoena; No Need For Paranoia by reallocate · · Score: 3, Insightful

    Contrary to the Luddite tone of most reaction here, I suspect the only "hooks" the FBI had into AOL was a subpoena. I lived for several years near AOL in Loudoun County, Virginia. Law enforcement officials looking for info from AOL routinely sought subpoenas from judges in that jurisdiction. Sometimes they got them, sometime they didn't.

    Of course, AOL can tell that a customer is dialing in from a computer with legitimate AOL account info and software on it. If a court tells them to, they'll record that info and release it to the people who got the subpoena. This time it was the FBI. Next time, it might be you and your lawyer chasing down someone defaming you online.

    The assumption that the FBI has "hooks" into AOL is simple bush-league cynicism from the wanna-be poseurs. Why would anyone decide that it's wrong for AOL not to help capture this thief?

    --
    -- Slashdot: When Public Access TV Says "No"
  32. What Kind Of Moron? by Anonymous Coward · · Score: 2, Funny

    What kind of moron steals a computer, hooks it up the internet without first 1. formatting it. 2. installing a firewall. 3. resetting the rule on any installed firewalls to only allow certain programs you know access to the internet. 4. uses someone elses account when it's just as easy to get a "new" account with AOL 5. uses AOL 6. Does it from their home. You would think that if this dipshit did this stuff for a living he would be better at it. Maybe he was fired from his job at the RIAA.

  33. Several cans of worms.... by TygerFish · · Score: 2, Interesting

    No matter how the guy was caught, simple or complex, the fact that the story comes up at all opens several interesting cans of worms.

    We give ourselves, our populace and our government, a lot of credit. We walk down the street trusting people we wouldn't let drive our cars to make an intelligent decision on who should enjoy personal control over a powerful army and a large nuclear arsenal.

    We live under a government made up of mostly of obscure appointed functionaries. During the last election, John Ashcroft was a man so despised by the people who best understood his personality and performance, that his first contribution to U.S. history was losing an election to someone the electorate knew to be deceased. Michael Powell first broke the surface as chairman of the FCC by vociferously supporting measures to further consolidate ownership of America's broadcast media.

    We trust faceless strangers to *NOT* use terrorism as an excuse to pass nasty laws that sidestep the principles which define us as a people.

    Now, it is perfectly possible to imagine that the person who stole the laptops was the kind of (darwinian) mastermind who *would* log on to someone else's AOL account, using their stolen computer from their home connection and leaving us to ask, 'Hey, why not just turn yourself in...?'

    Be that as it may, as some pieces here and elsewhere have shown, at all levels, governments are happy to adapt law and technology to purposes that civil libertarians dislike with good reason. This time it was nothing, but one day, it could very well be something that makes us all wish we could go back to telephones and paper.

    The point that started this thread might very well be moot, but unless you are completly satisfied with whom we have in office and whom they have appointed to positions of power most of us are scarcely aware of, you have to wonder what things will be like when things are different.

    --
    To mail me, remove the 'mailno' from my email addy.
    "Yeah. It smells, too..."
  34. Do this with yahoo auctions by adzoox · · Score: 3, Interesting

    I have done something similar with yahoo auctions. At auction end I type the seller's name into my IM client. It registers that name under all IM clients.

    I always request a phone number and email address if I pay by Paypal or PayDirect. If they don't give it to me and I can't validate it, I don't send the money.

    I have sent money in the past; rather blindly. I have been able to catch two sellers by just pretending to be girls interested in them, through IM. I got their actual phone numbers and even got one ready to pick me up and meet me for a "date" LOL.

    Of course it was a lot of hassle.

    If you can catch a criminal at their own game - that's justice.

    I wish eBay wouldn't have eliminated the contact information request without having a transaction with the othert party. Most sellers that cheat me on Yahoo, also have aliases identical on eBay.

    --
    Yell & scream & rant & rave... it's no use... you need a shaaaave ~ Bugs Bunny
  35. sed -e s/threw/through/g your_post by pr0ntab · · Score: 2, Funny

    nt

    --
    Fuck Beta. Fuck Dice
  36. A reason to configure dynamic DNS by Emperor+Skull · · Score: 2, Interesting

    We configure the built-in windows dynamic DNS for all of our systems. If someone steals it and connects it to a network without bothering to reconfigure, their IP address will show up in our DNS logs. WINS works the same way. Not perfect, but free and easy.

    ES

    - If I had all the money I spent on cars, I'd spend it all on cars.

  37. AOL spy agency :) by braddeicide · · Score: 2, Funny

    AOL logs your thumbprint if you use the thumbpad mouse :P And this microphone hole in my monitor is really sampling my breath or somthing.

  38. Re:Wrong Guy by Anonymous Coward · · Score: 2, Interesting

    Many banks outsource work, and that was apparently the case here. For example, smaller banks outsource their mainframe/minicomputer work to a company that specializes in that work. In this case, it only dealt with certain type of customers. Wells Fargo should have a standard contract with them that requires the outsource provider to meet certain standards of data security. Having a laptop that was stolen from a locked firm probably isn't something the company can protect against. Geeze, I hate this, I'm defending them and I don't agree with the policy, but that's the Government (OCC) for you.

  39. "You've got jail" by trance9 · · Score: 4, Insightful

    I bet the machine had some email software on it (Outlook?) that checked for new mail once an internet connection was available. The mail server logs would show the IP address.

    1. Re:"You've got jail" by Anonymous Coward · · Score: 5, Informative

      I work for WF but do not mean to represent my employer here. Your answer pretty close to right on. Our network logs ALL accesses, but of course denies access to our intranet from the internet at large. Ergo, any request in the access log (like when OutLook tries to connect to our mailserver, for example)that originate outside the intranet are automatically red-flagged. Requests to certain ports within our network are a more serious red-flag as it indicates someone is starting internal application from outside the intranet. IPs are logged, tracert to AOL, have FBI get AOL's access log to match temporary IP/date/time to originating login... not exactly rocket science, folks... There are other applications that as a matter of operation 'call home', so really the moral of the story is that it is a dumb idea to steal computers from work unless you really know how the computer is configured.

    2. Re:"You've got jail" by grolschie · · Score: 2, Funny

      To the pc thief: fdisk is your friend.

  40. Moral of the story... by artemis67 · · Score: 2, Insightful

    Set your ISP account to remember your password on your laptop; it's your best chance of catching a thief.

  41. no warrant needed by js7a · · Score: 4, Interesting

    Fred sets his laptop up to log into AOL with a default account and password. The crook seals the laptop. Fred calls AOL asking what ANI-reported telephone number his account has logged in on since the theft. AOL tells Fred the phone number. Fred reports the number to the cops. The cops get reverse directory information from the phone company (without a warrant unless the number is unlisted.) The cops ask Fred to ask AOL to inform the cops upon the next login. The crook logs in again. AOL calls the cops. The phone numbers match. Cops bust down Crook's door without a warrant because they have knowledge that a crime is taking place. The crook is busted.

    1. Re:no warrant needed by js7a · · Score: 2, Informative
      It's Fred's account. No law prevents AOL from telling Fred what number his account has logged in from.

      I used to work as 3rd-level tech support at an American ISP, and I'd guess at AOL it is probably policy to divulge ANI phone numbers upon request when an account is reported compromised, as long as the caller can recite their credit card number or some other form of verbal ID. I bet AOL helps owners and cops find at least dozens of stolen laptops each year this way.

    2. Re:no warrant needed by jrumney · · Score: 3, Interesting

      Its his account. I'm not American either, but in Europe, companies aren't just allowed, they are obliged to give you all information they hold about you, which in the case of an account which only you are legitimately allowed to log into should include the last phone number you dialed in from.

  42. Re:sed -e s/threw/through/g your_post by PReDiToR · · Score: 3, Informative

    Its ok to point out the mistake, IMO, but FGS, tell him what he is doing wrong.

    If he never took the time to do highschool, is he even going to bother looking up why you advised him to change the word?

    Grandparent:
    Threw is the past tense (means you already did it) of throw, as in PReD threw a brick at the parent.

    Through means to pass between the inner restrictions of something, as in go through a tunnel.

    No, that's OK, don't mod me up +5 informative, I don't need the Karma, but all donations are gratefully accepted.

    --

    Do not meddle in the affairs of geeks for they are subtle and quick to anger
  43. 99% clueless techie-wannabees by Anonymous Coward · · Score: 4, Interesting
    First, hat's off to all who don't know and say so, or simply state it. It's OK if you don't know your NIC's vendor ID/prefix by heart, or if you can't dissect the IP header without a reference.
    Really.

    To the rest: Offering complete goofball theory after complete goofball theory, briefly resting only to scream 'violation of privacy' then going back and suggesting another goofball theory impresses nobody. CPUID/NIC MAC/Windows/Office/[you-name-it] identifers or serial numbers are not immediately accesssible just because you have a PPP sesion going over your modem. If a phone-home feature was installed, then fine, but that's a completely different story.

    Another hilarious example was the the default-route theory, which someone suggested as a 'dead giveaway' to the feds. Hello!? Even if the routing table was accessible, routes associated with a NIC wouldn't be *in* the table unless the NIC was active, and the setting would only be visible in the registry, not typically accessible to the world, nor routinely queried by an ISP. And never mind the statistical probability that a corporate NIC is configured for DHCP, thus it wouldn't have a default route to begin with.

    I simply can't believe the amount of idiotic pseudo-techies posting and feeling BIG because they could incorrectly apply page 254 of the MSCE prep guide to formulate a crackpot theory.

    Bleeeeeeeeeeeechhhh.

    1. Re:99% clueless techie-wannabees by drakyri · · Score: 2, Funny

      No, no, no, it's on page 255 of the MSCE prep guide.

      D'oh.

  44. It isn't that simple. by AtOMiCNebula · · Score: 2, Insightful
    * Thief tries AOL account found on stolen computer.
    He didn't use the AOL account on the stolen computer. He used his own AOL account. That's why people are concerned.
  45. How about this? by 3.5+stripes · · Score: 4, Informative

    Known stolen AOL account + phone number recorded by any ISP (radius does it by default) + call to phone comany by FBI = physical location.

    No magic.

    --


    He tried to kill me with a forklift!
  46. Re:Password protected? by cybrthng · · Score: 3, Informative

    Not so easy as pulling out batteries on laptops.

    If you lose the CMOS/Bios password you usually have to RMA the laptop back for a new bios (unless you can find it and solder or replace it yourself). Thus requiring receipt or tracking of serial numbers of which any big company can cross reference against service contracts.

  47. Resetting/deleting WinXP admin pass takes seconds by horza · · Score: 4, Informative

    I downloaded onto floppy disc the program here and had reset the admin password on my Win XP box within seconds. Never seen anything so simple in my life. Though others recommend LC4 which also works.

    Phillip.

  48. way off topic by kayen_telva · · Score: 2, Interesting

    okay, since this discussion has gone haywire, I may as well ask an off topic (kinda) question. Lots of people are mentioning that you can use dynamic dns or special software to alert you to where your stolen laptop is. But it seems they all require you to allow the thief to completely log into your system. w00t ??!! I have THREE passwords to get to a desktop on my Linux laptop. BIOS, LILO, user. So Im screwed right ??? If I want some theft security I have to give up my data and day to day security ?? anybody know solutions ??

  49. Cookies by Radical+Rad · · Score: 2, Troll

    I'd bet AOL and its "partners" use cookies to track users and target ads. If the former owners give the FBI their account info such as an AOL account name then they should be able to pick up the cookie trail and follow the ip address to the phone line.

  50. Stolen mac call home by craw · · Score: 2, Interesting

    Here's an article about how someone got back his sister's stolen mac using Timbuktu and help from usenet.

  51. MAC Addresses changeable by XiChimos · · Score: 2, Informative

    Don't you guys realize that MAC addresses can be changed? It is fairly easy to do with software, but extremely hard to do directly to the hardware.

    If you guys really want to know how the government does the forensics, read "Computer Forensics: Incident Response Essentials" by Kruse and Heiser. Well written book that is easy to read and teaches you a lot about this type of stuff and also analyzing machines.

    It is easier to read the book than prove that Big Brother is out to get you.

  52. more reason to discount the Yahoo/Reuters version by spiritraveller · · Score: 2, Insightful
    Investigators traced the computer to Krastof when he logged onto his own America Online account at home through one of the stolen computers, White said. That enabled authorities to connect the computer's Internet Protocol address, a number that identifies a computer on the Internet, to Krastof's home address through his AOL account, White said.

    Apparently, someone thinks that the IP address is constant. That's probably why the reporter misparaphrased (is that a word?) Sgt. White.

    Whoever wrote the story just plain bungled it.

  53. Re:Not spyware. The story is much simpler than tha by _Sprocket_ · · Score: 5, Informative
    An even better quote from another source reads:

    Investigators knew where to look for the gear not because of unusually intrepid sleuthing but because Krastof allegedly used the computer to log on to an AOL account belonging to the system's owner, Peter Gascoyne.

    Seems Reuters screwed up on the facts.
  54. IBM Thinkpad by BigFire · · Score: 2, Informative

    When I was buying my IBM Thinkpad, it came with a feature of calling home, should the machine be stolen. The call home mechanism is build in, and cannot be removed. What it requires is a subscription fee to activate the feature, sort of like LoJack for laptop.

    For the people with sensative information, it's bitter price that must be pay.

  55. Re:Oh really? by IM6100 · · Score: 2, Insightful

    No, I think he's referring to the other stuff from 1984, namely that the government can and does retract all printed newspapers and books and updates the history written in them at will.

    Honestly, if people are going to rant about ever-closer dystopian futures, why not look a little deeper. The society of 'orgy porgy' infantilism that Aldous Huxley warned against in Brave New World is far closer in our 'sexually liberated' society. Then again, all the knobs rant about coming from that book is testtube babies.

    The way High School teachers who forcefeed little snippets of Orwell and Huxley ignore the obvious anti-Stalinism in Orwell's work and the anti-cultural-infantilism in Huxley's work, one wonders if they are simply stupid or if it's a deliberate attempt to blunt the thrust of those works by corrupting the message.

    --
    A Good Intro to NetBS
  56. Not a scary Big Brother scenario by This+Is+Ridiculous · · Score: 2, Interesting
    Makes you wonder what sort of hooks the FBI has into AOL or other ISPs and what hardware identification is being transmitted at login.
    If you actually read the article, nothing untoward happened.

    Probably, Wells Fargo reported to AOL that computers with those accounts on them had been stolen--perhaps simply to keep them from buying anything on company money or anything. When AOL noticed the login, they notified the FBI, who used normal techniques to get the account information.

    This is not a scary Big Brother scenario; rather, it's a great model for how corporations and government can and should cooperate to fight crime. Does anyone here really think that AOL acted improperly by giving them the address of a computer and identity thief?

    --
    Hey, you try to find an open nick these days!
  57. No news here by Awptimus+Prime · · Score: 2, Interesting

    Back when I worked in the abuse department for a leading ISP, this was a daily thing. Why's it news? Beats me..

    The dial-up equipment at ISPs keep a log on hand of the numbers you've connected from. The investigators get a warrant for this information, you email it to them, case closed.

  58. Speaking of stupid computer theives... by MadAnthony02 · · Score: 2, Interesting

    The security guys where I work are fond of this story. We had someone steal a couple of college owned computers, and aparently resold one of them to a student halfway across the country. The computer had Norton Antivirus Corporate Edition configured to run as "managed" -ie it gets it's definitions of our servers instead of symantec's. Our network guys got suspicious when they noticed trafic on one of our NAV servers coming from several states away - turned out that the computer theif never changed the antivirus settings before selling it and it was trying to get virus definitions from us.

  59. NO, he used owners AOL account. by babazaroni · · Score: 4, Informative

    http://www.sfgate.com/cgi-bin/article.cgi?file=/ne ws/archive/2003/11/26/financial1853EST0113.DTL

  60. Re:Not that I steal laptops but.... by sik+puppy · · Score: 2, Interesting

    that won't do it. Many major firms have custom bios installed.

    The laptop checks via the internet to see if its id (serial# ?) is on the stolen list. If it is it self-destructs.

    Some friends who used to work for a major silicon valley firm said this was done at their place of employment.

    --
    The first thing we do, let's kill all the lawyers. Shakespeare, Henry VI, Part 2, Act 4, Scene 2
  61. CALM DOWN!!!! by clickster · · Score: 3, Interesting

    http://www.crime-research.org/news/2003/11/Mess270 2.html Check the above article. They say he logged into AN account registered on that computer. It could have been that he logged onto the Wells Fargo guy's account (with password saved). After all, he is a data thief, and not a very smart one apparently. If the FBI had AOL watching that guy's account, then they could have simply traced the IP Address. No big deal...if that's the case. It would help if the articles would be little more specific.

    --
    If you mod me down, I shall become less powerful than you could possibly imagine.
  62. The Freedom of Information Act by NeoMoose · · Score: 2, Interesting

    Is the FBI refusing to divulge how they found out that he was on one of the stolen computers? Because if so that is a direct violation of the Freedom of Information Act. I sure as hell want to know if my computer transmits some form of identification information when I log in to my ISP.

    What I am willing to bet that it really is though, without reading, is that the serial number of the computer led to the serial number of the nic, whether it be modem or ethernet, and then the mac address could probably be identified. Just my guess.

    I'd be more interested in thoughts on the FoI Act thing though.

  63. This joke is a repeat post... by bonch · · Score: 2

    ...of the byline in this very article that michael posted. Come on, moderators.

  64. I think the media got it wrong ... by jopet · · Score: 2, Informative

    this looks as if the thief was simply attempting to log into the account of the *original owner*, which was preconfigured on the stolen laptop. Of course this is easily detectable and easy to trace back.

  65. The lesson here by Lord+Kano · · Score: 2, Insightful

    If you're going to rip off hardware from a large, powerful, incluential company like WF, make sure that you wipe the HD, toss the PCMCIA NICs and start from scratch.

    LK

    --
    "Hi. This is my friend, Jack Shit, and you don't know him." - Lord Kano