Slashdot Mirror


Alternative Browsers Impede Investigations

rbochan writes "Allegations in an article over at CNET propose that alternate browsers such as Firefox and Opera impede law enforcement and investigation efforts because they "use different structures, files and naming conventions for the data that investigators are after", which can "cause trouble for examiners.""

25 of 720 comments (clear)

  1. It's *not* rocket science, guys... by TripMaster+Monkey · · Score: 5, Insightful

    This is one of the dumbest articles I've read in a while...

    From TFA:
    Internet Explorer hides nothing from police and other investigators who examine PCs to discover which sites the user has visited.
    Implying that 'alternate browsers' such as Firefox and Opera, 'hide' data? Shenanigans! These other browsers don't 'hide' anything...you just have to know where to look.

    Also from TFA:
    These programs use different structures, files and naming conventions for the data that investigators are after. And files are in a different location on the hard drive, which can cause trouble for examiners.
    You can't be serious. If it's this easy to thwart the authorities, maybe I should tender my resume.
    God help these 'professionals' if a suspect's computer happens to run Linux...which brings up a disturbing thought...is the presence of a 'non-standard' browser or OS now going to be 'suspicious' to investigators, because they can't seem to penetrate its 'arcane secrets'?
    --
    ____

    ~ |rip/\/\aster /\/\onkey

    1. Re:It's *not* rocket science, guys... by DrEldarion · · Score: 5, Funny

      Oh come on, it's nearly impossible to find the URL history! Ctrl-H is a very, very complex cracking method.

    2. Re:It's *not* rocket science, guys... by KiloByte · · Score: 5, Funny

      Actually, FireFox Deer Park (pre-1.1) which I am using right now has a right-in-your-face menu item to remove this kind of data. Those bad evil criminals don't even have to dig through the options to purge the evidence for their wrongdoings. Clearly, this browser must be a work of the devil and should be banned.

      --
      The creatures outside looked from Alt-Right to Antifa; but already it was impossible to say which was which.
    3. Re:It's *not* rocket science, guys... by EvilMonkeySlayer · · Score: 5, Informative

      If you're using windows (2000/XP Professional), right click on the directory you want to use encryption. Then select Properties, on the general tab click on Advanced and tick Encrypt contents to secure data.
      There you go, transparent encrypted directory.
      Also, Truecrypt is capable of encrypting stuff too.

    4. Re:It's *not* rocket science, guys... by BJZQ8 · · Score: 5, Interesting

      This is NOT a joke. I have dealt with some state police "computer forensics" people that were little more than a rookie cop with a "Computer Forensics for Dummies" book under their arm. It was THAT bad. They used undelete utilities and such to get a file off of a ZIP disk. Wowee. They are given virtually unlimited budgets and permission to buy practically any computer item, all in the name of security...but you can't change the fact that they are LEJA majors, not CS majors.

    5. Re:It's *not* rocket science, guys... by Florian+Weimer · · Score: 5, Informative

      Oh come on, it's nearly impossible to find the URL history! Ctrl-H is a very, very complex cracking method.

      Digital forensics is performed offline. You don't run the browser software to read its history.

      However, I fail to see how this would create problems for law enforcement. Most of the interesting data is readily available. And the data formats haven't changed that much since the days when Netscape was the dominant browser.

    6. Re:It's *not* rocket science, guys... by Anonymous Coward · · Score: 5, Funny

      In related news, police are complaining that not all criminals conduct their affairs in American Standard English.

      "It's an outrage! Why do people insist on impeding our efforts to be an all-seeing eye?"

    7. Re:It's *not* rocket science, guys... by RetroGeek · · Score: 5, Insightful

      There you go, transparent encrypted directory

      Which means it is transparent to the logged in user, which means it is transparent to the virus/ trojan horse/ spyware.

      And your point?

      --

      - - - - - - - - - - -
      I am a programmer. I am paid to produce syntax not grammar. Deal with it.
    8. Re:It's *not* rocket science, guys... by Shads · · Score: 5, Funny

      Sgt.Smith: "Damnit Jones, firefox. Another criminal goes free."
      Lt.Jones: "You you know Smith, I sometimes wonder if we just were competant with computers if we could well, you know, understand basic computer forensics instead of relying on software to do it for us?"
      Sgt.Smith: "Shutup Jones, theres a way we do things here, it's the microsoft way, all other ways are abhorant and methods of the terrorists."
      Lt.Jones: "Good call Smith!"

      *sigh* It's only sad because it could be true. Police forces need to hire security professionals and train them to be computer forensics. Not hire police officers and rely on them to learn the ins and outs of computer security.

      --
      Shadus
    9. Re:It's *not* rocket science, guys... by Total_Wimp · · Score: 5, Insightful

      It is dumb because software isn't to be designed with 'criminal investigator usability' as a design consideration.

      But I wish more software was designed with leaving a small or non-existant trail as a design consideration.

      When I speak on the phone, none of it get's recorded unless someone makes a special effort to do so. I would hope my computing experience could be the same.

      And I really hate the idea that a bunch of you people are thinking I'm some kind of major criminal for wanting it that way. If you happen to be one of the ones that think I should be happy to have everything logged, then please set up a web cam in your bedroom and tape everything that happens. After all, there really isn't any chance of it falling into the wrong hands and law enforcement might need to check those tapes to make sure you're not snorting coke in there. Cops are good people and none of them will laugh about what you're doing witht that banana. I promise.

      TW

    10. Re:It's *not* rocket science, guys... by stryc9 · · Score: 5, Funny
      hahahaha.... lol

      I found this out really quick after the SO moved in. Right after she went to check the website of her university which starts with a 'C' and the first link that pops into the autocomplete bar is Cumfiesta.

      I just bought her a computer of her own.

      --
      www.madeofwinandawesome.com
    11. Re:It's *not* rocket science, guys... by zerblat · · Score: 5, Interesting

      The problem is that Mozilla uses Mork to store the history, and Mork databases are more or less impossible to extract usable data from. So you don't really have much of a choice ;)

      --
      Please alter my pants as fashion dictates.
    12. Re:It's *not* rocket science, guys... by k12linux · · Score: 5, Informative

      Yep, you're right zerblat. I went to search.cpan.org and did a search for Mork. And I have to agree law inforcement couldn't possibly come up with a perl prog like this one:

      ------------
      #!/usr/bin/perl -w

      use File::Mork;

      my $mork = File::Mork->new('history.dat', verbose=> 1)
          || die $File::Mork::ERROR."\n";

      foreach my $entry ($mork->entries) {
            while (my($key,$val) = each %$entry) {
                  print "$key = $val\n";
            }
            print "\n";
      }

      ------------
      BTW, I do realize that your post was sarcastic... as is this one.

      Works perfectly if run in the same directory as history.dat and produces output like:

      ID = 388D
      URL = http://www.google.com/
      Hostname = google.com
      LastVisitDate = 1125064549
      FirstVisitDate = 1125064549
      Name = Google

      It should be left to guru perl coders making $500,000/yr or more to do fancy things like convert timestamps to dates.

      I guess it's a good thing that there are no tools available for Windows that auto-clear IE history, cookies or cache files! What would law enforcement do??

  2. Dear god no! by Rei · · Score: 5, Insightful

    Heaven forbid that they have to learn to deal with a different file layout. I mean, it's not like these are supposed to be skilled professionals practicing their trade here...

    --
    sed "s/SJW.*$/... never mind. I was about to say something stupid, and also, I'm a troglodyte./Ig"
  3. In other news... secret hideouts by Anonymous Coward · · Score: 5, Funny

    In other news, bad guys hide in secret hideouts, which makes it hard for the Police to do their job.

  4. Professional white-hat script kiddies by Kelson · · Score: 5, Insightful

    It sounds like a lot of the people doing this kind of investgation aren't actually computer experts, but using pre-packaged software or following a list of directions someone has tailored for IE.

    Effectively, they're professional script kiddies working for the common good instead of against it.

    The lesson? Training. You wouldn't put a detective in the morgue and hand him a scalpel, and you wouldn't drop him in a science lab. You'd hire a coroner, you'd hire someone trained in forensic science. If you're going to search someone's computer for evidence, hire an expert or train someone to become an expert.

  5. Um, Duh? by NorbMan · · Score: 5, Interesting
    From TFA:
    Firefox and Opera store information on typed URLs in a different file than IE does, and the files are somewhat tough to decipher

    You would think since Firefox is open-source, it would be a trivial matter to determine the format of the cache files by examining the source code.

  6. I laughed by Approaching.sanity · · Score: 5, Funny

    And then I realized that they were serious.

    Now I weep for them.

    --
    RTFA again for the best results.
  7. Totally hose 'em up... by JackTripper · · Score: 5, Funny

    ...Firefox... on Linux! "Find what they've been browsing? Hell, we can't even find C: !"

  8. It's not the software . . . by crimguy · · Score: 5, Informative

    As a criminal defense attorney specializing in computer crimes, I can say authoritatively that the investigators are typically poorly trained. Most that I have dealt with are not IT or CS degree holders. In fact, the norm is for it to be a police officer who has taken a 2 week course in Encase, nothing more. Their knowledge of operating systems is lacking to say the least. Of course, this can result in some poor schmuck being convicted for something he didn't do, both because the cops don't know any better, and the juries - who typically take the word of the police as gospel down here in Arizona, know even less and rely on the uninformed testimony of law enforcement.

  9. "you want to frustrate law enforcement, use a Mac" by Anonymous Coward · · Score: 5, Interesting

    http://www.theregister.co.uk/2004/01/28/a_visit_fr om_the_fbi/

    A visit from the FBI
    By Scott Granneman, SecurityFocus
    Published Wednesday 28th January 2004 13:05 GMT

              [snip]

    I teach technology classes at Washington University in St. Louis, a fact that I mentioned in a column from 22 October 2003 titled, "Joe Average User Is In Trouble". In that column, I talked about the fact that most ordinary computer users have no idea about what security means. They don't practice secure computing because they don't understand what that means. After that column came out, I received a lot of email. One of those emails was from Dave Thomas, former chief of computer intrusion investigations at FBI headquarters, and current Assistant Special Agent in Charge of the St. Louis Division of the FBI.

    Dave had this to say: "I have spent a considerable amount in the computer underground and have seen many ways in which clever individuals trick unsuspecting users. I don't think most people have a clue just how bad things are." He then offered to come speak to my students about his experiences.

    I did what I think most people would do: I emailed Dave back immediately and we set up a date for his visit to my class.

    It's not every day that I have an FBI agent who's also a computer security expert come speak to my class, so I invited other students and friends to come hear him speak. On the night of Dave's talk, we had a nice cross-section of students, friends, and associates in the desks of my room, several of them "computer people," most not.

    Dave arrived and set his laptop up, an IBM ThinkPad A31. He didn't connect to the Internet - too dangerous, and against regulations, if I recall - but instead ran his presentation software using movies and videos where others would have actually gone online to demonstrate their points. While he was getting everything ready, I took a look at the first FBI agent I could remember meeting in person.

              [snip]

    Dave had some surprises up his sleeve as well. You'll remember that I said he was using a ThinkPad (running Windows!). I asked him about that, and he told us that many of the computer security folks back at FBI HQ use Macs running OS X, since those machines can do just about anything: run software for Mac, Unix, or Windows, using either a GUI or the command line. And they're secure out of the box. In the field, however, they don't have as much money to spend, so they have to stretch their dollars by buying WinTel-based hardware. Are you listening, Apple? The FBI wants to buy your stuff. Talk to them!

    Dave also had a great quotation for us: "If you're a bad guy and you want to frustrate law enforcement, use a Mac." Basically, police and government agencies know what to do with seized Windows machines. They can recover whatever information they want, with tools that they've used countless times. The same holds true, but to a lesser degree, for Unix-based machines. But Macs evidently stymie most law enforcement personnel. They just don't know how to recover data on them. So what do they do? By and large, law enforcement personnel in American end up sending impounded Macs needing data recovery to the acknowledged North American Mac experts: the Royal Canadian Mounted Police. Evidently the Mounties have built up a knowledge and technique for Mac forensics that is second to none.

              [snip]

  10. Another article with the same logic by baryon351 · · Score: 5, Interesting

    It's the silliest thing I've read about non-IE browsers, and how they're BAD since I read this one.

  11. In a related story ... by khasim · · Score: 5, Funny

    ... homicide investigators admitted they were stumped when a murderer used an aluminum bat to bludgeon his victim to death rather than the standard lead pipe.

    Said an officer who wished to remain anonymous: "We're not even sure there was a murder without some trace of lead at the scene. A bullet ... traces from a pipe ... lead is what makes it a crime scene."

  12. Ummm - it's not offline by grahamsz · · Score: 5, Interesting

    In some states, parole for sex offenders can require that they don't look at pornography.

    Their parole office will drop by periodically and check their PC. They have some sort of forensic software that does this.

    I've heard some jurisdictions require that you only run Windows on your computer as a condition of your parole. Logically this translates to going back to prison for owning a knoppix cd.

    There simply aren't the resources to train all parole officers in computer forensics, expose them to various obscure operating systems, or to perform regular offline analysis of offenders hard drives.

    The resources are (probably) there for big cases, but when there are probably close to half a million sex offenders on parole - it's just not practical.

  13. Bwahaha. If your a sex offender you HAVE to use M$ by crovira · · Score: 5, Funny

    I love it. Think of the advertising potential.

    Male voiceover

    "Microsoft, used by 100% of all sex offenders. Its not only the law, it their punishment."

    Oh! I just fell off my chair.

    --
    MSBPodcast.com The opinions expressed here are my own. If you don't like 'em... Think up your own stuff.