Slashdot Mirror


Germany Searches Credit Cards For Child Porn Payments

narramissic writes "According to an ITworld article, police in the German state of Sachsen-Anhalt have teamed with credit card companies to sift through the transactions of over 22 million customers looking for those who may have purchased child pornography online. To date they have identified 322 suspects." From the article: "German data privacy laws allow police to ask financial institutions to provide data about individuals but only if the investigators meet certain conditions, including a concrete suspicion of illegal behavior and narrowly defined search criteria, according to Johann Bizer, deputy director of the Independent Center for Privacy Protection... In the case under investigation, police were aware of a child pornography Web site outside of Germany that was attracting users inside the country. And they asked the credit-card companies to conduct a database search narrowed to three criteria: a specific amount of money, a specific time period and a specific receiver account."

283 comments

  1. Now, by "sift through" ... by Mateo_LeFou · · Score: 4, Funny

    Do they mean "grep"?

    --
    My turnips listen for the soft cry of your love
    1. Re:Now, by "sift through" ... by mingot · · Score: 4, Insightful

      Uh, doubt it. Perhaps "query".

    2. Re:Now, by "sift through" ... by Anonymous Coward · · Score: 0

      I'd expect a database to be more responsive to SQL queries.

    3. Re:Now, by "sift through" ... by gstoddart · · Score: 1
      Do they mean "grep"?

      No, they mean sift through. Probably using database queries and things more complicated than grep. Banks don't keep all of their information in flat text files to be grep'ed for content -- they use way cooler toys. :-P
      --
      Lost at C:>. Found at C.
    4. Re:Now, by "sift through" ... by Anonymous Coward · · Score: 0
      Do they mean "grep"?

      No. "grope"...
    5. Re:Now, by "sift through" ... by NineNine · · Score: 5, Funny

      Another person who thinks that databases are the same as flat files... Really, that just makes me want to stab you in the eyeball with a rusty spoon. "Grep" is to an RDBMS as orange juice is to an M-1 Abrahams tank. Completely and utterly unrelated.

    6. Re:Now, by "sift through" ... by neuro.slug · · Score: 4, Funny

      Of course they don't use flat text... they've moved on to using one big XML file.

    7. Re:Now, by "sift through" ... by Anonymous Coward · · Score: 0

      Banks don't keep all of their information in flat text files to be grep'ed for content -- they use way cooler toys.

      Stop the presses. Thank you Ric Romero

    8. Re:Now, by "sift through" ... by maxume · · Score: 1

      Query?

      --
      Nerd rage is the funniest rage.
    9. Re:Now, by "sift through" ... by NineNine · · Score: 1

      Yeah, a "query" makes more sense. Or, you could say "data mining", "running some big, natsy joins", or "subselects" or whatever. Software people who don't know the difference between flat files and databases who do things like "SELECT * FROM TABLENAME" make me ill. I've seen database ignorance kill several software projects before (ie: People not familiar with how to properly use a database do things like SELECT * and don't use stored procedures, then wonder why their performance is so bad).

    10. Re:Now, by "sift through" ... by Anonymous Coward · · Score: 0

      Unless we are talking about DBGrep. I've seen about half-dozen database "grep" equivalents over the years.

    11. Re:Now, by "sift through" ... by mhokie · · Score: 1

      Maybe Ctrl-F.. then type "pederast"..?

    12. Re:Now, by "sift through" ... by CastrTroy · · Score: 1

      Is there anyway to use stored procedures and still have database portability? Is there any good way to properly manager thousands of stored procedures, with source control, in an easy to define manner? I realize that stored procedures have their place, but I never quite understood using them for just about every query as some projects do. It puts too much logic in non-portable code in the database, and it's hard to group together the stored procedures into a logic manner like you can do with object oriented classes and functions.

      --

      Anthropic principle: We see the universe the way it is because if it were different we would not be here to see it.
    13. Re:Now, by "sift through" ... by AlexCV · · Score: 2, Informative

      Funnily enough, the AT&T Daytona RDBMS is basically implemented at gzipped (or similar) compressed text files searched with grep. Of course there's some differences with normal grep: queries are compiled to regexp and then compiled to an optimized C program representing the optimal grep-like tool for the specific query. It is then parallelized on an HP superdome.

      Also, most RDBMS implement linear search which is grep like. The use of the LIKE statement is even closer to grep and let's not forget that many RDBMS like PostgreSQL support using regexp in lieu of LIKE statements...

    14. Re:Now, by "sift through" ... by jahudabudy · · Score: 1

      Ha! I just recently had one of our programmers submit a request for some back-end modifications to support some changes being made to our web-app. I shit you not, in her mock-up of how she thought the tables should look, she had a table named "tblTableName". It almost made sense in the context of the app, but I still got a pretty big laugh out of it.

      --
      ...sometimes, in order to hurt someone very badly, you have to tell that person terrible lies. - PA
    15. Re:Now, by "sift through" ... by mxs · · Score: 1

      SELECT * FROM bad_analogies WHERE content LIKE '%grep%'

      You were saying ?

    16. Re:Now, by "sift through" ... by darkstar949 · · Score: 4, Funny

      To be fair, you can make orange juice with an M-1 Abrahams, although the technique is a bit of overkill.

    17. Re:Now, by "sift through" ... by Talchas · · Score: 1

      Are stored procs really any less portable than the rest of SQL?

      --
      As the Americans learned so painfully in Earth's final century,free flow of information is the only safeguard against...
    18. Re:Now, by "sift through" ... by Sylver+Dragon · · Score: 1

      Is there anyway to use stored procedures and still have database portability?

      Usually stored procedures can be dumped to DDL along with the rest of it.

      Is there any good way to properly manager thousands of stored procedures, with source control, in an easy to define manner?

      One option I have seen is to use Visual Source Safe, obviously this is a Microsoft solution and assumes Microsoft's SQL server, but I'm willing to bet that a little bit of digging will turn up something similar for Oracle. And in the spirit of OSS, if you're using MySQL, you can just roll your own. ;)

      I realize that stored procedures have their place, but I never quite understood using them for just about every query as some projects do. It puts too much logic in non-portable code in the database, and it's hard to group together the stored procedures into a logic manner like you can do with object oriented classes and functions.

      Each way has it's pro's and con's. Also, people tend to see things differently depending upon where they are coming from. My guess is that you are a software developer and don't spend a lot of time with databases. As such, it's not surprising for you to want everything to happen in code. When you run into DB people, you'll find that a lot of them want everything to happen inside the RDBMS and for the code to stay the hell away from the tables. Neither one will always be the right way to do it, you'll end up needing to blend the two.

      --
      Necessity is the mother of invention.
      Laziness is the father.
    19. Re:Now, by "sift through" ... by DiarrhoeaChaChaCha · · Score: 1

      I just tried. Your post keeps popping up.

    20. Re:Now, by "sift through" ... by Sylver+Dragon · · Score: 1

      This type of thing would make me laugh, but for the fact that one of the primary database applications I support has this sort of silliness built in. ESRI's ArcSDE 9.1 in the MSSQL version uses a table named SDE_table_registry. The primary purpose of this table is to keep track of the type of data stored in the other tables. While this does make some sense in that the data in a geodatabase is usually classified as either point, vector or raster it would be nice if they would key off of the object_id (sysObjects or sys.objects) instead of actually listing the table name in SDE_table_registry, and doing so with an nvarchar(13). Also, every row has the current database name as an field as well.

      --
      Necessity is the mother of invention.
      Laziness is the father.
    21. Re:Now, by "sift through" ... by serialdogma · · Score: 3, Funny

      Wow, is there a new W3C standard for flagging XML-logged credit card transactions as child porn related?

    22. Re:Now, by "sift through" ... by rainman_bc · · Score: 1

      lol a funny aside, I work with a python dude here that thinks that databases suck and processing csv files is much better because he can do things sooooooo much faster by loading everything into memory.

      His last set of code was trying to do about 10 million summaries of about 20 million records over and over...

      I had to remind him that databases generally aren't stored in memory and if CSV parsing was so awesome in Python then no one in their right mind would deploy a database at all...

      --
      09 F9 11 02 9D 74 E3 5B D8 41 56 C5 63 56 88 C0
    23. Re:Now, by "sift through" ... by Feyr · · Score: 1

      you laugh, but one system we're testing for bank cards management is a big mix of proprietary binary DBs (read, binary files), ill-defined oracle tablespace, and huge ass XML files. the config files for the various utilies are sometimes XML, sometimes in-house flat files (just like unix), there's 3 different services that do basicly the same task, and "exchange" data using either binary files or xml (depending on what they're doing at the moment). to top it off, some of the utilities are written in java, and others in what appear to be C or C++

      im not going to name the system (wouldn't want to break an NDA by mistake :) but it's not pretty

    24. Re:Now, by "sift through" ... by diskis · · Score: 1

      "conduct a database search narrowed to three criteria: a specific amount of money, a specific time period and a specific receiver account."

      You probably are a consultant if you need data mining or big, nasty joins to dig out information based on those criteria.

    25. Re:Now, by "sift through" ... by AmericanInKiev · · Score: 1

      Databases specialize in three things:

      1. Creating fast indexes of data so you don't need to store everything in memory, and

      2. Finding only the data you need so the network/harddrive/processor doesn't need to handle the entire dataset for every query.

      3. Locking stuff up so x can't see it.

      If your dataset will fit in memory and your application is single-user, you may not need a database (yet), and are free to brag (ignorantly) about how python is faster.

      AIK

    26. Re:Now, by "sift through" ... by neuro.slug · · Score: 1

      Yeah, but you have to declare its namespace to use it:

      xmlns:pr0n="http://www.neverland-valley.com/"

      Enjoy!

    27. Re:Now, by "sift through" ... by Anonymous Coward · · Score: 0

      While your comment is comical it does have a underlying problem.

      A flat-file can absolutely be a database, particularly if it has an express structure to it. Not all databases are relational and it's even possible to represent a relational database in a text file. Just because it's not binary doesn't mean that it's not a database.

  2. WHY?! by Virak · · Score: 4, Insightful

    Why the hell do people pay for *any* porn, and especially why would you pay for porn that's *already illegal*?!

    People make my head hurt.

    1. Re:WHY?! by Anonymous Coward · · Score: 0

      A better question would be why are people paying for illegal porn with amazingly trackable things like credit cards?

    2. Re:WHY?! by InsaneProcessor · · Score: 1

      Criminals of this ilk tend to be stupid.

      --

      Athiesm is a religion like not collecting stamps is a hobby.
    3. Re:WHY?! by gstoddart · · Score: 2
      Why the hell do people pay for *any* porn, and especially why would you pay for porn that's *already illegal*?!

      The same reason people pay for anything: perceived value of having it. Free porn is getting tougher to find on the net. I have no idea how difficult it is to find kiddie porn, nor do I want to know, cause that's just nasty. But, if you're looking for it, you're probably willing to pay for it.

      And, I'm sure most of the places selling such things promise discrete billing, much like *any* adult themed place does. Instead of being billed as "Ass Stretchers Butt Plugs: $136.99", they bill something nicer like "Happy Valley Novelties and Gifts: $136.99".

      Unfortunately, the people in the market for such things aren't really stopping to think about the legality of it (or, maybe it's from a place where it's illegal, I'm sure there are such places). They're thinking more about how the hell to get some of it.

      Lots of people all over the world are looking to buy things that are otherwise illegal, and there's usually someone trying to make money selling it to you. The fact that someone is willing to spend money on something which is illegal shouldn't really be that big of a surprise.

      Cheers
      --
      Lost at C:>. Found at C.
    4. Re:WHY?! by computational+super · · Score: 2, Insightful

      You're assuming they're using their own credit cards... remember, we're talking about people who are already commiting a crime to begin with. How'd you like to have your credit card # harvested and then find out about it by having the Gestapo kick in your door? Yikes.

      --
      Proud neuron in the Slashdot hivemind since 2002.
    5. Re:WHY?! by thePowerOfGrayskull · · Score: 1

      The same reason people pay for anything: perceived value of having it. Free porn is getting tougher to find on the net. I have no idea how difficult it is to find kiddie porn, nor do I want to know, cause that's just nasty. But, if you're looking for it, you're probably willing to pay for it.

      I, uh, hear that there's still tons of it on usenet.

    6. Re:WHY?! by Anonymous Coward · · Score: 0

      Free porn is getting tougher to find on the net.

      Huh? Try 10$/mo at Easynews and alt.binaries.erotica.divx or cheggit.net (120k+ members) or any one of a ton of other places, any one of which will give you more porn than you could possibly have time to watch. They're so busy posting the constant stream of new dvds released there's hardly ever time for reposts.

    7. Re:WHY?! by trashbat · · Score: 2, Interesting
      Huh? Try 10$/mo at Easynews and alt.binaries.erotica.divx or cheggit.net (120k+ members) or any one of a ton of other places, any one of which will give you more porn than you could possibly have time to watch. They're so busy posting the constant stream of new dvds released there's hardly ever time for reposts.
      Yup, can vouch for Easynews after using it for the past 7-8 years. The (still-hidden for some reason) Easynews global search is pretty amazing - just enter your keywords, filter it on movies and select output style as 'Hybrid 1'. Bob's your mother's brother. Even supports regex! :-) Automatically assembles the contents of some RAR files too, try including 'autounrar' in your search term, or the PAR viewer for files that aren't automatically assembled. Also like the SSL option for downloading stuff from work (disclaimer: no, I don't work for them, just a very satisfied customer).

      It's also worth signing up to the Ijsklontje forums if you have a decent binary newsfeed, just to see what's on there at the moment.
    8. Re:WHY?! by elucido · · Score: 1

      Why the hell do people pay for *any* porn, and especially why would you pay for porn that's *already illegal*?!
       
      People make my head hurt. Because they are pedophiles, they don't have any sense.

      I think this is the best idea so far to catch pedophiles, and it also destroys the kiddie porn industry.

      Now, when you ask why would people pay for porn, because obviously the good porn costs money, duh. If you ask why would pedophiles pay for porn? Because they think kiddie porn is good. The fact that kiddie porn is illegal does not stop pedpophiles from making it, buying it, selling it. However if you start arresting everyone involved in the kiddie porn industry then you might get somewhere.
    9. Re:WHY?! by urbanradar · · Score: 1
      You're assuming they're using their own credit cards... remember, we're talking about people who are already commiting a crime to begin with. How'd you like to have your credit card # harvested and then find out about it by having the Gestapo kick in your door? Yikes.
      The Gestapo hasn't been around for over 61 years. I'm not sure if this should count as an invocation of Godwin...
    10. Re:WHY?! by 1u3hr · · Score: 1
      Why the hell do people pay for *any* porn, and especially why would you pay for porn that's *already illegal*?!

      Presumably convenience. Illegal porn is harder to find, and being illegal, it isn't shared as indiscriminately as the usual softcore stuff. But personally I would hesitate to give my credit card number to someone selling illegal porn for many reasons, this story being one of them.

    11. Re:WHY?! by Nevyn · · Score: 1

      That's right, it's a well known fact that the price of illegal things tends to be lower. You know, like how prohibition made alcohol so cheap.

      --
      ustr: Managed string API with ave. 44% overhead over strdup(), for 0-20B
    12. Re:WHY?! by Anonymous Coward · · Score: 0

      To quote the wisdom of Carlin, criminals are like any other type of people: a few winners, and a whole lot of losers. I have no doubt there are those who are interested in acquiring illegal porn and do so knowing how not to get caught. Then there are those who purchase such material using their own credit cards. These people obviously deserve to be reaped from the gene pool.

    13. Re:WHY?! by drsquare · · Score: 1

      Free porn is generally low quality, i.e. short, grainy videos that are just adverts for the full thing (which costs money).

    14. Re:WHY?! by Lord+Bitman · · Score: 1

      Free porn.. getting tougher to find..?!
      On what time scale??

      --
      -- 'The' Lord and Master Bitman On High, Master Of All
  3. Darwin by NineNine · · Score: 5, Insightful

    Well, I gotta say that somebody using a credit card to buy kiddie porn is a fine example of natural selection. Honestly, I had no idea that there were people that stupid out there. I mean really, if you're going to do something that is universally both illegal and reviled, why in the hell would you use a credit card?!?! Hell, I don't even use a credit card to buy incense at my local head shop!

    1. Re:Darwin by Anonymous Coward · · Score: 0

      Because internet helps people feel anonymous even though they aren't. Much like how the guy who cut you off in traffic doesn't realize he's tagged and identifiable. And if pedophiles are enboldened with this false sense of security and get themselves caught, that's fine with me.

      What I find strange with this as news is that I thought this sort of thing was already routinely done in civilized nations.

    2. Re:Darwin by NineNine · · Score: 0, Troll

      What I find strange with this as news is that I thought this sort of thing was already routinely done in civilized nations.

      Personally, I've never heard of any law enforcement agency that was smart enough to use email, never mind search through credit card databases. Think about this... how much Internet traffic is some kind of fraud... spam, or stock pumping or account stealing, etc? 50%? Think about how many arrests you see in the news. All I ever hear about are some 15 kids caught with Kazaa running, and *very* rarely, the occasional bot network controller.

      Law enforcement agencies, are, by definition, not made up of smart, tech-saavy people. They're made up of people that were the not-so-smart bullies in grade school.

    3. Re:Darwin by geoffspear · · Score: 0, Troll

      You clearly have no idea what "natural selection" means. I swear the Intelligent Design nutjobs probably understand Darwin better than you do.

      --
      Don't blame me; I'm never given mod points.
    4. Re:Darwin by Hrodvitnir · · Score: 5, Interesting

      Who says they use their own credit card?

      --
      "There are more important things than stopping terrorism. Upholding the Constitution is one of them." - Ars Forumer.
    5. Re:Darwin by arevos · · Score: 4, Informative

      You clearly have no idea what "natural selection" means.

      No, I think the OP is broadly correct in his use of the term. Being jailed and presumably being put on some German equivalent of the sex offenders list does not improve one's reproductive chances.

    6. Re:Darwin by NineNine · · Score: 1

      Actually, I have a BS in Biology with an emphasis in genetics. I did gel electrophoresis for 3 years. I know exactly what it means. I'm just making a point I can't really believe that there would be people stupid enough to do this.

    7. Re:Darwin by fafalone · · Score: 2, Insightful

      Child porn sites are typically hidden from the general public, so you need to be a little more experienced with the net to find them. So the people who do find them are smart enough to use stolen ccs to pay for it, I'd bet 90% of the time.

    8. Re:Darwin by ObsessiveMathsFreak · · Score: 2, Insightful
      I mean really, if you're going to do something that is universally both illegal and reviled, why in the hell would you use a credit card?!?!
      An even better question is why if you were someone offerring something illegal and reviled would you accept payment from something as traceable as a credit card transaction?

      The conspiracy theorist in me suspects all may not be as it seems here, but the realist in me understands that both buyers and sellers are mercifully stupid.
      --
      May the Maths Be with you!
    9. Re:Darwin by treeves · · Score: 1

      Doing gel electrophoresis for three years also does not improve one's reproductive chances, I'd guess.

      --
      ...the future crusty old bastards are already drinking the Kool-Aid.
    10. Re:Darwin by Kevin+DeGraaf · · Score: 1

      Law enforcement agencies, are, by definition, not made up of smart, tech-saavy people. They're made up of people that were the not-so-smart bullies in grade school.

      Law, n.: In general, a rule of being or of conduct, established by an authority able to enforce its will; a controlling regulation; the mode or order according to which an agent or a power acts.

      Enforcement, n.: The act of enforcing; compulsion.

      Agency, n.: The faculty of acting or of exerting power; the state of being in action; action; instrumentality.

      Perhaps you meant "savvy", not "saavy".

      Please demonstrate which of these definitions excludes "smart, tech-savvy people".

      Please back up your assertion that LEAs are comprised of former bullies.

      --
      We have more to fear from the bungling of the incompetent than from the machinations of the wicked.
    11. Re:Darwin by Opportunist · · Score: 1

      The definition does not. It's just perception of reality.

      I mean, the definition of politician doesn't include crook either, but then, the reality...

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    12. Re:Darwin by LittleBigLui · · Score: 1
      An even better question is why if you were someone offerring something illegal and reviled would you accept payment from something as traceable as a credit card transaction?


      AFAIK they didn't catch the people receiving the money and only have the address of a mailbox somewhere in south asia (not sure, had my brain on powersave when watching the news apparently). The producers/sellers probably don't give a shit about their customers and apparently aren't as easily caught.

      Also, stupidity might be a factor.
      --
      Free as in mason.
    13. Re:Darwin by HeadlessNotAHorseman · · Score: 0

      But if your sexual attraction to children is strong enough that you are willing to pay for kiddie porn, then you are not likely going to reproduce anyway.

      --
      I like my coffee the way I like my women - roasted and ground up into little tiny pieces.
    14. Re:Darwin by Anonymous Coward · · Score: 1, Interesting

      Indeed. I just got done sending in an unauthorized transactions affidavit to my credit card company this afternoon.

      The unauthorized charges? $900 in $200s and $500 to the PLA.

      Yup, *the* PLA...oh, I need to explain?

      PLA -- Is that the Palestinian group?

      Or PLA, the phone phreaking group?

      Now, I'm told PLA was actually a *sewing* store of all things. Now, I do plenty of things, I think that Bleach character with the bow and arrow who name now alludes me is pretty cool, but sewing, stitchery, and quilting I do not.

      Nor do I phone hack or commit credit fraud. Or support possible terrorist, liberation groups.

      But this crap makes me wonder. Who is using your card today, and how many of the 322 correlated to lost cards, stolen cards, identity theft, etc.? Would I have been in "the system" had this been a search for terrorist ties?

      Additionally, there are different standards being applied here. Why are the 322 people suspect, versus a credit card system that does CRAP "identity" protection? Are individuals targetted, while large corporations who look away from charge fraud, held to a lighter standard? I ask because my card company with the PLA charges NEVER QUESTIONED the transactions, but whenever *I* had made a transaction on that card in the past over $200, I had to call in to allow the authorization through, even at places I'd shopped at before (Newegg). But the credit company not allow allowed *3* to go through, all were for high dollar amounts, and all were the same freakin' day, and all perfect large sum amounts ($200, $500, $200, not $197.89, $501.60, $200.51).

      I highly doubt the German authorities will be prosecuting the credit card company that actually DID lend credit and payouts to a child porn site. The 322 individuals so far are only suspects.

      Oh, btw, what were the safeguards in place that the suspects didn't have recurring, automatic payments setup to pay off their cards if they were busy and didn't bother to look at a recent statement? My card company allows me to refute payments up to 90 days from the statement date. Makes me wonder what else could be "screened" and "setup" to make a nice rolling base of cases for the prosecution to point to come election time about how "strong they are against crime."

    15. Re:Darwin by Macthorpe · · Score: 1

      Now, I do plenty of things, I think that Bleach character with the bow and arrow who name now alludes me is pretty cool, but sewing, stitchery, and quilting I do not.

      I'm going to lose several points off my 'cool' license for this (if I had any in the first place), but his name is Ishida Uryuu.

      --
      "It does not do to leave a live dragon out of your calculations, if you live near him." - Tolkien
    16. Re:Darwin by Anonymous Coward · · Score: 0

      Well, to say it first, I am from Germany and this issue was all over in the news here...
      Having said this, I wouldn't say the people who payed for this aren't really stupid. The majority of them - according to the state police - are well-suited, single men. Most of them with university degrees, too... I think they were (luckily) unaware of the power the police has...

  4. Godwin's Law by Anonymous Coward · · Score: 1, Funny

    Just to check, would mentioning parallels to the Nazi era be considered invoking Goodwin's Law?

    1. Re:Godwin's Law by tha_mink · · Score: 1

      I'll just assume you meant Godwin's Law.

      --
      You'll have that sometimes...
    2. Re:Godwin's Law by arth1 · · Score: 1
      Just to check, would mentioning parallels to the Nazi era be considered invoking Goodwin's Law?

      The whole thread is already Godwined:

      "Child Abuser" and any other Nom De Terror of the time or culture in which a discussion takes place is equivalent to and interchangable with "Nazi" and "Hitler".
      -- Art's cocidil to Godwin's Law

    3. Re:Godwin's Law by wguy00 · · Score: 1

      I think you just invoked it.

    4. Re:Godwin's Law by mattsucks · · Score: 1

      As the bass player in a band named Goodwin, I heartily encourage invoking our name when and wherever possible. ESPECIALLY in places that draw lots of traffic ;-)

  5. Moo by Chacham · · Score: 0, Troll

    We're in a sad state of affairs. Germany here is no longer protecting its own citizens, it's preventing it's citizens from viewing things online elsewhere. Who are they protecting?

    The children are likely not German, so they're not protecting the german children.
    The servers are not in Germany, so they are not policing they're own internet.
    They are telling people what they cannot do.

    What is the reason for banning viewing these things? The usual reason is protecting children from being exploited, but one, these are not German children, and two, there is no proof they were even exploited.

    They are literally telling people what they cannot do in their own homes even when it doesn't hurt anyone.

    I know, i know, thinkofthechildren.

    It's only a matter of time before children are carted away and a young age to be protected from the evils of the world. The Calvinists were just a couple centuries ahead of their time.

    1. Re:Moo by zappepcs · · Score: 2, Interesting

      I have to agree with your sentiment... to a point. The government IMO has no business telling anyone what to think or fantasize about. On the other hand, it is likely that children are being exploited in one way or another. The existence of the childporn website, and the fact that German citizens are paying for this only helps promote its existence.

      I also feel that spending the money working with the appropriate foreign government to arrest the purveyors of the child porn for sale is the better course of action.
      Without buyers, it would not be up for sale. Without sellers it would not be purchased. Neither options stops child exploitation and pornography, so I think it is more effective to stop those who are selling it.

      They may have the buyers on an 'importing child pornography' type charge, but I still don't think that is wrong... at least not the act of buying. Yes, I know there are those that will disagree. I'm more or less all for the police just posting a list of those who bought the child porn and let society takes its normal course of false morality and prejudice against them. Lets spend the money stopping the source of the child porn rather than try to choke off a small portion of their income and punish people that more than likely represent no harm to society at large.

      Perhaps, in a lenient society, the list of buyers might be used to offer them counseling? That's probably a bit optimistic though.

      With all the medical discoveries regarding genetic contribution to other human circumstances, perhaps they will one day find a cure for pedophiles? Oh, wait, we should probably cure other non-normal traits too... homosexuality, people who like country and western music, and things like that. Yes, sarcasm, but this whole thought police thing is moronic.

    2. Re:Moo by Anonymous Coward · · Score: 0

      And if those people are getting off on kiddie porn and eventually planning to make their perverted fantasies a reality, chances are they would try things out on nearby children. Nearby German children.

      To suggest that information made available to a citizenry from outside a country has no impact is a little shortsighted.

    3. Re:Moo by sorrill · · Score: 1

      Hmmmm, let's put every single father on the suspect list. You know, they have access to children, even german children, and they might even see them naked.

    4. Re:Moo by Anonymous Coward · · Score: 0

      I very much disagree. For child porn where actual photos of actual children are taken, the people who buy it should be dealt with. That is enabling economically the molestation of children by creating a market for such things.

      I do think, though, that if it's completely virtually generated (ie, no children harmed), that's much murkier, and I'm inclined to think that should be legal, for reasons of civil liberty. Yeah, the people who consume such aren't exactly upstanding pillars of society, but if no one real is getting hurt...

    5. Re:Moo by eiddam · · Score: 0

      "They are literally telling people what they cannot do in their own homes even when it doesn't hurt anyone." they tell you that you can't smoke weed either. in your own home. even when it doesn't hurt anyone. well, my government does, anyway.

    6. Re:Moo by dgm3574 · · Score: 2, Insightful

      Decrease the demand for illicit content and hopefully less supply is created to meet the diminished demand.

    7. Re:Moo by Lehk228 · · Score: 2, Insightful

      S&W already invented a cure for p[a]edophilia

      --
      Snowden and Manning are heroes.
    8. Re:Moo by Ozan · · Score: 5, Insightful

      We're in a sad state of affairs. Germany here is no longer protecting its own citizens, it's preventing it's citizens from viewing things online elsewhere. Who are they protecting?

      They are protecting the basic principle of Article 1 of the German constitution AKA Basic Law AKA Grundgesetz.

      The children are likely not German, so they're not protecting the german children.

      What is your point? That foreign children are less to be protected from abuse? The first sentence of Article 1 of the Grundgesetz reads "Human dignity shall be inviolable.", not "German dignity shall be inviolable."

      The servers are not in Germany, so they are not policing they're own internet.

      Again, what is your point? That Germans shall be able to behave in illegal activities as long as these are taking place on foreign servers?

      They are telling people what they cannot do.

      Which is basicly encouraging child abuse by exerting demand for child pornography.

      What is the reason for banning viewing these things? The usual reason is protecting children from being exploited, but one, these are not German children, and two, there is no proof they were even exploited.

      Regarding the children not being German read what I wrote above. Regarding point two: It is common sense that children can not give informed consent to pornography, so child pornography is in its nature exploiting children, wether they are being forced or by other pressure.

      They are literally telling people what they cannot do in their own homes even when it doesn't hurt anyone.

      If you think that children are not hurt by degrading appearances of themselves in pictures or films, or even worse, by being photographed or filmed while being subjected to degrading or painful or injuring acts by others you seriously need to take a reality check.

      I know, i know, thinkofthechildren.

      Yeah, little people with extra need of protection. Think about it.

      It's only a matter of time before children are carted away and a young age to be protected from the evils of the world.

      There is no need to that. Instead, there are laws and law enforcement doing that job.

      And crap like this is getting modded "interesting", now even the mods are trolling.

    9. Re:Moo by LittleBigLui · · Score: 1
      The children are likely not German, so they're not protecting the german children.

      So if I drive a few miles to the Austrian-German border (I'm Austrian, btw.), whip out my RPG launcher and lob a few rockets over to the Piefkes, it would be wrong of Austrian law enforcement to stop me and/or prosecute me? After all, I'm not hurting any Austrians, am I?

      They are telling people what they cannot do.

      That's the whole point of having laws.

      What is the reason for banning viewing these things?


      First of all, AFAIK, viewing isn't banned, it's possession that's banned.

      Of course for someone to view/possess child porn, someone else will have to produce it, which - ignoring the issue of "virtual" child porn - presumably involves raping children, and maybe a little kidnapping beforehand (unless the parents are involved), murdering afterwards (if they don't die from the damage done by the raping anyways).

      One might reasonably argue that for viewing child porn, assuming you can't be bothered to produce it yourself, you first have to obtain child porn - directly or indirectly - from someone who produces said child porn for you and is willing to give it to you.

      Humans being selfish beasts (especially humans selfish enough to rape children for their own fun/profit), they won't exactly pay you to take it, it might even be the other way round (i.e. you pay THEM to sell you the child porn, in lawyerese also called "buying it from them").

      Now, the funny thing is, money can be used to buy stuff. People need some stuff (e.g. food), and want some other stuff (e.g. a pimped out ride) so people usually do shit to get money to buy said stuff.

      Now if there are people that offer money for child porn (the "buying" thingamajig described above), those who are offered the money might think about the shit they can buy with said money and might decide that raping some kids might be a reasonable effort to get said money to buy said shit.

      This is called an "economic incentive", and by buying child porn you create such an "economic incentive" to produce child porn.

      Now some cultures see raping children as something that should be avoided if possible, even threatening sanctions againts people who act against that convention. Said cultures might conclude that it would be reasonable to threaten sanctions againts creating economic incentives to rape children, too.

      They are literally telling people what they cannot do in their own homes even when it doesn't hurt anyone.

      They also put a guy in prison for cutting off another guy's dick, eating it, killing the other guy and putting him in the freezer to eat later, even though the other guy actually wanted the first guy to do exactly that. Not only that, they also have gun control laws, drug laws and a metric shitload of other laws that tell people what they cannot do, anywhere on german soil including their own homes, even if it doesn't hurt anyone. Damn fascists.
      --
      Free as in mason.
    10. Re:Moo by Faylone · · Score: 1

      Okay, how would you suggest to decrease the demand for child porn? I can only think of two potential methods, curing those who would seek CP, and executing them. Both have plenty of problems.

    11. Re:Moo by Anonymous Coward · · Score: 0

      I don't understand how cracking down on buyers or sellers of child pornography is solving the problem.

      I guess I'm naive, but I was under this impression that there are a lot more destructive forces in the lives of a lot more children. While society likes to pretend that it is making a difference in that arena, we're mostly just trying to sleep better at night.

      Rather than these bullshit crusades, how about actually demanding a right to some minimal set of opportunity, care, ... well needs (cf. Abraham Maslow)... for every single child that is born -- and actually implementing it? Is that too much to ask?

      Maybe it is.

  6. Done correctly by MobyDisk · · Score: 5, Insightful
    I bet this is big news to Americans: a government that can responsibly deter crime without infringing on the rights of the citizens. How did those darn Germans do it? Some sort of miraculous new technology? Maybe they've invented a porno-detector? Let's take a look!

    only if the investigators meet certain conditions, including a concrete suspicion of illegal behavior and narrowly defined search criteria Sounds like a warrant.

    The database search was conducted by the credit-card companies, not the German police, which have no direct access to the financial records of people registered in Germany...They must have a concrete suspicion and provide very exact and limited search criteria. Sounds like responsible conduct.

    Bizer warned that credit-card data monitoring could lead to mistrust, especially if customers aren't properly informed. Sounds like an understanding of government, law, and proper oversight.

    Amazing!

    1. Re:Done correctly by smooth+wombat · · Score: 1, Insightful
      a government that can responsibly deter crime without infringing on the rights of the citizens.


      Considering the chimp-in-chief considers the Constitution a "goddamned piece of paper" while the Attorney General considers it "an outdated document", you don't think he really cares about infringing the rights of citizens, do you?

      --
      We will bankrupt ourselves in the vain search for absolute security. -- Dwight D. Eisenhower
    2. Re:Done correctly by duerra · · Score: 1
      Sounds like responsible conduct.

      Sounds to me like a fishing expedition.

      Hope those Germans haven't been purchasing music on AllOfMp3....
    3. Re:Done correctly by Anonymous Coward · · Score: 0

      This search would probably not be issued a warrant in the US. This would require that the government have probably cause to search 22 million peoples records. From the article, it seems the government only knew that some citizens were paying for kiddie porn.

    4. Re:Done correctly by camperdave · · Score: 5, Insightful

      How did those darn Germans do it?

      Hmm... The population of Germany is roughly 82 million, and they are going to "sift through the transactions of over 22 million customers". It seems to me that those darn Germans are going to do it by considering half the adult population as suspects.

      --
      When our name is on the back of your car, we're behind you all the way!
    5. Re:Done correctly by pla · · Score: 1

      Sounds like responsible conduct

      ...Right up until you consider that only an idiot would have bought something like that with his own credit card...

      I strongly suspect this will end up with 322 people remembering they lost their card a few months back - And I'd feel inclined to believe most of them, though no doubt the courts will put them through the ringer over this.

    6. Re:Done correctly by dunkelfalke · · Score: 1

      used to be, but not anymore. this fucking terrorist hysteria has eroded the rights of fellow germans pretty much and the current lawmakers don't care about the constitution and even if an unconstitutional law has been removed by the german supreme court the lawmakers try to introduce the same one again and again, hoping that noone bothers this time.

      --
      Conservatism: The fear that somewhere, somehow, someone you think is your inferior is being treated as your equal.
    7. Re:Done correctly by ingmar · · Score: 1

      Warrant? No, they didn't bother. They just "asked nicely", and Visa & Co let them have the necessary information, ie who payed a certain amount to a certain recevier during a given period in the summer of 2006.

      To obtain that information, they needed to go through the records of roughly 30 or so million credit card holders. Reasonable? I don't think so.

    8. Re:Done correctly by jo42 · · Score: 1

      Best start practicing your "Heil Bush!" and handing over "Your Papers!".

    9. Re:Done correctly by kevin_conaway · · Score: 1
      Considering the chimp-in-chief considers the Constitution a "goddamned piece of paper" while the Attorney General considers it "an outdated document", you don't think he really cares about infringing the rights of citizens, do you?

      Because capitol hill blue is the bastion of unbiased and accurate reporting. From your linked articles (which by the way, are the same article, just parrotted by different blogs):

      ...I've heard from two White House sources who claim they heard from others present in the meeting that the President of the United States called the Constitution "a goddamned piece of paper."...

      Really? Two "sources" who heard from some other guy that the president and Gonzalez said these things?

      I know you really want to believe it but try to roast these guys for the things they've actually done (and there are plenty) rather than spreading FUD.

    10. Re:Done correctly by vakuona · · Score: 1

      Gasp!!! All adult German men!!!

    11. Re:Done correctly by dfenstrate · · Score: 2, Interesting

      Given the behavoir and expansion of the government since FDR's "New Deal" (some would say the civil war) and the War on Drugs, this is hardly an attitude uique to the current Administration.

      Our elected officials in all three of the branches of the government have been disregarding the original intent and meaning of the constitution for decades.

      Congress abuses the "interstate commerce" and "general welfare" parts of the constitution such that nothing is outside their power.

      The executive does whatever the hell it can get away with, and it's alot considering how the lazy legislature unconstitionally delegates lawmaking to various departments (EPA, FCC, etc). Further, Congress hasn't officially declared war since WW2 (Gulf War 1 might be an exception)- which is their duty- but has been happy to authorize the President to do what he likes and pay for things that look like Wars countless times.

      Finally, the Judicial Branch was cowed by FDR and has countless times written tomes of rationalization justifying how the constitution doesn't mean what it says.

      The federal government has been out of line at all levels for generations.

      And you know what?

      We let it.

      Don't cry how the current Administration is so evil because it's been doing what government officials have done for eons. With a little bit of reflection and some serious study of the constitution and it's original meanings you could find several programs you probably support of dubious constitionality.

      But I doubt you'll do that because you have already rationalized the abuses you support and re-examing them would hurt.

      A professor at the University of Edinborough (circa 1787) named Alexander Tyler figured it out. Here's the eight stages of democracy he observed:

      1. From bondage to spiritual faith;

      2. From spiritual faith to great courage;

      3. From courage to liberty;

      4. From liberty to abundance;

      5. From abundance to complacency;

      6. From complacency to apathy;

      7. From apathy to dependence;

      8. From dependence back into bondage.


      He figured this cycle would take 200 years or so. You can argue where along the line we (USA) are but you can see the man has a point. It's pretty clear that a few European countries are solidly at step 7.

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    12. Re:Done correctly by Jaysyn · · Score: 1

      ...and here is some nice sand for you to stick your head in...

      --
      There is a war going on for your mind.
    13. Re:Done correctly by gustafsd · · Score: 1

      You didn't get it did you? The police will NOT be notified if germans have been paying for music on allofmp3 since its the creditcard companies that do the searches and not the police. Germany is actually one of the worlds best countries when it comes to privacy. http://www.privacyinternational.org/article.shtml? cmd%5B347%5D=x-347-545223

    14. Re:Done correctly by duerra · · Score: 1
      You didn't get it did you? The police will NOT be notified if germans have been paying for music on allofmp3 since its the creditcard companies that do the searches and not the police. Germany is actually one of the worlds best countries when it comes to privacy. http://www.privacyinternational.org/article.shtml? cmd%5B347%5D=x-347-545223 [privacyinternational.org]
      Actually, I don't think you got me. My point is that if the German government can do broad searches to find who has made transactions on a child porn site, they could just as easily do the same kind of broad requests to find out who has been "purchasing musical illegally".

      And as far as privacy goes, history is pointless in regards to new efforts such as this one. It doesn't take much to go from one of the best, to one of the worst.
    15. Re:Done correctly by stubear · · Score: 1

      You mean the same Germany that is stomping all over free speech by banning violent video games?

    16. Re:Done correctly by arth1 · · Score: 1
      I strongly suspect this will end up with 322 people remembering they lost their card a few months back - And I'd feel inclined to believe most of them, though no doubt the courts will put them through the ringer over this.


      And in the mean time, they will have their computer equipment confiscated (which will no doubt turn up some "illegal" material for some of the 322), and they will have an arrest record, and quite possibly lose their livelihood and family. No matter if cleared of the charges, they will be branded as child abusers for life by anyone who knows about the cases. Rationality goes out the window where children are concerned, and I doubt many parents would let someone who has ever been suspected of child porn take care of their children.
      Way to go.
    17. Re:Done correctly by Jeian · · Score: 1

      a government that can responsibly deter crime without infringing on the rights of the citizens.

      In Germany, it's illegal to deny the Holocaust or possess Nazi paraphernalia. I'm not saying that these are good things, but I hardly think it's accurate to hail Germany as a paragon of civil liberty.

    18. Re:Done correctly by Kjella · · Score: 3, Insightful

      Oh, for the love of...., would you get off it. They're searching for a specific amount, to a specific account in a specific time.

      SELECT * FROM transactions WHERE account_to = '4234534543254' AND amount = '19.95$' AND transaction_date BETWEEN '2005-12-31' AND '2006-06-31'

      It's not slam-dunk evidence, because they might have operated legal sites which also got paid to the same account, cards get stolen and so on. But if your card has been paying the same fee to the same account as a kiddie porn site during the same time, that's plenty grounds for reasonable suspicion. This isn't a fishing expedition any more than if they asked the DMV who owns a blue Audi A4 1995-model, and they ran the query against the whole DB. If they don't hit, they get squat. Sometimes the anti-law enforcement brigade on slashdot really get their panties in a bunch over nothing.

      --
      Live today, because you never know what tomorrow brings
    19. Re:Done correctly by nefertari · · Score: 1

      No, they checked every credit card account in germany. (Not the police, the credit card companies.)

      Credit cards are not as universal as in the US, but on the other hand our other money transaction schemes work quite good. Your employer puts your income directly on your "Girokonto" (the usual account for getting money and transferring it to other accounts), your landlord may withdraw the rent from your account (if you agree to this) and so on. Cheques are more or less not used.

    20. Re:Done correctly by DM9290 · · Score: 1

      "I bet this is big news to Americans: a government that can responsibly deter crime without infringing on the rights of the citizens. How did those darn Germans do it? Some sort of miraculous new technology? Maybe they've invented a porno-detector? Let's take a look!

      only if the investigators meet certain conditions, including a concrete suspicion of illegal behavior and narrowly defined search criteria

      --Sounds like a warrant."

      Without judicial oversight this is not a warrant.

      Moreover a warrant requires the judge to finally decide what the search cirteria are to be. In theory the judge is held to a higher standard and the evidence before a judge is part of the public record. Lastly a judge is required to be unbiased. Cops are not. Cops are always pro-prosecution.

      "The database search was conducted by the credit-card companies, not the German police, which have no direct access to the financial records of people registered in Germany...They must have a concrete suspicion and provide very exact and limited search criteria.

      --Sounds like responsible conduct."

      delegating police investigations to the private sector is responsible conduct?
      This is almost the very essence of irresponsible conduct. It may protect the financial company from intrusion. It certainly doesn't protect the public. It puts the public at more risk. At least the police are supposed to serve the public good. Private companies are supposed to serve their own good nothing else.

      "Bizer warned that credit-card data monitoring could lead to mistrust, especially if customers aren't properly informed.

      --Sounds like an understanding of government, law, and proper oversight.

      --Amazing!"

      Bizer didn't warn that the law required customers to be informed. It merely suggested that they ought to be.. presumably at the discretion of private parties.

      Where exactly do you see OVERSIGHT in this? Do you think the corporate sector should be overseeing the police?

      There is no oversight. the police suspect whoever they want and then a private company hands over the data.. great oversight.

      being a corrupt german cop has never been this good.

      Amazing indeed.

      --
      No one has a right to their *own* opinion. They have a right to the TRUTH.
    21. Re:Done correctly by Jesus_666 · · Score: 1

      You, sir, are either a troll or utterly uninformed.
      Let's see...

      - We have 22 million CC customers.
      - The police presented the CC companies with a warrant saying that the CC companies should check their databases for people who have bought from a specific site, since, as TFA explicitly stated the police isn't allowed to access the databases.
      - The CC companies scanned their databases and returned to the police those accounts that were used to buy from that specific site.

      Come on. I'm somewhat protective when it comes to my data, but there's no way that could have been conducted better. The fact that indeed databases containing 22 million perople were checked doesn't change the fact that the police didn't look at 22 million records of innocent people.

      Seriosly, how do you propose they should've done this, apart from "the police should not be allowed any access to customer databases under any circumstance"?

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    22. Re:Done correctly by camperdave · · Score: 1

      It depends on the search. If they searched account 4234534543254 and asked who fed into it, fine. If they searched every account and asked did you feed into 4234534543254, then that is fishy.

      --
      When our name is on the back of your car, we're behind you all the way!
    23. Re:Done correctly by LittleBigLui · · Score: 1
      Considering the chimp-in-chief considers the Constitution a "goddamned piece of paper" while the Attorney General considers it "an outdated document", you don't think he really cares about infringing the rights of citizens, do you?


      Shockingly enough, Germany doesn't even have a constitution.

      Well, okay, they do, they just don't call it one.
      --
      Free as in mason.
    24. Re:Done correctly by Anonymous Coward · · Score: 0

      Right, in Germany you can not deny the Holocaust or demand that jews should be send into the gas chambers, because it is considered offensive. In the US you can not sit on the beach and enjoy a bottle of wine, because drinking alkohol in public is somehow considered offensive. So every society has its limitations and drawbacks... ;)

    25. Re:Done correctly by Anonymous Coward · · Score: 0

      But the problem is, the website offering that stuff is outside Germany, and therefore outside their jurisdiction. They couldn't have legally looked into that account, so they had to do it the other way around.
      Considering how anal Germans are about data privacy in general, you can be pretty sure, that this was the best method available.

    26. Re:Done correctly by Qbertino · · Score: 1

      1. Free speech as in 'profanity prohibition' in the US?
      2. Politians (konservative mostly) are discussing the banning of extremly violent games that primarly simulate the killing of humanoids. Fair enough I'd say. What bugs me the most that Gunrage Clubs (Schüzenvereine) are not closed down to minors, allthough the last german massmurder school killing was conducted by a 16 year old hormone bundle who *legally* possesed a shotgun made for killing people and a 3 digit sum of ammo shells for it and legally kept it in his room! And politians in germany don't even give a shit. Robert Steinhäuser learned his killing skills in 'Action Shooting' lessons at his german gunclub and the politicians what to forbid 'Killer Games' and don't even mention 'Killer Clubs'. THAT is the biggest scandal.

      --
      We suffer more in our imagination than in reality. - Seneca
    27. Re:Done correctly by HomelessInLaJolla · · Score: 1

      > The CC companies scanned their databases

      Meaning some underpaid recent graduate was ordered to conduct the search. Who's making sure he didn't send copies of the search results to all of his buddies on IRC?

      --
      the NPG electrode was replaced with carbon blac
    28. Re:Done correctly by westlake · · Score: 1
      Our elected officials in all three of the branches of the government have been disregarding the original intent and meaning of the constitution for decades.

      The intent was to anchor the foundations of a government the Founders hoped would endure.

      There were differences from the beginning about how that government should evolve and grow. But plain common sense said that you cannot govern from the grave.

      The Founders deepest faith was in Checks and Balances. The world changes. Structure endures.

      Interstate Commerce took on the meaning it had to a commercial and industrial civilization that stretched across a continent, that drew on the resources of every race and kind. It could not be otherwise.

      the lazy legislature unconstitionally delegates lawmaking to various departments (EPA, FCC, etc).

      There is a useful distinction to be made between general legislation and rule-making under statutory authority and the leadership of the executive. It is a necessary distinction.

      The Congressman can not and ought not to be a narrow technical specialist.

    29. Re:Done correctly by Anonymous Coward · · Score: 0

      Cool, I didn't know BETWEEN was valid SQL! Thank you :)

    30. Re:Done correctly by Jesus_666 · · Score: 1

      Who's making sure that some random intern at Microsoft posts the source code of all MS projects on public FTP? How ever can any company do any business when it's clear that anyone in the organization can do anything and that even highly sensitive data that could easily cost the company billions if treated wrongly is always entrusted to the least trustworthy dork in the organization?

      Do you really think that the CC companies are letting someone access their customer database in a fashion like this without making sure that the data isn't misused? Those people aren't idiots and I do trust them to be smart enough not to randomly open themselves up to multi-million-Euro lawsuits as well as investigations which may cost them even more.

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    31. Re:Done correctly by Anonymous Coward · · Score: 0
      well, that's a new spin for the "narrowly-defined search criteria":

      select * from transactions
      where cust_age > 18 and cust_sex = "M" and cust_residency = "GERMANY";
    32. Re:Done correctly by Anonymous Coward · · Score: 0

      Meaning some underpaid recent graduate was ordered to conduct the search. Who's making sure he didn't send copies of the search results to all of his buddies on IRC?

      The same graduate who - as part of his job working at the CC company in the first place - ALREADY HAS access to that data.

    33. Re:Done correctly by dfenstrate · · Score: 1

      There were differences from the beginning about how that government should evolve and grow. But plain common sense said that you cannot govern from the grave.

      The Founders deepest faith was in Checks and Balances. The world changes. Structure endures.

      Interstate Commerce took on the meaning it had to a commercial and industrial civilization that stretched across a continent, that drew on the resources of every race and kind. It could not be otherwise.


      Of course you can't govern from the grave. That's why we have a method to change the constitution, one that we've used 26 times.

      The point is that the constitution either means what it originally meant, or it means nothing. When a document that was originally supposed to shackle the federal government is re-interpreted as desired or necessary then the function isn't being fulfilled.

      There are a few things that the federal government does that I think it proper for it to do, but are still unconstitutional. The right and honest thing to do would be to change the constitution to put such things legitimately under federal power. Sure, it's hard, but it's supposed to be.

      "You can't govern from the grave" is exactly the sort of rationalization that makes the constitution worthless. It's not governing from the grave, it's the standing supreme law of the United States of America.

      Every time you let a branch of the federal government ignore it for something you support, you make it all that much easier for them to toss the Constitution aside for things you hate. You can't pick and choose from it like the dollar menu at McDonald's. You either take it seriously or you don't.

      --
      Alcohol, Tobacco and Firearms should be the name of a store, not a government agency.
    34. Re:Done correctly by HomelessInLaJolla · · Score: 1

      Please. Express to me more of your naive ramblings.

      > Who's making sure that some random intern at Microsoft

      Where do you think zero-day exploits come from? Tips from the people actually working on the code. You are such a newb.

      > Those people aren't idiots

      Of course not. They know how to cover their butts. That does nothing to make sure it isn't happening.

      --
      the NPG electrode was replaced with carbon blac
    35. Re:Done correctly by Jesus_666 · · Score: 1

      I know I should stop feeding the trolls, but...

      Random interns at Microsoft don't have access to all source code of all Microsoft programs. Random people at CC companies don't have access to the full customer and transaction databases.

      Also, covering their asses means keeping it from happening. If any of that data ever got out and somebody noticed they'd be in massive problems.

      Besides, it's not like they specifically told their least trustworthy people to perform this search because the police asked. They will have used the same people they always use, so either the CC companies are inherently untrustworthy because they let anyone perform sensitive database queries or the queries they ran for the police didn't significantly increase the chance for a data leak.

      In case you want to answer that, yes indeed, all CC companies are run with the same amount of professionalism as a discussion on Slashdot, I'd like you to show me the corresponding numbers that indicate the high rate of data leaks among CC accounts. Of course there will have been a study about a problem as serious as that.

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    36. Re:Done correctly by HomelessInLaJolla · · Score: 1

      > don't have access to all source code of all Microsoft programs

      So?

      > Random people at CC companies don't have access to the full customer and transaction databases

      The secretary and the janitor don't--but the database jockey with the (supposed) security clearance does.

      > covering their asses means keeping it from happening

      Wow. You really are a newb. Tell another funny.

      > their least trustworthy people

      That's the funny thing about a security clearance. Once you have it you're automatically not in the set of "least trustworthy people". It doesn't guarantee any particular level of trustworthiness, though.

      > the CC companies are inherently untrustworthy

      I think you're finally catching on.

      > show me the corresponding numbers that indicate the high rate of data leaks among CC accounts

      We see articles at least weekly, in various newspapers and on Slashdot, of databases of millions and millions of records of customer data being stolen.

      --
      the NPG electrode was replaced with carbon blac
    37. Re:Done correctly by Jesus_666 · · Score: 1

      We see articles at least weekly, in various newspapers and on Slashdot, of databases of millions and millions of records of customer data being stolen.

      Actually I don't. Once every couple of months I see reports about such leaks, but those happen not only with CC companies.

      By the way, you still haven't explained how this relates to the topic. Why is the search they did for the police a bad thing exactly? Don't tell me that their database workers accessing the database is such a rare event that the police asking them to run a query significantly increases the chance of a data leak.

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    38. Re:Done correctly by gnasher719 · · Score: 1

      '' Actually, I don't think you got me. My point is that if the German government can do broad searches to find who has made transactions on a child porn site, they could just as easily do the same kind of broad requests to find out who has been "purchasing musical illegally". ''

      Actually, while purchasing child pornography is a crime, buying music is not a crime.

      Other posters have mentioned things like servers in foreign countries, children in foreign countries etc., which were all absolutely irrelevant because the act of purchasing child porn is in itself criminal. For allofmp3.com, the situation is different. Purchasing music on the internet is legal - otherwise iTunes couldn't sell in Germany. Even if it is copyright infringement, that is no crime. So all these things that were irrelevant for child porn are now highly relevant. It is absolutely unclear whether downloading from allofmp3.com is illegal at all. I doubt very much that the RIAA can complain about downloading russian music from allofmp3.com. There is no chance they would get a warrant against _all_ transactions to allofmp3.com, when it isn't even clear at all that they would indicate anything illegal.

    39. Re:Done correctly by westlake · · Score: 1
      When a document that was originally supposed to shackle the federal government is re-interpreted as desired or necessary then the function isn't being fulfilled.

      The Constitution established a strong federal government. It exists because of a visceral reaction to the failures of the Articles of Confederation.

      The debate within the Constitutional Convention was secret. It is a document rooted in compromise between minds as flexible as Franklin, as conflicted as Jefferson, as modern as Hamilton.

      The language is general. The language is eighteenth century. It cannot be read without "translation."

      The search for "original meaning and intent" is an exercise in futility. That debate was in full swing from the moment the text became public and will never be resolved.

  7. Scheisse! by Anonymous Coward · · Score: 5, Funny

    POLIZE) Sir, ve haff found zis gepayment vot is obviously for die kidipornen. Ve vill haff to ask you to commen mit us to die polizestation.

    MANN) Nein, nein, das ist nicht ein kidipornen! Dis ist die regular wholesome scheisse videos mit conzenting aldulten gefichen mit die turdenpoopen.

    POLIZE) Ach! Ve are mischtaken. Zo zorry for gewasten du timen, proud zitizen. Gutenhaben, unt enjoy die turdenpoopen!

    1. Re:Scheisse! by Anonymous Coward · · Score: 0

      This has been modded "flamebait" but it made me laugh aloud. Sorry, no mod points.

    2. Re:Scheisse! by WK1 · · Score: 0

      I a don't a speak a German. Could a someone a please a translate a for me? Italiana or Engleesh, please a? Especially a "gefichen mit die turdenpoopen."?

      P.S. Surprise. I don't really know Italian either. English please, if someone would not mind translating.

      P.P.S That was hilarious. Thank you AC.

    3. Re:Scheisse! by Anonymous Coward · · Score: 0

      I'm a native German...

      The only correct German words in this text are:
      die = the (female definite article)
      mit = with
      Mann = man
      nein = no
      das = the (genderless definite article)
      ist = is
      nicht = not
      ein = a (male or genderless indefinite article)
      Scheisse = shit (poster forgot to capitalize the noun)
      Videos = videos (poster forgot to capitalize the noun)
      Ach! = Oh!
      du = you (used when talking to a friend or a young person; when talking to stangers use "Sie" instead)

      I can only guess that by gefichen he meant Geficke und by turdenpoopen Koprophilie.

  8. Fine by me. by NNKK · · Score: 4, Insightful

    If the site were in-country with in-country bank accounts, the authorities would just search those records directly. This gets them the exact same information. No more, no less. The parameters are narrowly-defined, reasonable, and the activity in question clearly illegal. The risk to innocents is at least as low as going at it from the other direction (looking at the records on the receiving end).

    1. Re:Fine by me. by sorrill · · Score: 1

      Ok. They get results.

      This works.

      Why don't we use it to search for other crimes ?

      Maybe ... buying imported Playstations. You know, it is ilegal on some countries.

    2. Re:Fine by me. by Anonymous Coward · · Score: 0

      And let's not forget the people buying stolen credit card numbers with their own credit cards!

  9. Re:Darwin (award) by Anonymous Coward · · Score: 0

    I suppose we could put these people forward for a Darwin Award. After all, they will be locked up with the key thrown away, so they are out of the gene pool?

    Thinking saner thoughts, it is highly unlikely that these bills will prove that they have been buying child porn. It will only prove that they paid this company something. If some of the punters were really interested in goats in stockings hanging from chandeliers, it will be tough on them because they will still be charged and convicted with the rest.

    We had some of this in the UK. If a company is fingered for selling child porn (or anything the authorities think might be) and the authorities get hold of the billing data for that company, everyone they can get hold of goes down! Looking at what gets reported, it seems an interesting set of cases - you can't see what you're charged with and there is no way of responding to the police assertions.

    Much like the RIAA, in fact,

  10. I have paid for porn by Anonymous Coward · · Score: 5, Interesting

    I cant comment on why people pay for child porn as that is not my cup of tea but as for paying for porn in general, I have done so.

    Why, well first is convenience. I am busy and would rather be able to go to one website, enter in my search (usually redhead, teen and anal) and get the movies they have right there without having to sift through the results to see what is good. I feel my time is worth more then the money it costs to pay for the porn.

    The second is guaranteed quality. I never wonder if I am getting garbage resolution, a misnamed video, or some other piece of crap. That is why I pay, the company takes care of all that.

    The final reason is guaranteed download speed. I want my porn fast, regardless of how many other people are willing to share it.

    Also it is not illegal, I am supporting the "artists" by paying for it, and lets face it, these people are getting fucked all the time (pun intended).

    So there you do, those are the reason I have paid for porn.

    1. Re:I have paid for porn by fmobus · · Score: 3, Informative

      Y'know, there are already free (as in free beer) pr0n search engines.

    2. Re:I have paid for porn by __aajfby9338 · · Score: 5, Funny

      Why, well first is convenience. I am busy and would rather be able to go to one website, enter in my search (usually redhead, teen and anal) and get the movies they have right there without having to sift through the results to see what is good.

      I really wish there was a "-1 Too Informative" mod. :-)

    3. Re:I have paid for porn by Opportunist · · Score: 1

      I dunno if quality is different when you pay for it when what you pay for is illegal in the first place. I mean, what do you want to do, drag them to court? It's like dragging your dealer to court for selling you tea instead of weed.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    4. Re:I have paid for porn by Heir+Of+The+Mess · · Score: 1
      Y'know, there are already free (as in free beer) pr0n search engines.

      Oh no! why did you tell me that? Now I'm not going to get any work done this week.

      --
      Australian running a company that does C# / C++ / Java / SQL / Python / Mathematica
    5. Re:I have paid for porn by Anonymous Coward · · Score: 0

      Excuse me, we're talking about child porn here... I know that I would be horrified that my daughter would have to be involved in being exploited by child pornography, what kind of life would you want for your daughter (even if not now, the future)? I hope they nail the bastards, they make me sick.

    6. Re:I have paid for porn by Cervantes · · Score: 2, Funny

      As a fellow redhead/teen/anal enthusiast, I would like to take this opportunity to thank you for subsidizing the redhead/teen/anal porn market with your hard-earned money, so cheap bastards like me can continue to choose our time over our money, and download it for free.

      --
      If I knew the wedgies I gave you back in 6th grade would have resulted in this . . . I might have taken a moments pause.
    7. Re:I have paid for porn by Anonymous Coward · · Score: 0

      You sure would be surprised if your daughter (and consequently you) would be charged with child pornography creation and distribution after she posts her sexy pics on MySpace & co.

      I suggest you should keep her in a basement, away from internet, boys and phallic objects until she turns 25. Please think of the children.

    8. Re:I have paid for porn by Anonymous Coward · · Score: 0

      No problem man.

      Happy to keep the industry in business.

      As for time over money, a membership is $30 a month. If I spend more then 45 minutes a month of wasted time lookign for high quality porn then I have lost money.

      It is just plain easier.

    9. Re:I have paid for porn by Cervantes · · Score: 1

      I'll agree with you that it's worth it, but I find that too many pay sites these days just don't have enough content... and too many of them like to keep charging you your membership fees, even after you've said "Hey, I've seen all 5 pictures you have, I'm outta here"

      --
      If I knew the wedgies I gave you back in 6th grade would have resulted in this . . . I might have taken a moments pause.
    10. Re:I have paid for porn by identity0 · · Score: 1

      Oh crap, *I'm* a redheaded teen! *Please* tell me your search included the word "girl".

      If not... I'll give you some pix if you send your credit card # to...

  11. Thanks, you did society a service. by flaming+error · · Score: 3, Funny

    Let's do it again. Now please grep for donations to the ACLU...

  12. My card was stolen by Anonymous Coward · · Score: 2, Insightful

    I wonder how many cards will now be reported stolen

  13. Define "Broad" by 15Bit · · Score: 3, Insightful
    The article clearly states that "The police are not allowed to ask credit-card companies or banks to run a very broad database search". However, the search criteria "a specific amount of money, a specific time period and a specific receiver account" reads to me as "we know the subscription fee, bank account number and the date the website went up. Could you tell us about all the germans who paid that subscription amount to that bank account please". That sounds like a pretty broad search criteria to me.

    A specific search would be "We have sound suspicions that a bloke called Wolfgang has been accessing this list of kiddie porn websites. Could you provide us with a list of transactions Wolfgang has made to them please."

    1. Re:Define "Broad" by Bootvis · · Score: 1

      The quality of the 'narrowness' can be measured by the amount of false positives. If this number is low (0) then the search criteria are imo defined well because nobody innocent suffered. My guess is that in this case the number of false positves is _low_ . So job wel done, Siska!

      --
      Read, refresh, repeat.
    2. Re:Define "Broad" by bcattwoo · · Score: 2, Insightful

      A specific search would be "We have sound suspicions that a bloke called Wolfgang has been accessing this list of kiddie porn websites. Could you provide us with a list of transactions Wolfgang has made to them please."

      That's not a search at all though. That is just asking for Wolfgang's credit card statement, which could presumably just be done with a regular warrant given the sound suspicions. I don't understand how searching for records of people paying the subscription amount to a known kiddie porn purveyor during the time he was known to be in business could be construed as overly broad.

    3. Re:Define "Broad" by DancesWithBlowTorch · · Score: 1
      Actually, I think this search qualifies as "specific", because every single customer data set that was handed over to the authorities by the banks is highly suspicious of having commited a crime (consciously bying child pornography is a felony under German law). Of course, there's still the chance of fraudulent card use, but this can and will be checked during the court hearings that will follow.

      You see, to ask a question like yours,
      "We have sound suspicions that a bloke called Wolfgang has been accessing this list of kiddie porn websites. Could you provide us with a list of transactions Wolfgang has made to them please."
      would necessitate knowledge about someone's internet usage, which in turn would take a search of ISP databases to generate. Fortunately, the German police didn't (couldn't) do so: They just found out about this specific, obviously criminal, website and asked the banks: Tell us who are their customers. That's a far cry from sifting through millions of records for clues of illegal behaviour, as we have come to see a lot of lately in the wake of the "war on terror".

      The important bit is that the law enforcement agencies never got their hands on the records of the 22 Million innocent people (including mine, as I own a German credit card). I don't mind the fact that the banks did a search on their own database. They do so all the time to prevent fraud (which is good for me, the customer). As long as my private data remains with the bank that I trust my money on, I'm fine.
    4. Re:Define "Broad" by Anonymous Coward · · Score: 0

      Could you tell us about all the germans who paid that subscription amount to that bank account please". That sounds like a pretty broad search criteria to me.

      Er, are you being sarcastic? "Please tell us who paid $100 to Mr Kiddy Porn Merchant in the past month" is a broad search? Get any more specific and you wouldn't need to ask for anything in the first place.

    5. Re:Define "Broad" by Kjella · · Score: 1

      Um, in what dimension is asking for people that *have* paid less specific than asking for people that *might* have paid? (Or their cards paid, anyway)

      --
      Live today, because you never know what tomorrow brings
    6. Re:Define "Broad" by Anonymous Coward · · Score: 0

      I don't understand how searching for records of people paying the subscription amount to a known kiddie porn purveyor during the time he was known to be in business could be construed as overly broad.

      Ok, so then if we want to have police contact your ISP, and run hashcodes on all files transported and match those against all known hashcodes of child porn, that's ok too? It not like you could, you know, get child porn spam, or child porn banner ads, or child porn delivered as a 1x1 pixel by someone who has a bone to pick with you, or child porn viewed accidently like a goatse pic on Slashdot, or even have hash collisions. No, none of that could happen any more than a credit card number could be stolen and used by someone other than the account holder. It's foolproof.

      It damn well should be foolproof, because we all know you don't have to be convicted of anything related to child porn. You only have to stand accused to have your reputation destroyed and your career ended. What the police should be doing is working on busting the child pornographer. You know, the person that's doing the abuse, and recording it, and making money doing it. No, that isn't happening. That person is still free. That person is still abusing children. That person is still making money. Contact the foreign authorities, arrange to have the pornographer picked up. Contact the ISP. Shut down the site. You know, police work.

      What the hell do they think they're doing?! Oh well, saving children is too hard this week! We can fuck over some German credit card holders though. We won't really have anything more than circumstantial evidence, but it will be enough to get a warrant and search all 322 of them at length while the abuser continues making more porn to sell. And hey, if any of them happen to be political enemies, all the better!!

    7. Re:Define "Broad" by dotoole · · Score: 1

      "We've found a kiddy-porn site using this account number. The subscription amount is X, and payments may have been made between Y and Z. Can you give us a list of people who have subscribed to it?"

      Sounds specific enough for me.

  14. Law of diminishing returns? by StressGuy · · Score: 1

    So, to date, they have 322 suspects out of 22 million scans...that's a hit rate of .00146 percent. That's a lot of people who had their personal data plowed through for a nearly zero yield.

    --
    A goal is a dream with a deadline
    1. Re:Law of diminishing returns? by forgotten_my_nick · · Score: 1

      I wonder who many of them in the 322 suspects had their credit card number stolen/copied?

    2. Re:Law of diminishing returns? by geoffspear · · Score: 4, Insightful

      Right, those non-suspects records were "ploughed through" in the same sense that if the police requested one record with a specific transaction ID from the creit card company's database, all of the records were "ploughed through" when the query to retrieve that record was run. You're either a troll, have no idea how a database works, or don't know how to read.

      --
      Don't blame me; I'm never given mod points.
    3. Re:Law of diminishing returns? by jizziknight · · Score: 3, Insightful

      Agreed. Now, If they were manually sorting through the records rather than running a db query, that'd be a different story. The fact of the matter is they're getting only what they searched for and nothing else. The only people having their records "ploughed through" are those who are suspects. So assuming no false positives (which shouldn't happen with a well written query), and no records are missed (which also shouldn't happen with a well written query), they're getting a 100% success rate. The hit rate of .00146% as put forth by the GP would only be correct assuming all 22 million of those people were guilty and they were only finding .00146%. Or at least that's the way I see it.

      --
      Everything I say is a lie. Except that... and that... and that, and that, and that, and that... and that.
    4. Re:Law of diminishing returns? by jahudabudy · · Score: 1

      Man, if they have to search 22 million records to pull back a single transaction ID, that DBA should be shot! Indexes are your friend :)

      Good point, tho. This is a non-issue as far as privacy is concerned.

      --
      ...sometimes, in order to hurt someone very badly, you have to tell that person terrible lies. - PA
    5. Re:Law of diminishing returns? by jahudabudy · · Score: 1

      Actually, even if the credit-card companies were manually sorting through the records (as dumb as that would appear to be), as long as they only shared the positive hits with the police, there still is no privacy issue. I would be shocked to learn that the credit-card companies do not have very wide powers when it comes to viewing, sorting, reporting against, etc. their own data. The privacy rights only kick in when it comes to your credit-card company sharing that data with someone else.

      --
      ...sometimes, in order to hurt someone very badly, you have to tell that person terrible lies. - PA
    6. Re:Law of diminishing returns? by adsl · · Score: 1

      If the German Police have all the specifics about the Porno company's bank accoutns etc why not just tell the Credit Card companies NOT to accept charges from Germans to these accounts? Plus the German Police could go through Interpol in Europe and strongly urge their counterparts thoughout Europe to do this same. Wouldn't this have the very desirable affect of likely shutting down many of these bad businesses. Also the German Police need to discuss with the credit card companies how they vet new clients and how such undesirably businesses slip through to be their customers. Going merely after a few "end users" sorta sounds good but that's attacking the symptom and NOT the cause. All IMHO of course.

    7. Re:Law of diminishing returns? by computational+super · · Score: 1
      So, to date, they have 322 suspects out of 22 million scans...that's a hit rate of .00146 percent.

      Well, you're assuming they're done. Maybe they had just finished searching suspect #323 when this article went to print.

      --
      Proud neuron in the Slashdot hivemind since 2002.
    8. Re:Law of diminishing returns? by Lars+T. · · Score: 1

      This may come as a shock to you, but you ar a suspect in every single crime commited - for about a millisecond. Maybe even longer.

      --

      Lars T.

      To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

    9. Re:Law of diminishing returns? by ahodgson · · Score: 1

      The only people having their records "ploughed through" are those who are suspects.

      All 22 million of them.

    10. Re:Law of diminishing returns? by Jesus_666 · · Score: 1

      Because
      a) The site was either altready shut down or operates in a country where it's not likely to be pursued,
      b) the site already had customers and
      c) the possession of child porn is illegal in Germany.

      The police isn't trying to stop people from accessing the site, it's trying to find the people who bought the child porn. For that, knowing which CC accounts were used is more helpful than telling CC companies to block all transactions to that company (which probably would involve lots of red tape anyway).

      --
      USE HOT GRITS WITH STATUE OF NATALIE PORTMAN (NAKED AND PETRIFIED)
    11. Re:Law of diminishing returns? by jizziknight · · Score: 1

      I don't think you understand my meaning. The 22 million are possible suspects. The ones found via the search, and subsequently have their records examined are definite suspects.

      --
      Everything I say is a lie. Except that... and that... and that, and that, and that, and that... and that.
    12. Re:Law of diminishing returns? by Ihlosi · · Score: 1
      All 22 million of them.



      No. The authorities have no clue who those 22 million people are. That data never left the credit card companies.



      If you know, say, 200 people, and police ask you "Have you seen this guy (who happens to be one of those 200) at that location on that day ?", did the 200 people you know suddenly become suspects ? No.

    13. Re:Law of diminishing returns? by gnasher719 · · Score: 1

      '' So, to date, they have 322 suspects out of 22 million scans...that's a hit rate of .00146 percent. That's a lot of people who had their personal data plowed through for a nearly zero yield. ''

      I think you don't have a clue how a database works.

      There is such a thing as an index. With an index, you can pick out _exactly_ those records that match and don't touch any other records. You _don't_ look at everyones records. You look at exactly 322 records.

      If the police are told that a dangerous criminal lives at number 35 in your street, do you think the police wouldn't be allowed to get him because they can't find the house without looking at the house numbers of innocent citizens? You really crack me up.

  15. Why would someone use a credit card? by Kaz+Kylheku · · Score: 4, Insightful

    One reason might be that it's stolen?

    Someone steals your number, buys kiddie porn, and now you're the suspect.

    1. Re:Why would someone use a credit card? by Incadenza · · Score: 4, Interesting
      Someone steals your number, buys kiddie porn, and now you're the suspect.
      A friend of mine had his computer confiscated for three months because somebody tried to sign up to a Yahoo! mailing list (where kiddie porn had been discussed) using his stolen or guessed or just randomly typed e-mail address. They are not the brightest of the block, these German cybercrimefighters.
    2. Re:Why would someone use a credit card? by Anonymous Coward · · Score: 0

      A friend of mine had his computer confiscated for three months because somebody tried to sign up to a Yahoo! mailing list (where kiddie porn had been discussed) using his stolen or guessed or just randomly typed e-mail address.

      I'm sorry, I call bullshit. I've worked with sex offenders who have been arrested for distribution of child porn (I worked at a Federal Prison). The only time they seem to be smart or creative is when they try and offer up an excuse for how child porn ended up on their computer. Otherwise, they give their home name and address, their own credit card number, and email addresses attached to their ISP account. (Why do you think it's so easy for shows like Dateline to find so many pedophiles? Because they're smart and sneaky?)

      Your friend had child porn on his computer, was busted, and is probably on probation. I hope he gets professional help before he ends up in prison.

    3. Re:Why would someone use a credit card? by Lost+Engineer · · Score: 1

      Parent said his computer was confiscated. I think if they had busted him, he would have said "my friend was unjustly imprisoned/put on probation for looking at kiddy porn.

      Are you kidding? What is so implausible about his story? What am I doing responding to an AC troll?

    4. Re:Why would someone use a credit card? by Incadenza · · Score: 1
      Your friend had child porn on his computer, was busted, and is probably on probation. I hope he gets professional help before he ends up in prison.

      Typical AC: write first, think later. He got his computer back with the remark that they did not find anything on it. It just took them so long to investigate because it was a Mac, and they had no expertise in examining the content of a Mac, just PCs. And when they returned it, they also told him the reason they had confiscated it in the first place.

      And yes, I must agree on you with this one: the sex offender wasn't smart. Because signing up with someone else's e-mail account doesn't work.

  16. so this only catches the stupids ones by advocate_one · · Score: 1

    the ones with any sense will be using stolen identities... so how would you explain things if your credit card number comes up in this search then???

    --
    Donald 'Duck' Dunn: We had a band powerful enough to turn goat piss into gasoline.
  17. Garbage by Anonymous Coward · · Score: 0

    Don't forget ineffective, once some very simple steps are taken by site operators to defeat these "narrowly defined" search criteria. For example, lots of different promo prices, multiple charges, deferred billing, and a few dozen other things that might take me more than the two seconds to think of than it took me to come up with these.

  18. Doesn't even prove that... by benhocking · · Score: 1
    It will only prove that they paid this company something.

    No, it proves that someone paid this company something using a credit card with the suspect's name on it. Could be a stolen credit card, or possibly just a stolen number. Could even be a stolen identity used to obtain a credit card.

    --
    Ben Hocking
    Need a professional organizer?
    1. Re:Doesn't even prove that... by 6ame633k · · Score: 1

      Well to be fair - A SINGLE company may have has MULTIPLE Pr0n offerings: kiddy, tranny, granny, etc. Whose to say which one their clients purchased? That would totally suck if you were trying to get your kink on with tranny-love and got busted for kiddi-porn. O the hu-man-on manity.

      --
      You had me at merlot
    2. Re:Doesn't even prove that... by Anonymous Coward · · Score: 3, Informative
      No, it proves that someone paid this company something using a credit card with the suspect's name on it. Could be a stolen credit card, or possibly just a stolen number. Could even be a stolen identity used to obtain a credit card.


      Indeed. About two years ago, I had two transactions on my credit card which I could not identify, and called VISA to find out what they were about. They told me that one was to a company somewhere in Europe named littlegirls.com or something similar, and the other for the registration of a web site with Yahoo. I had been the victim of identity theft.

      As it was impossible to get in touch with the pr0n site, I contested the charge and told the credit card company to revert it, which they did.
      For the Yahoo charge, Yahoo grumbling reversed it after spending hours on the phone with them, and them finally verifying that the request came from an IP address in Yugoslavia from a fake Hotmail accout, and not in the US where the card was held (shouldn't they have checked at least one of the two before accepting the order?). Yahoo still was unable (too stupid) to take my name and address off the web site registration, where it still resides two years later, despite my contacting them no less than half a dozen times over this, so I still get spam snail mail for a domain I never registered.
      Needless to say, as soon as Yahoo had reversed the charges, I closed that CC account.

      However, a search like the OP posts about will still show me as having paid money to a child porn site, as the reversal of charges doesn't null out the original transaction. I do not think this constitutes enough evidence for a search and seizure order. I'm a victim, not a criminal, and victimising me again in the name of "think of the children!" does nobody any good.
    3. Re:Doesn't even prove that... by Lars+T. · · Score: 1

      I have a hunch they are going to sift through the porn collection also.

      --

      Lars T.

      To the guy who modded me down from perfect to terrible Karma - Apple haters still suck

    4. Re:Doesn't even prove that... by El+Torico · · Score: 3, Funny
      if you were trying to get your kink on with tranny-love...

      Is this a good site for that?

      --
      In the land of the blind, the one-eyed man is usually crucified.
    5. Re:Doesn't even prove that... by jacksonj04 · · Score: 1

      I doubt that a company offering legitimate non-kiddy porn will also offer kiddy porn. Do you have any idea how much paperwork needs filing to run an adult website?

      --
      How many people can read hex if only you and dead people can read hex?
    6. Re:Doesn't even prove that... by LittleBigLui · · Score: 1
      A SINGLE company may have has MULTIPLE Pr0n offerings: kiddy, tranny, granny, etc.


      Why would you want to operate a legal business in combination with an illegal one? So you get the profits of the legal business with the risk of the illegal one? Ever seen a drug dealer sell Aspirin?

      (Of course, assuming that production of child porn is actually illegal in the producers' jurisdiction which probably holds true for most of the landmass of this planet.)
      --
      Free as in mason.
    7. Re:Doesn't even prove that... by Anne_Nonymous · · Score: 1

      >> A SINGLE company may have has MULTIPLE Pr0n offerings: kiddy, tranny, granny, etc

      "Tha Aristocrats!"

    8. Re:Doesn't even prove that... by 6ame633k · · Score: 1

      Regular companies have multiple revenue streams, why should Pr0n be any different? I can't imagine kiddi porn is all that lucrative anyway seeing as you can't exactly advertise - so they may have had a legal offering as a supplement or even as a cover, further they may sell legal items to secure valid credit card vendor service.

      All jokes aside, the concern here is that people get emotional about the issues and they don't always look at the facts of the case. It's called reasonable doubt. But if the evidence proves that's what these people bought - then they should all go straight to jail because they are seriously messed up human beings. all I'm saying is it *could* happen.

      --
      You had me at merlot
  19. however, in the past by Anonymous Coward · · Score: 0

    There has been at least one case where there has been a big bust of omgpedos! based upon people who gave their money to an "age verification service."
    Most websites in the ring that used the service were purely adult porn, but there were one or two that weren't.
    Apparently, they weren't all linked together, so someone wouldn't necessarily know that when they paid to access hotcollegegirlswithgrits, they were also supporting chinesebabiespeeingongrits.
    But of course everyone who gave money to the service was accused of belonging to the one or two pedo sites, because the websites didn't have records.

    So be a little cynical when you read something like this, even though it's all for the sake of the children, of course.

  20. on the same day as iPhone (brains unite!) by zIRtrON · · Score: 1

    this shouldn't be news because they've conceivably been able to do this forever, but finally people (even b_eu_rocrats) are using their head.

    And yes, the subject is just an attention getter

  21. If you mod MobyDisk up... by Mateo_LeFou · · Score: 1

    The terrorists win.

    --
    My turnips listen for the soft cry of your love
  22. "Likely that children are being exploited" by flaming+error · · Score: 5, Interesting

    > it is likely that children are being exploited in one way or another
    Really? You mean kids don't like being kidnapped, enslaved, and raped?

    Get a clue, dude. Child Pornography is the most vile and evil industry hell has concocted. Maybe there's a cure for pedophiles; if so, please cure them. But until then, the children's needs trump the pedophiles', and most certainly trump their exploiters. Those who'd rape a child for profit deserve the most severe justice.

    Every civil society feels this very strongly, and rightly so. Unfortunately, that's why societies tolerate their government eroding civil rights - in the name of fighting child porn.

    1. Re:"Likely that children are being exploited" by computational+super · · Score: 2, Insightful

      But you're just guessing as to what the contents of the site(s) in question were - all you know is that some LEA said it was illegal. The actual content may have been much tamer than you're thinking (or even completely fictional) - we'll never know. And (regardless of the country in which you live, apparently) it's against the law for you or I even to look and find out if we agree that it is illegal (or should be). I beleive I read somewhere that Canada even made it against the law to find out how to find out (that is, just to find out what the name of the website was). One would presume that, if these folks go to trial (if they even get trials for these cases any more), then at least the jury will have a chance to take a look at what the accused was looking at and say, "yep, that's illegal alright"... but I'm afraid I wouldn't be terribly surprised if they didn't even let the jury look.

      --
      Proud neuron in the Slashdot hivemind since 2002.
    2. Re:"Likely that children are being exploited" by soccerisgod · · Score: 1

      We don't have juries here.

      --
      If a train station is a place where a train stops, what's a workstation?
    3. Re:"Likely that children are being exploited" by Anonymous Coward · · Score: 0

      Actually, we do (called "Schöffen"), but only for specific types of cases (but don't ask me what they are, IANAL).

    4. Re:"Likely that children are being exploited" by soccerisgod · · Score: 1
      Definitely not the same thing. AFAIK the members of a jury under US law only preside in one specific case, whilst a Schöffe is elected for a period of four years and basically is an honorary judge with the same rights as the presiding judge in a trial. Trials involving Schöffen usually have one professional judge presiding over the precedings and two Schöffen, in some cases two Schöffen and three professionals. Their role is most likely a much more active one than that of the juror.

      Disclaimer: IANAL.

      --
      If a train station is a place where a train stops, what's a workstation?
  23. honesty by Anonymous Coward · · Score: 2, Insightful

    I am not quite sure I appreciate your honesty.

    Please, this is Slashdot.

  24. OR by zoomshorts · · Score: 1

    People with recently stolen identities :)

  25. Re:Your rights online? by Dynedain · · Score: 1

    Gays do not have rights.

    Muslims do not have rights.

    Jews do not have rights.

    You do not have rights.

    Where does it end? Where's the cutoff? Everyone has rights. That's what makes things a "right", rather than a privilege. Those who break the law should be punished appropriately and measures should be taken to prevent reoccurance, but that does not negate that person's rights.

    --
    I'm out of my mind right now, but feel free to leave a message.....
  26. Let's hear it for exploitation by poptones · · Score: 2, Insightful

    I exploit my knowledge and skill every day. If you have anything, so do you. People exploit the natural resources around them - cut trees for firewood, fish in their ponds, etc. It seems you've been confused by the mass delusion spread by the politically correct.

    We live in a world now where parents have scant real freedom to raise their kids as they deem fit. How I raise my kids - how I let them dress, what beliefs I teach them, how they are educated - is not your business, not george bush's business, and not the business of the school board... well, at least it wasn't before the feds decided to bend over for the feminist left in the 1980s and make a whole new set of crimes for this shit... never mind those existing laws pretty much covered any REAL sex crimes against americans regardless of age.

    I'm more or less all for the police just posting a list of those who bought the child porn and let society takes its normal course of false morality and prejudice against them.

    Oh yes indeed, that would work perfectly.. it certainly worked well in the south for folks like Emmet Till. While we're at it, how about posting the names of all those folks breaking the other laws, too? Like the whites who married blacks, the ones who buy marital aids, the ones who practice the vile arts like sodomy and cunnilingus and felatio...

    And what about the guy who beats his wife? No chance someone like that might be fucking his daughter or even his son, huh? Or beating them? Where are the calls to castrate these folks?

    The "civilized west" has gone abso-fucking-lutely batshit. How apt you should be deemed a "troll" by another of those "critical thinkers" spawned from this completely perverted society.

  27. Re:Your rights online? by Anonymous Coward · · Score: 1, Insightful
    Pedos do not have rights. Infact, I hope they end up in federal pound me in the ass prison.
    I agree. Any man attracted to a 17 year-old girl is a sick, demented pervert. They should all die a slow, horrible death.
  28. Slow down Germany, UK is the primary police state! by Anonymous Coward · · Score: 1, Interesting

    This sucks, Germany's catching up with us in the UK ...

    We need a strategy for staying in front. How about forcing all citizens to work in the mines while chanting "Politicians are God" over and over ....

    Oh wait minute, peeps in the UK aren't citizens at all, just Subjects of HM the Queen. Maybe we are still ahead after all! .... :-(

  29. I don't think they'll buy that. by User+956 · · Score: 3, Funny

    I wonder how many cards will now be reported stolen

    That excuse only works on your wife, or your girlfriend.

    I know it works on my wife, and my girlfriend.

    --
    The theory of relativity doesn't work right in Arkansas.
  30. Re:Your rights online? by alan_dershowitz · · Score: 1

    SUSPECTED "pedos." Or are we dispensing with trials in Germany now also?

  31. Re:Your rights online? by nasor · · Score: 2, Insightful

    It's not about the rights of the pedophiles, it's about the rights of normal people to not have the police scrutinize their personal financial records simply because some pedophile uses the same credit card company. The police knew that a few people had used credit cards to buy the porn, so they examined the records of all 22 million people.

  32. To the contrary by BenEnglishAtHome · · Score: 4, Insightful

    I have problems with this. I'll give the German police some slack and assume they are reasonable enough to only look for people who purchased materials that any reasonable person would look at and say "That's obviously vile child abuse." We cannot, however, trust the police everywhere to be as reasonable.

    In the U.S., people are being prosecuted right now for making and selling child porn even though the prosecution agrees that no nudity or sexual activity is depicted. In the U.S., at least one 16 year old girl has been charged with child abuse and child porn production for taking a cell phone picture of herself nude and sending it to a boyfriend. (Yes, the child she was charged with abusing was herself. Think on that a while, but don't blame me if your head explodes.) In the U.S., we have people sitting in jail convicted of possessing child porn for, among other things, having cartoons of young-looking characters having sex. (I'm at work, so filtering prevents me from searching for links; you can google them as easily as I can, though. For the first case, look for "Pierson" who's being prosecuted in Alabama.)

    Yes, everyone is probably right that in the instant case this is a reasonable way to proceed. But I'm still not comfortable with it. I don't trust LEOs to not be idiots, to not be grinding political axes. Dangerous stuff, this. If it's backed up with searches that find people in possession, great. But be warned - due to identity theft or whatever reason, there will be some false positives. The people who are the victims of those false positives are just a short distance away from having their lives utterly ruined without adequate justification.

    There must be better ways of investigating this sort of thing.

    1. Re:To the contrary by Josef+Meixner · · Score: 1

      It wasn't child abuse, but child pornography. And that is defined in Germany as sexually explicit pictures of underage (16 years or lower) children. And the German definition of "sexually explicit" is quite a bit different from the US one. E.g. something more "explicit" as Miss Jacksons "Wardrobe Malfunction" is aired here in commercials, in afternoon Anime shows.

      But yes, it doesn't feel very good to have been searched like this, as my CCs were probably also under those being looked over. But it looks ok, the search criterium was quite narrow. Broad searches are not allowed by German privacy law.

    2. Re:To the contrary by Reziac · · Score: 1

      And I'm thinking that it's a mighty short hop from reasonable filtering for a specific criminal activity, to broader filtering for "antisocial behaviour" (such as buying "subversive" books).

      --
      ~REZ~ #43301. Who'd fake being me anyway?
    3. Re:To the contrary by Lost+Engineer · · Score: 1

      I think it's awesome that people halfway across the world who play no (American) football not only know about that incident but have learned our big-word latinate euphemism for it as well. Awesome.

    4. Re:To the contrary by Josef+Meixner · · Score: 1

      To be honest I fear the whole world knows about that. And probably in many parts of the world it was completely ridiculous, so we laughed about that. One of the more common comments was "I have seen better ones". If I remember correctly it was even in the main evening news here.

      Also American Football may not be big here, but it is still played and some people watch the transmissions of the Super Bowl. Also the winner normally gets a small blurb in the news, as does the Indie 500 and similar.

  33. Re:Your rights online? by geoffspear · · Score: 1

    Except that they did no such thing.

    The police had no access whatsoever to records of any transactions that didn't match their specific criteria. The didn't "examine" these records in any sense, and know nothing about them except that they don't match these specific criteria. There was absolutely no violation of the privacy of anyone who's not now a suspect.

    Now, you may be able to argue that it's not the intent of the privacy law to allow the police to say "we have an unknown number of anonymous suspects whose identities we can get through this specific request for information" rather than "we suspect this specific individual of committing this specific crime, and we'd like this specific information to prove that", and you might have a reasonable case there, but that's a whole other issue. I'm not a lawyer and I can't read German, so I'm not about to try to parse their law to form an opinion on that.

    --
    Don't blame me; I'm never given mod points.
  34. They will not end in prison. by TransEurope · · Score: 2, Interesting

    Or better 90% of them. The Spiegel says that 90% of the
    322 suspects are not punished before, so they'll receive
    fines instead of prison. It's unusual in germany to go
    to prison for your first misdeed. Except really hard crimes
    like homicide, second degree murder, forays, raping of course.

    1. Re:They will not end in prison. by slightlyspacey · · Score: 1

      It's unusual in germany to go
      to prison for your first misdeed. Except really hard crimes
      like homicide, second degree murder, forays, raping of course.


      Or doing the funny walk

    2. Re:They will not end in prison. by TransEurope · · Score: 1

      Well, to make the famous goose-walk does not mean that the cops bring you to jail. It's the maximum penalty, and you'll not receive this punishment for your first offence. So if you make your funny walk again after the cops informed you that is it not allowed you'll get a fee, and doing once more again means the cops will arrest you. The cops will take you the policestation in every country when you repeat even small offenses. I think you will not have a chance to piss a third time in public in the US (or wherever you come from) in front of a policeman, in the US probably not a second time :D

    3. Re:They will not end in prison. by Anonymous Coward · · Score: 0

      In the US, people have had their life ruined by urinating in public. That can lead to being registered as a sex offender for life for "exposure to a minor". Even when there's no evidence that a minor saw it, because in a public place, minors are present in potentia.
      Being on the sex offender list in the US, especially with a crime like "exposure to a minor", means you won't get a job, won't be allowed to live many places, and you will get harassed from "concerned citizens" and NIMBYs. It's no surprise that the suicide rate of people on the sex offender lists are sky high.
      And this can happen because you took a leak in public.

  35. Wrong, german law allows it. by Josef+Meixner · · Score: 5, Insightful
    The children are likely not German, so they're not protecting the german children. The servers are not in Germany, so they are not policing they're own internet. They are telling people what they cannot do.

    German law on child pornography is universial, as long as a German is involved, it is the business of the attorney. So a German tourist fucking a little girl somewhere on holiday can be prosecuted in Germany. The law was changed like this after it showed that especially Thailand would not do anything to protect its own children. So the law was changed to be able to do something about it here (yes, I am German).

    Therefore it is completely irrelevant, if the child was German or if the server was located in Germany. All what is relevant was that Germans were buying child porn, something which is very clearly forbidden here. Also what the headline doesn't tell, there are 20 teachers under the suspects and quite a lot of repeat offenders.

    I am not happy about this either, as my credit cards were probably among those that were checked. But it really seems as if everything was done to the letter of the law. The law enforcment officers never saw the CC records, the CC companies were doing the searches for an exact sum, to a fishy Phillipene billing company in a two month time frame. Sadly the trail stopps at the billing company for now, because much better than going after the buyers would have been to get the sellers.

    But to repeat, according to German law it is completely irrelevant where the child was, where the pictures were made and where the servers are located. And I think it was a good idea to change the law like this, because honestly I don't see why child porn from a German child should be prosecuted differently.

    1. Re:Wrong, german law allows it. by Bishop · · Score: 1

      Several (western ??) countries have laws similar to Germany's for the procescution of child pornography. IIRC it was Sweden that started with the idea.

    2. Re:Wrong, german law allows it. by Lost+Engineer · · Score: 1

      Does this apply to other laws as well? Can a German be prosecuted at home for visiting an Amsterdam coffee shop (and smoking the wacky tabacky in case you didn't get the euphemism)?

    3. Re:Wrong, german law allows it. by Josef+Meixner · · Score: 1

      AFAIR not for smoking. Our drug laws have been made a bit more liberal, so small amounts of pot for personal use (don't ask me the details, never was that interested) are allowed. So if you would exceed those amounts and get caught you get prosecuted. But prosecution of criminal acts done abroad are limited. I am no lawyer so I probable don't even know if it is complete, but I think it is limited to child porn (or abuse).

      There is a second class of offenses, crimes against humanity can be prosecuted if the country they were committed or the country of residence of the one who committed them won't prosecute them. And there it doesn't matter where the crime was committed or if any German was taking part (either active or passive). E.g. Donald Rumsfeld was accused of being a War Criminal. That was quickly closed (but had to acted upon by the attorney), because irrespective of what many people seem to think, the US are not a country without law and we therefore have to trust it will do what it deems lawful.

      This kind of law is also not so uncommon, I know that at least Belgium has a similar law.

  36. Before responding... by StressGuy · · Score: 1

    Let me give you a simple test of logic. You presented three options:

    1) You're a troll

    2) You don't know how a database works

    3) You don't know how to read

    Using only your innate powers of deduction, which of these three options can you eliminate right now?

    My point being that, who's the troll here? The guy who asked about the effectiveness of going through 22 million records only to obtain 322 viable hits? or the guy who decided to take personal shots at the original post?

    Well, obviously a database search to limited criteria is cost-effective and non-invasive. Hell, "ploughed through" might have even been a poor choice of words.

    But at least I wasn't a dick about it.

    --
    A goal is a dream with a deadline
  37. Re:WHY?! - DOH! by thePowerOfGrayskull · · Score: 3, Funny

    I meant that I "hear" that about free porn on the net, not kiddie porn...

    ::headdesk::
  38. Why was this necessary by Anonymous Coward · · Score: 0

    On first blush - I thought "hmmm, that's not too bad. a specific amount of money, a specific time period and a specific receiver account to search for purchasers of kiddie porn."

    But thinking about it more - why was it necessary to search thru 22M accounts? If you know who the receiver account is - why not just pull all the transactions from that account only? IIRC, the sender is associated with the receiver in the credit transactions...

    1. Re:Why was this necessary by P3NIS_CLEAVER · · Score: 1

      There are companies that just do billing for a bunch of sites... that is probably why they specified a certain purchase amount along with other criteria.

      --
      Please sign petition to restore sanity to our banking system!!!

      http://financialpetition.org/
    2. Re:Why was this necessary by Sylver+Dragon · · Score: 1

      Most likely the 22 million accounts being searched line was added by some idiot journalist with no clue how a database works. In his defense, he was probably parroting information from some talking head, who was also clueless as to the internal working of the databases. Said spokes-hole probably heard that there were 22 million or so transactions in the year, and that the system would need a bit to do the search, so he just threw that number out there to sound like he knew his ass from a hole in the ground.
      Assuming that the credit card database uses some sort of SQL type language, the DBA probably just put together a query along the likes of:
      SELECT a.CustomerName, a.CustomerSSN, b.TransactionDateTime, b.TransactionAmount FROM tblCustomers a, tblTransactions b WHERE b.TransactionDateTime &gtl= @StartDate AND b.TransactionDateTime =< @EndDate AND b.TransactionAmount = @KnownAmount AND b.RecipientAccount = @KnownAccount

      Or something akin to that. (by the by, what is the German equivalent of the US's Social Security Number? I assume that all countries have some sort of citizen tracking number.)
      The end result would be that the DBA would get back a result set which only included those accounts which had made a purchase of this specific amount in this time period to this specific account. And, with good indexes, most of those 22 million records would not have even been scanned at all. Also, I suspect that any DBA at a major credit card company is far better at what he does than I am, so they will probably have an even better way to go about this than what I just whipped up.

      --
      Necessity is the mother of invention.
      Laziness is the father.
  39. some points by whathappenedtomonday · · Score: 1
    First, 14 credit card service companies helped gather the data; they handed out a list of persons with similar transactions on their CCs: the criteria that were matched were Visa or Mastercard used, 79,99 US$ transaction and a company from the Philippines as recipient.


    Second, the authorities in Germany state that everything was done legally and that it's not a case of 'dragnet investigation', since neither prosecution nor police had access to all the data but instead the search was conducted by the CC companies. It was just "standard investigation procedure", even though it has never been done before.

    Third, the majority of CCs were apparently not stolen; one of the porn "consumers" was a secondary school teacher (still living in his moms basement btw); huge amounts of kiddie porn were found on his computers. Most of the 322 persons that turned up in the search have a criminal record related to child porn. The whole investigation is sold as a major success throughout the big media outlets in Germany.

    The owners of the transaction server are still unknown and will probably remain so (not as stupid as their customers, operating from the Philippines).

    My thoughts: whatever data there is out there, it will be used - by governments, corporations and individuals. You do not have any control over your data in a post-9/11-world. The more data there is, the greater the risk you will end up as a match in someones DB query. Now, when it comes to child porn, many people don't care any longer if a search was warranted or illegal, they will only see the results. Along with rising amounts of data being collected, the risk of being targeted as an innocent person rises exponentially. This is why we should all be worried, no matter how glad we are that a few more sick child abusers end up in jail. Seeing how much data we generate each day, I'm increasingly glad I have neither a CC nor a cell phone.

    On a somewhat related note: European institutions and governments seem to have no problem with handing out whatever data there is; along with the flight passenger data, the US still has full access to the SWIFT transaction data as well, even though there's no legal backing for such practices in the EU.

    --
    I hope I didn't brain my damage.
  40. Re:Your rights online? by MiniMike · · Score: 1, Interesting

    You drive down the highway, and a police officer checks your speed by radar. You're not speeding, so he doesn't stop you. Have your rights been violated? Do you complain that they are checking everyone's speed instead of just the speeders? It's more of a leap to say that the search of credit card records described above is a violation of your rights.

  41. You've never been in a tank, I guess by Opportunist · · Score: 1

    Let's put you for, say, 2 hours into a tank, preferably in toasty warm weather, and then tell me again that you don't want to have that juice!

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  42. Re:Your rights online? by Lehk228 · · Score: 1

    underage != pedophilia

    pedophilia is attraction to prepubescent children. these guys are not sleeping with the 17 year old, more like her 7 year old sister (or brother)

    --
    Snowden and Manning are heroes.
  43. Re:Your rights online? by Anonymous Coward · · Score: 0

    totally. some 16 year old girls look 20 and some 25 year old girls look 16. how in the heavens do we figure this out - oh, i forgot 2257 is bulletproof. if the page has a "2257" link on it, then she is definitely over 18, no doubt about it.

  44. Why not? by phorm · · Score: 1


    The children are likely not German, so they're not protecting the german children.
    The servers are not in Germany, so they are not policing they're own internet.
    They are telling people what they cannot do


    While I'm by no stretch a fan of the government (any government, even though this one isn't my own) simply diving into private records, there is a certain line between reasonable and unreasonable. Swap the actions with the above arguements, for example:

    What if they were ordering illegal merchandise? Perhaps ivory or pelts from an endangered animal. If they're ordering from a country where such is legal, does that mean that it's OK since no German elephants were killed (nevermind the lack of elephants in Germany). Why is it OK to harm kids from other coutries. Now if there were a case of drawn/animated material you might have a case for patrolling against "thoughtcrime", but no such distinction is made. Certainly if someone were in Germany and arranged a "hit" against somebody out-of-country, I would still expect that person to be arrested on murder charges.

    The children are likely not German, so they're not protecting the german children.

    Yeah, right, so if some kids are touring from another country it should be just fine to abuse/murder/etc them just because they're not citizens. Or they just shouldn't give a damn about non-citizens in other countries? Good logic.

    Now, a lot of this depends on how the records are being checked. But personally, if they have an automated programs checking for payments of $13.50 to IllegalPerve.com between January and March 2005 (an example registration cost, site, and date of operation), I find it hard to object. Perhaps if this were the entire basis for arresting and jailing somebody, yes (stolen CC #'s and various other issues), but it's plenty of grounds for further investigation and I'm surprised that this is even news (I would have *expected* them to investigate such things).

    1. Re:Why not? by Chacham · · Score: 1

      Why is it OK to harm kids from other coutries.

      The question is one of protection. No one has filed a complaint against these individals getting this response. Instead, this is proactive. Being proactive to offer dubious protection for people outside the country is not for their government to do. Let alone that this will hurt actual citizens of Germany.

      Certainly if someone were in Germany and arranged a "hit" against somebody out-of-country, I would still expect that person to be arrested on murder charges.

      Let's say Germany was at war with France, and someone in Germany went to France and killed a civilian there, should the German still be arrested (by Germany)?

      There is a three-fold reason we arrest murders of non-ctizens:

      1) Because of the unwritten agreement with other countries that they will protect our citizens from murder.
      2) Because a person who murders is likely not caring of nationality, and thus is a danger.
      3) Because we want to encourage visitors and offer safety.

      These do not apply to the case at hand, because (respectively)

      1) CP is not illegal in all countries, and the laws where it si illegal vary greatly.
      2) There is rarely an actual victim. There is no known link betwen viewing CP online and actual activity with "real" minors. Indeed, the evidense shows the opposite.
      3) The person is doing it online, so there is no safety to be worried about.

    2. Re:Why not? by dbcad7 · · Score: 1
      I am not defending those caught, but what about this...

      Say you were in a strange city, a little tipsy, and what the hey it's your birthday (whatever)
      You scan through the yellow pages and come across the Escort section, and dial em up.
      They send you your date for the evening after of course getting you credit card info.
      As to what happens between you and your "date" on this night... that doesn't matter.
      A few months go by and your at home and the FBI knocks at your door to ask you about some
      charges you made on your card. "What was this for ?", "Did you pay for sex ?" etc.. etc..

      Is this ok ?
      Do you think that this could happen in the US ?

      --
      waiting for ad.doubleclick.net
  45. Re:Your rights online? by Opportunist · · Score: 1

    And it all changes miraculously in that one nanosecond when she turns 18.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  46. a specific amount of money by hsa · · Score: 1

    "And they asked the credit-card companies to conduct a database search narrowed to three criteria: a specific amount of money, a specific time period and a specific receiver account."

    So I just pay up $11.32 instead of $9.99 and I am home free?

    Why can't they just monitor the whole account, since it clearly used for distributing child porn? Why do you have to set these limits?

  47. Section 215 of the Patriot Act ... by Anonymous Coward · · Score: 0

    ... allows the federal government to do exactly what the Germans are doing as long as the government specifies that the records they are requesting relate to a counter-terrorism investigation.

    On top of that, the orders are granted in ex-parte hearings and entities who are served with a Section 215 order (i.e. a library, phone company, etc.) are sworn to secrecy by law, which means that targets may never even know they are being investigated.

    Governments seem to believe that seizing the records of X people who match a certain criteria is no different than seizing the records of X people they knew about a priori, which is total bullshit.

    If anyone's more interested in this topic, I strongly recommend "Terrorism and the Constitution" by David Cole and James X. Dempsey.

  48. Re:Darwin (award) by LittleBigLui · · Score: 1
    After all, they will be locked up with the key thrown away


    You're talking about Germany here. Mounir El Motassadeq has just been found guilty of aiding and abetting murder in 246 cases (passengers and crew of the 9/11 flights) and membership in a terrorist organization, and has been sentenced to the maximum penalty of 15 years in prison.

    While I don't have the faintest idea what the maximum penalty for owning child porn is in Germany, they certainly won't get any more than that. Some of them will - as I heard in the news today - get away with fines.

    (I'm not saying that the penalties should be worse, nor am I saying that they shouldn't. Just disputing the darwin award nomination.)

    it is highly unlikely that these bills will prove that they have been buying child porn


    The police raided the houses of those people and presumably found more evidence. At least that's what they said on the news, showing policemen sifting through a bunch of photos.

    they will still be charged and convicted with the rest


    I think we can safely assume that each one will get their own trial and that those will be reasonably fair.

    Of course that doesn't mean that innocent people's lifes won't be ruined by people unable to fathom that someone might be arrested or even tried for something that he didn't actually do, but you can't possibly prevent that as long as you have any kind of juridical system.
    --
    Free as in mason.
  49. Needle in haystack? by B5_geek · · Score: 2, Insightful

    So that would mean that the investigation has a success rate of 0.001463636%

    Disclaimer: IMO anybody who hurts a child should be exterminated.

    What % of children die from disease or other 'preventable' causes in Germany?
    Would efforts be better spent helping them?

    --
    "The price good men pay for indifference to public affairs is to be ruled by evil men." ~Plato (427-347 BC)
    1. Re:Needle in haystack? by freedom_india · · Score: 1

      "exterminated" is a simple painless process. Make it a bigger word like KGB used to torture dissidents and publicize it as Reality TV daily.
      Daily show between 8 AM to 10 AM, and then 6 PM to 8 PM torture them, but not enough to make them lose their lives. Re-energize them for next day and go through the same process. You will see reality TV in a new light, and the rest would be so scared that they wouldn't even think...
      If anyone should even "think" of hurting my 3 year old baby, boy, i would certainly "order" the jury to do as i said above.

      --
      "Doing what i can, with what i have." ~ Burt Gummer
    2. Re:Needle in haystack? by dotoole · · Score: 1

      Too bloody right. The other day I had to check one of my customer's records in our database. I had to query for a specific customer id in the database and it gave me back the required record. There are around 30,000 records in the database, meaning a success rate of 1/30,000. My efforts would have been better spent playing some pool.

    3. Re:Needle in haystack? by Anonymous Coward · · Score: 0

      >> So that would mean that the investigation has a success rate of 0.001463636%

      Uh. NO. You're giving them entirely too much credit.

      It means the investigation so far has a success rate of ZERO, since they've only identified suspects. By that definition they could have identified 22 million suspects (which technically they have) and had a success rate of 100%. They haven't convicted or charged anyone, and even if they have convicted someone, it shouldn't be considered a success unless that person actually committed a crime.

      Also, your definition of success depends on the assumption that they are actually interested in catching child molesters. An idea I find hard to swallow when we know that a large portion of the people operating governments are the child molesters themselves. They best way to ensure a child gets raped in the United States is to hand them over to Child Protective Services:

      http://www.fightcps.com/

      Most so called "Government investigations" are abysmal failures. Most people (over 90% plus) are in prison for things that they either didn't do or things that shouldn't be crimes (i.e. victimless crimes, an oxymoron).

      The real criminals are the ones running the government, and of course any infringement on natural human rights or civil government is going to be conducted ostensibly under the pretext of "preventing terrorism" or "protecting the children".

      They're not going to come out and say: "Hi! We're murdering psychopathic fascists who want to control every aspect of your life so that you can be our slaves from the cradle to the grave."

  50. Re:Your rights online? by Anonymous Coward · · Score: 0
    these guys are not sleeping with the 17 year old, more like her 7 year old sister (or brother)

    Pardon my mistake. I seem to be confused. Were these guys downloading porn or sleeping with 7 year olds? Was the porn involved only of children age 7 and younger?
  51. German porn by Dr.+Cody · · Score: 1

    Honestly, being German and all, child porn is probably one of the more positive things they turned up.

  52. yes and the viruses by elucido · · Score: 1

    when you get free porn, well, lets just assume if you wanted to hack millions of computers, putting a virus in a porn video is the easiest way.

  53. Re:Your rights online? by Anonymous Coward · · Score: 0

    That would be a good argument except for the fact that your analogy is invalid. Cars traveling on the public highway are not at all like private credit card transactions.

    Transactions are supposed to be private information unless there is probable cause to grant a request to look at those records, with judicial oversight.

  54. Why would anyone with a conscience support it? by elucido · · Score: 1

    Why would anyone with a conscience support the kiddie porn industry at all?

    It's CHILD PORN, it's wrong, everyone knows it's wrong, what kinda person would actually pay money to support the creation of more of this garbage?!

    You are right, they'd have to be damn stupid to pay with a credit card, but they'd have to be damn immoral to pay at all. It's a completely pedophile market that should be destroyed. The entire industry should be destroyed. This means you should track the money, but also why the hell are there sites like that allowed to be on the internet at all?

    I can't believe we don't have a global law on child porn to prevent people from creating more of it, I mean the way people fight it now it's never going to end, it's like a waste of time to keep going after "pictures" of child porn, or "movies" or 1s and 0s, when the child pornographers, and website designers, and those who pay for and fund it, continue to create more of it.

    The best thing that can be done, is to create a global law that outlaws any type of profit from child pornography. Then you can outlaw any child porn website. Once you get rid of the websites and the ability to profit, a lot less child porn will be created because it won't have the economics behind it.

    As far as dealing with pedophiles, thats another issue, but child pornography is easy to stop and prevent and we just aren't focusing on it enough.

    1. Re:Why would anyone with a conscience support it? by BoberFett · · Score: 1

      Really? Are nude photos of a 17 year old taken by her boyfriend wrong? Considering the age of consent is less than 17 some places, it seems a bit over the top to say the child pornography is universally and unarguably wrong. But then again, you don't sound like you want facts get in the way of a perfectly good emotional argument.

      We now return you to your previously scheduled thinking of the children.

    2. Re:Why would anyone with a conscience support it? by trashbat · · Score: 1

      How would you define what does and doesn't constitute child porn? Also, seeing as you're suggesting implementing a law on a global scale, how could you get around differing age of consent laws in different countries?

    3. Re:Why would anyone with a conscience support it? by 1u3hr · · Score: 1
      can't believe we don't have a global law on child porn to prevent people from creating more of it

      A "global law"? Well, while we're waiting for a global government to evolve, it's already illegal in just about every country. It's not a problem of law, it's of detection and enforcement.

    4. Re:Why would anyone with a conscience support it? by elucido · · Score: 1


      That is debateable, but the bf should not take pictures of the 17 year old because he has a conscience, not because shes a child.

      Child pornography is universally wrong. Don't confuse situations where people are 17, which is a young adult, with a child. I know our legal system sucks with the confusion of age of consent, but we all know child pornography is wrong.

      If you have a gf who is underaged, don't take nude pictures of her.

    5. Re:Why would anyone with a conscience support it? by elucido · · Score: 1

      It is a problem of law, like others have said, the age of consent laws are mutated and horrible. They are so confusing that they don't make sense. When we talk about teens, it's more difficult to say the laws are right or fair than when we talk about obvious child porn. A child, like under 15, this is obviously wrong, because a 15 year old and under is not fully developed. The average person who is not a pedophile will be able to look at them and see a child. This becomes more difficult when the child is over 15 and begins to look more like an adult, after a certain point theres easy way to know the difference anymore.

      The age of consent laws are different in each state in the US, and different in each country. This makes it confusing for anyone. We need a global age of consent law. We need to pick an age, based on biological and scientific information, as to what age a person can safely give consent. Once this age is chosen, it should be the law worldwide, and this will stop at least people who want to follow the law from doing something stupid.

      In order to stop pedophiles, well you can assume that the pedophiles aren't interested in "teens", but actual child porn, and these people obviously don't care about the law, or the health of the child. We need the laws to be clear enough so we know when someone crosses the line.

      I think the easiest way to go after child pornographers is to go after child pornographers. If it's illegal to take nude pictures of someone under the global minimum age, then it should be illegal, period, and anyone who breaks that law should be arrested. However if we don't even have a set age, then someone can be doing something completely legal in their country, and then market it to countries where it's illegal, it creates a black market like the drug industry.

      I don't think you can reduce the size of the market by going after the demand, you have to reduce the supply, and go after the distributors. So far it seems we don't do a good job going after the people who are making the child porn.

    6. Re:Why would anyone with a conscience support it? by Eivind · · Score: 1
      Age of consent is lower than 18 just about everywhere except USA. The average is something like 16.

      Comically, the child-porn laws are not. So, you get absurd situations like the one you have in Norway:

      Fucking a 16 year old is perfectly legal. (assuming consent offcourse!)

      Infact, if the partners are "similar in age or development" then they can legally have sex at any age. (So a 16 year old with a 15 year old girlfriend is going to be OK, but a 25 year old with a 15 year old girlfriend can get into trouble.)

      But posessing an image of the act is illegal as child-porn is defined to be porn where actors are, or appear to be, under 18.

      To add insult to injury: it makes no difference to the law if the person is yourself. Take a snapshot of yourself masturbating at 17, and mere *posession* of this snapshot is a crime. Which is very very obviously bullshit.

      Yeah -- it's a witchhunt.

    7. Re:Why would anyone with a conscience support it? by 1u3hr · · Score: 1
      It is a problem of law, like others have said, the age of consent laws are mutated and horrible.

      The interpretation of law will always be controversaial. The post I responded to suggested there was no law to enforce even for the most obvious "kiddie porn". In fact, I think the plethora of "barely legal" porn sites is a result of these laws. No matter where you draw the line, some will try to get as close to it as they can.

    8. Re:Why would anyone with a conscience support it? by mdwh2 · · Score: 1

      That is debateable, but the bf should not take pictures of the 17 year old because he has a conscience, not because shes a child.

      What is unethical about taking a photo of an adult who consents, for your own private mutual pleasure (i.e., we're not talking about taking a photo and spreading it online without someone's knowledge)?

      If you have a gf who is underaged, don't take nude pictures of her.

      In the UK, age of consent is 16, but photos are still illegal if of 16 and 17 year olds.

      Don't get me wrong, I agree with your general point - there should be an international consensus at least on all pictures of those below a certain age (presumably pre-adolescent). But part of the problem is that many countries want to extend the laws to include all sorts of extra things, possibly things which most consider not to unethical in the first place (another example would be the issue of fake images - the UK wants to ban underage cartoon characters!) - ironically, it may be the attempts to expand the laws which cause disagreements, and prevent a proper international consensus.

    9. Re:Why would anyone with a conscience support it? by horn_in_gb · · Score: 1

      Any time you pick a particular age as a global standard, it's not necessarily fair, particularly if that age is as high as 15. When I was 17 I dated a 14-year old, who was 5'9 and believe me, as fully developed as at least my 17 year old peers. On the other hand, there are 15 or 16 year olds who are less developed than some 13 year olds.

      Puberty age, as well, is decreasing globally, so that people are maturing earlier and earlier.

      When I was 14, I was interested in people about my own age. Would it be so unethical for me, at that age, to want to look at pictures or movies of people my own age? What about when I was 12? 10? 8? It's unclear territory, I think. While the idea of pornography including people who are pre-sexual (aka children) is appalling to me, and while I personally wouldn't even be interested in young teens, not everybody shares my mentality.

      I don't offer any solutions. I certainly think that pornography involving the coercion of pre-sexual humans should be eliminated, legislated, with high penalties. (On the other hand, when I was 8 I would have happily done porn if given the chance). Anyway, I just think you are a little too straight-laced on this one, thinking there is an absolute gold standard which should be globally legislated. The truth is much more slippery and I like the idea of individuals -- from children to senior citizens -- being able to make up their own minds about the matter, not have their opinions and desires be legislated and governed globally.

    10. Re:Why would anyone with a conscience support it? by elucido · · Score: 1

      I don't have a problem with people creating 'virtual' teen porn, or whatever fake porn, as long as its legal and no children are harmed.

  55. Re:Your rights online? by Anonymous Coward · · Score: 0

    The law makes no such distinction.

  56. 100 x 1000s of kids killed each year, moron by gd23ka · · Score: 2, Insightful

    A couple hundred kids are stripped naked and photographed by
    child pornographers every year. Some are traumatized
    by rape and other degrading sexual acts. For the most part
    however they are fed and live to see adulthood.

    On the other hand _thousands_(!) of children are maimed or die
    from such mundane causes such as traffic and wars each year.
    'Guess how many Iraqi children died in the last years at the hands
    of US and our "allies", how many died from the arial bombing, land
    mines, scarcity of food and medical supplies?

    Get a clue, moron

    1. Re:100 x 1000s of kids killed each year, moron by Anonymous Coward · · Score: 0

      most people would want to stop both

      but the save the children from KPron emphasis is way too disspraptionate

      the reason of course is to try and legitamise our ever decreasing privacy

      I still rememeber the old razorblades / poison in halloween candy / save the children / scare / by the media in the 80s

    2. Re:100 x 1000s of kids killed each year, moron by drsquare · · Score: 1

      If people were kidnapping children, and running them over in order to film them and sell the videos for profits, then your post might be somehow relevant.

  57. Re:Your rights online? by Anonymous Coward · · Score: 0

    Thanks for the information. Can you please provide us with links to all the laws around the world that show that there's no distinction between age 17 and age 7 with respect to capacity for consent to sex acts? I'd be particularly interested in you showing us the "no such distinction" laws from countries with ages of consent under 17. Thanks.

    Don't forget, there's whole BUNCHES of countries... the world is practically FILLED with them. And (surprise, surprise) many of them actually have the nerve to have laws that are DIFFERENT from other countries'... imagine that!

    P.S. I'm not in favor of child pornography or "underage" pornography, it just bugs me when people make ludicrous statements that are obviously false.

  58. It's just like reverse-dns by Cervantes · · Score: 1

    Most of the people who haven't RTFA are just screaming their fool heads off, but please, RTFA.

    The police knew the specific account number of the kiddie porn site. They knew the specific cost. And they knew the specific time range that the site was operational.

    So, instead of saying "Here is one person, give me everything they've ever done on their CC", they said "here is one receiving account, tell me everyone who paid into it for 24.99 between June 1 and Aug 30" (amount and dates pulled out of my ass)

    I would construe that as a fairly specific search. They're not getting a list of everyone who's every paid 24.99 to anyone, nor are they getting a list of all CC activity from June 1 to Aug 30. Their specific starting point is the kiddieporn CC account, filtered by date and amount. I think that's pretty fair, even, doesn't give the cops access to stuff they shouldn't see or too much info, and does give them a list of directly associated transactions.

    Who couldn't find that fair?

    --
    If I knew the wedgies I gave you back in 6th grade would have resulted in this . . . I might have taken a moments pause.
  59. Re:Your rights online? by Lehk228 · · Score: 1

    in many parts of the US it does

    --
    Snowden and Manning are heroes.
  60. Do what they do in india by Anonymous Coward · · Score: 0

    A friend was telling me that in parts of india they have people whose sole jobs are to look at frequently accessed IP addresses and shut them down if they are objectionable. The same method would probably work for credit card accounts, it's just the question of how open we want our transactions to be. What is the level of traffic required before the government should be allowed to audit your business account to see if transactions are the result of smuggling?

  61. utter bullshit by Anonymous Coward · · Score: 0

    ever heard of fraud?, now along your identity and money being stolen anybody can order a some child porn, and if they dont get caught it's your ass.

  62. Thinkofthechildren - sick tag by Anonymous Coward · · Score: 0

    Isn't that how they get into trouble in the first place?

  63. Slippery slope... by MacDork · · Score: 1

    The important bit is that the law enforcement agencies never got their hands on the records of the 22 Million innocent people (including mine, as I own a German credit card). I don't mind the fact that the banks did a search on their own database.

    Really? That's great!! Because our next search is going to be on all accounts that have ever purchased anything from allofmp3.com. You know, that legal in Russia but illegal in Germany website that sells MP3s from RIAA artists without consent or royalty payments. You wouldn't happen to be a previous customer of theirs... would you? Don't worry, we'll know soon enough. Besides, two years jail time isn't really all that bad.

    1. Re:Slippery slope... by DancesWithBlowTorch · · Score: 1

      I'll be happy to defend that in court. German copyright protection law states that, to be liable of copyright infringement, you have to get the material from an obviously illegal source. It's definitely not clear that allofmp3.com is (was) such a source.

      Besides, I don't know of a single case against an allofmp3 customer anywhere in the world. Definitely not in Germany. Even in the case of a conviction, it would certainly be a financial one, no jail time. The "Pirates are criminals" slogan is just FUD comming off the Recording industry.
      Finally, I doubt the police would get the warrant for a database search based on a copyright case.

      Post-finally: I buy my music from iTunes, you insensitive clod. :-)

  64. Why? Because there is money in it. by Anonymous Coward · · Score: 0

    I may not have seen a street drug dealer sell aspirin, but I have seen a doctor get busted for giving out bogus prescriptions.

    There are PLENTY of cases of people ruining a perfectly good legal method of making money by dabbling in a related illegal way of making money. It's not smart, I personally don't think it's rational - but it is done.

  65. Finding child pornography by Anonymous Coward · · Score: 0

    It's childishly simple to find hundreds of gigabytes of that stuff for free on the Internet if you have the right tools and cultural background at your disposal.

    Use WinMX or one of the secure, anonymous alternatives like Winny, and input Japanese terms in kana/kanji: roriita, mushuusei, youzyo, anaru. Youjo is my personal favourite. Torrent search never worked for me. The key here is being able to input multibyte characters, which bypasses filters and log checks of all kinds.

    And remember:

    Four thousand hungry children
    leave us per hour from starvation
    while billions are spent on bombs
    creating death showers.

    So please, think of the children. Not of some pervert who happens to enjoy duplicating a particular arrangement of pixels for his/her own personal enjoyment.

    1. Re:Finding child pornography by thePowerOfGrayskull · · Score: 1

      Um... dude? I wasn't looking for detailed instructions on finding child porn. I don't think anybody else here was either. That's really just foul.

  66. Actually, it is different. by raehl · · Score: 1

    asked the DMV who owns a blue Audi A4 1995-model, and they ran the query against the whole DB

    The DMV a department of the state, so the state is searching their own records for information that you provided to them. And in most states, DMV records are considered public information - virtually anybody can file some paperwork to find out what cars you may own.

    Credit card companies are private enterprises and your credit card charges are private information.

    But, that's why the state needs a warrant to search credit card records but does not need a warrant to search DMV records.

    1. Re:Actually, it is different. by Anonymous Coward · · Score: 0

      Yeah, and in this case they seem to have had a warrant to do exactly what they did - namely ask the credit card companies to check their German accounts for specifc transactions and report the owners of these transactions. Next, they will have to get a search warrant for these suspects to search their computers for kiddie porn. It seems to me (a German citizen) that the system is working as intended, and that the police and state attorneys' offices involved in the investigation so far did not play fast and loose with the law. I'm especially gratified that for once, the authorities
      are actually doing their jobs and enforcing the law in a sensible and intelligent manner and my tax euros aren't being gratuitously wasted.

      The really interesting question is if they are going to delete the data collected from suspects that are not convicted of any wrongdoing as they
      are supposed to do.

  67. Read. Understand. Post. by Ihlosi · · Score: 1
    and they are going to "sift through the transactions of over 22 million customers".



    Who is "they" ? Read the article. "They" are the credit card companies. The police or other authorities never had a look at all of these transactions.



    It seems to me that those darn Germans are going to do it by considering half the adult population as suspects.



    No. The 22 million people were never considered suspects, and the police doesn't know what most of them did. Only those who actually transferred that exact amount to that exact account are on the list of suspects that was handed to the police. And that number is only a tiny fraction of 22 million.

  68. Surprise ... by Ihlosi · · Score: 1
    by the by, what is the German equivalent of the US's Social Security Number



    The German equivalent of the SSN isn't as widely misused as a personal tracking number as the US SSN is. It's used for Social Security purposes only. Also, it's a fairly unwieldy chunk of a number (too many digits to memorize, and it's got letters in it, too), printed on a fairly unwieldy piece of paper (too stubborn to fit in a wallet), so on the rare occasions that you actually need it, you'll dig out the folder that has said piece of paper in it and copy it.

  69. Up to 2 years or a fine by autosepha · · Score: 1
    While I don't have the faintest idea what the maximum penalty for owning child porn is in Germany, they certainly won't get any more than that. Some of them will - as I heard in the news today - get away with fines.

    Section 184b StGB (German Criminal Law):

    Up to 2 years of prison sentence or a fine (paragraph 4 sentence 2). In practice that means in most cases they will indeed get away with a fine especially if they don't have a criminal record. Culprits can also be banned from their profession if their jobs involve work with children (e.g. teachers).

    But with this kind of crime social stigmatization (think: public trial) can be much harder than the criminal sentence itself.

  70. It's 14 years or younger by autosepha · · Score: 1
    And that is defined in Germany as sexually explicit pictures of underage (16 years or lower) children.

    It's 14 years or younger: Sections 184b and 176 StGB (German Criminal Law)

  71. Re:German police masterbate to child porn. by Anonymous Coward · · Score: 0

    Oh come on, didn't you read all those posts mentioning CC? That's Creative Commons....

  72. Re:Your rights online? by Anonymous Coward · · Score: 0

    Transactions are supposed to be private information unless there is probable cause to grant a request to look at those records, with judicial oversight.

    And you don't consider paying a kiddie porn side "probable cause"?

  73. We need a global age by elucido · · Score: 1

    WE need to pick an age, and make that age the global age limit. The reason it's so complicated now is because of the weird age of consent laws, and all the different ages all around the globe, and all around the country, to the point where no one knows whats legal and whats not.

    To be safe, assume under 18 is in risky territory. I'm not in the pornography industry, but if I were, I would not even waste my time with ladies or males or whatever, who could not prove they are over 18.

    So I'm saying we need a global age of consent.This way the line is drawn in the sand and anyone who crosses it, knows it was illegal.

    1. Re:We need a global age by mdwh2 · · Score: 1

      WE need to pick an age, and make that age the global age limit.

      To be safe, assume under 18 is in risky territory.

      And that is why you won't get your international consensus.

      Clearly, to get consensus, you should be looking at the minimum age of all countries, not the maximum! (Since countries can still keep their own laws with higher ages if they like, but they can't opt out with lower ages.)

      Pick an age that clearly includes pre-adolescent children, and you will get a consensus . Trying to get the whole world to accept the idea that an image of a 17 year old is the same as an image of a child, then no, you won't.

  74. Re:Slow down Germany, UK is the primary police sta by Anonymous Coward · · Score: 0
    peeps in the UK aren't citizens at all, just Subjects of HM the Queen


    On 1 Jan 1983, the British Nationalities Act (1981) came into force, abolishing the term and status of "subject" with respect to citizens of the United Kingdom, and since 30 April 2003 the term has been legally extinct.

    Although the Court Circulars may occasionally refer to "subjects of HM the Queen in Right of the United Kingdom of Great Britain and Northern Ireland" (or "subjects of HM the Queen in RIght of Canada" (or Australia or New Zealand)), these terms have somewhere between zero legal weight and mildly offensive connotations, and so have fallen out of use by the Royal Household since early 1998. (The final use of the term "subject" or "subjects" with respect to a citizen of a country in which The Queen is also the head of state in the palace circular is dated 21 January of that year, and was shortly after that commented upon in the House of Commons in a somewhat negative fashion).

    In a non-legal sense, one could say that people in the UK, Canada, or New Zealand are the Queen's subjects, but that is likely to be seen as belabouring a point for either romantic or republican purposes.

    That's how I read your comment, incidentally.

    The fact that there is a woman with a hereditary political job with an income paid by the state, whose various children are also paid by the state, and who is expected to be succeeded in the job by a (male) child or (male) grandchild, independent of qualifications, is not entirely unique: there are still hereditary peers sitting in the House of Lords as legislators, and as full members of Parliament with an ability to vote as they wish, they have more real political power than The Queen, who is obliged to take the advice of the Prime MInister and First Lord of the Treasury (with respect to the UK), and her Governors-General or Lieutenant-Governors (with respect to essentially everywhere else), notwithstanding her own wishes.

    In other words, while I agree that it's backwards and annoying that there is still someone as head of state who is rich and daily made richer through special treatment by the state, the rump of hereditary peers in Parliament is much more backwards and annoying, and easier to fix without public outcry.

  75. Mod parent overrat: The Children in North Korea... by gd23ka · · Score: 1

    would beg to be raped for something to eat. You on the other hand are merely
    regurgitating something you saw on TV. But that's one of the ways you are
    duped by making you focus on a detail ("think of the children" while they move
    the big picture around (take away your freedom).

  76. Re:Your rights online? by Anonymous Coward · · Score: 0

    The technical definition of paedophilia is one who is sexually attracted to pre-pubescent children. People who this applies to need to be kept away from children.

    Someone who is sexually attracted to children who have reached puberty (so have breasts, pubic hair, widened hips, get erections etc), but not yet reached the age of majority (depending on country/state) is actually an ephibophile. This isn't really "wrong" as such, as puberty is the point of reaching sexual maturity!

  77. Re:Your rights online? by Anonymous Coward · · Score: 0

    Right here: Canadian Criminal Code, section 163.1. The age of consent for actual sex is lower, but pictures of a person who looks under 18 == child porn, even if they only look a day younger, even if no actual person under 18 was involved in the creation of the picture, and in some cases, even if the acts depicted would be legal.

  78. Re:Your rights online? by Lost+Engineer · · Score: 1

    Yes, it's amazing that we villify people for both have sex contrary to nature's intentions (sodomy) and having sex with individuals who have just reached sexual maturity as nature intended (statutory rape.)

    So basically you can't tie a 14 year old girl up for one night, but you sure as hell can marry her and tie her up for life.

  79. Geheime Staatspolizei by tepples · · Score: 1

    How'd you like to have your credit card # harvested and then find out about it by having the Gestapo kick in your door? Yikes. The Gestapo hasn't been around for over 61 years.

    Here, the term "Gestapo" appears to be used as a shorthand for any organization that fills the role of geheime Staatspolizei, that is, secret state police. There were many such organizations outside Nazi Germany, such as the Soviet KGB. Some are still in operation, allegedly including the US Department of Homeland Security.

  80. You furnish the pictures and I'll furnish the war. by tepples · · Score: 1

    If people were kidnapping children, and running them over in order to film them and sell the videos for profits, then your post might be somehow relevant.

    Is that so much different from what happens on CNN and Fox News?

    "You furnish the pictures and I'll furnish the war." -- attributed to William Randolph Hearst

  81. Re:Your rights online? by freedom_india · · Score: 1

    Did you RTFA? The cops did NOT, have access to 20 million records. They gave the SELECT query criteria to the card company who fired the query against the DB and produced 80-90 rows.
    If your database has 20 million rows, and you as a person search for one select criteria which returns , say, 10 records, does it mean You, as a person looked through 20 million rows and got 10 records??
    No, the DB Query Processor, the DB Manager went through those rows and gave YOU 10.

    --
    "Doing what i can, with what i have." ~ Burt Gummer