Slashdot Mirror


FTC To Revisit Robocall Menace

coondoggie writes "While there are legal measures in place to stop most robocalls, the use of the annoying automated calling process seems to be on the rise. The Federal Trade Commission, which defined the rules that outlawed most robocalls in 2009 has taken notice and this October 18th will convene a robocall summit to examine the issues surrounding what even it called the growing robocall problem." A true robocall summit would be a great way to field candidates for the Loebner Prize! But since these will be humans (regulators, etc), I hope, but doubt, they can somehow do something to stop the constant fraudulent robocalls I get from credit-card scammers. In the meantime, it's good to keep a whistle handy.

15 of 167 comments (clear)

  1. They have no intention of really doing anything by rudy_wayne · · Score: 5, Insightful

    The vast majority of "robocalls" I receive are political. These calls are specifically exempted from the rules.

  2. Re:They have no intention of really doing anything by TheGratefulNet · · Score: 3, Informative

    its not even political. its a scam. 'we would like to take your poll on some issues. oh, and stay online so we can tell you about our CRUISE PACKAGE!'

    its all a scam.

    one thing I'm working on is a hardware device that will use a caller id modem, get the # string and check things like mrnumber.com (which is easy to script/call). the spam number is easy to get and I can basically NOT let the call ring thru if its on the spam list. if its not, the relay will click, the 2 wires will pass thru to the actual phone system in my house and I'll hear the ring.

    best way to avoid them is to not even give them an answer. they think there's no one ever there. best way to deal with them (since killing them is illegal. I think?)

    --

    --
    "It is now safe to switch off your computer."
  3. Spam calls by Anonymous Coward · · Score: 3, Informative

    I think what we're seeing today is a different form of robocalling. Legislation has (thankfully) made legitimate, above the board robocalling operations unprofitable.

    What we see now are scams run by criminal organizations, not unlike spam. They used to try sell you things, now it's just outright fraud. With low cost voip-hardline services it's easy to setup a fly-by-night operation and make a few hundred thousand calls before you're shut down.. If you get shut down. The FCC/FTC seem to be pretty slow acting.

  4. Enter: The Robo Answering Machine by Maximum+Prophet · · Score: 4, Funny
    We need an answering machine that can use voice recognition to detect real callers, and forward them to your cordless/cell phone, and keep the sales calls in voice jail hell.
    1. RAM: Hello
    2. Salesguy: Hello, I'm calling from ****
    3. RAM: I'm listening
    4. Salesguy: Our pills are the best pills there are
    5. RAM: Tell me more
    6. Salesguy: They cure gout, baldness, and cancer.
    7. RAM: Go on

    ...

    The Robo Answering Machine scripts wouldn't even need to be that interactive. As long as the device could detect when the salesguy was speaking, and respond with a random interogative or prompt. There could even be contests to generate the best scripts.

    --
    All ideas^H^H^H^H^Hprocesses in this post are Patent Pending. (as well as the process of patenting all postings)
  5. Re:They have no intention of really doing anything by meerling · · Score: 4, Interesting

    it's better to play the 'out of service' or 'disconnected' tone for them so their robocaller will automatically remove your number from the list. They don't want to waste time calling invalid numbers, and someone not answering is still a potential call, while a dead number isn't.

    A friend of mine had his answering machine set up to play the tone, then do a normal message back when we were being inundated in robocalls here. It's amazing how effective it was. I even borrowed a copy of his tape for a week to 'dissuade' the vast majority of them. Worked like a charm. (Yes, we had tape based answering machines, the digital ones were too expensive and limited at that time.)

  6. Whistle damaged hearing? by djl4570 · · Score: 3, Funny

    I find it hard to believe that POTS supports the dynamic range needed to damage someone's hearing.

  7. Re:Simple solution by dkleinsc · · Score: 3, Insightful

    You mean like the Do Not Call complaint system, set up by the FTC to report robocalls as well as calls to numbers in the Do Not Call registry? (I agree a text would be more efficient, but reporting exists, and isn't remotely difficult)

    The big problem is actually tracking down the bad guys. Phone robocall spammers aren't doing anything fundamentally different from what email spammers do.

    --
    I am officially gone from /. Long live http://www.soylentnews.com/
  8. Credit Card by the+eric+conspiracy · · Score: 4, Informative

    The ones I get are usually credit card scams.

    I've heard it said that these calls are coming from offshore making it hard for the FTC to trace.

    Too bad we can't set the RIAA and MPAA loose on them.

  9. Doesn't matter by oGMo · · Score: 3, Insightful

    Just ignore any number your phone doesn't recognize. Better, have software ignore it for you. If it's important, they can leave a message (and potentially be whitelisted).

    If your complaint is "but I have a landline," the solution is even simpler: disconnect it from a phone. :-P

    --

    Don't think of it as a flame---it's more like an argument that does 3d6 fire damage

  10. Re:They have no intention of really doing anything by vlm · · Score: 3, Informative

    one thing I'm working on is a hardware device that will use

    Not trying to rain on your parade, and hey, if it works for you, go and do it, but once you have an asterisk PBX and voip working, setting up some caller ID routing rules is almost terminally simple as shown below.

    So in /etc/asterisk/exten.conf you'll have a stanza for incoming calls

    [provider-in]

    Now inside that start if/then routing kicking junk out. Now please be patient with me, I'm old, tired, and this is from memory, and asterisk config language is like F-ing LISP but ten times worse in how even something "simple" needs endless nested parens, brackets, and curlies.

    exten => _XX.,2,GotoIf($[${CALLERID(num)}" = "Unknown"]?200)
    exten => _XX.,4,GotoIf($["${CALLERID(num):0:3}" = "800"]?200)

    Take a wild guess what line number 200 looks like:

    exten => _XX.,200,VoiceMail()
    exten => _XX.,201,HangUp()

    I also have a line 300 termination that simply hangs up on certain blacklisted numbers. and a "ZapaTeller" or whatever its called that squirts SIT (disconnected) tones. And I believe I have a milliwatt termination, and a music on hold termination in there somewhere.

    Now as a practical matter this is an excellent way to learn who blocks caller ID and who doesn't. I've made some weird discoveries like one of my kids doctors categorically blocks outgoing caller ID every time he calls (annoying). Also the school. Other than that, no problemo.

    Whenever I mention this, I get breathless FUD about how the world might end because a CIA agent can't call me to tell me to hack into NORAD and block the missile launch. Oh wait that was the movie "Wargames" again. Well anyway the point is ignore the FUDders they aren't worth it.

    --
    "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
  11. Re:They have no intention of really doing anything by tripleevenfall · · Score: 4, Informative

    I work for a large non-profit health system in the midwest. We implemented "robocalls" to serve as appointment reminders. Our patients seem to like and appreciate them. They are not opt-in, but a person can opt-out. These calls save time and money, because they reduce no-show rates and they also reduce incidences of people showing up unprepared for the service they need. ("You weren't supposed to eat this morning, unfortunately we can't do the procedure now.")

    So, not all robocalls are bad. There just needs to be a law that you can only use automated calls with people who have initiated a business relationship with you.

    Politicians always exempt their own calls, of course. And the "previous business relationship" thing is being interpreted very broadly right now. If you donated to the DNC or a candidate in 2008, they interpret that as you wanting junk mail and phone calls for every candidate they have this time around and continue robo-calling.

    We need to get politicians to play by the same rules as everyone else. (fat chance)

  12. Re:They have no intention of really doing anything by vlm · · Score: 3, Informative

    Oh and I forgot another step of my exten.conf script.

    Certain numbers get a GOTO to line 100 where I ring every phone in the house plus an analog adapter with a weird phone ringer on it. Mom, Granny, auntie, workplace, friends, coworkers, neighbors, you get the idea, basically if we know them, we get a special ring.

    However unknown numbers fall thru to line 50 or so and only ring the regular phones.

    You can do multiple lines with voip and selective ringtones and such, but it turns out to be simpler and cheaper to just do some analog weirdness to a special extension.

    When I was single and living alone I shut off my ringer and did not accept incoming calls. Message service only... I enjoyed my freedom.

    --
    "Science flies us to the moon. Religion flies us into buildings." - Victor Stenger
  13. Re:Simple solution by tompaulco · · Score: 4, Interesting

    The Do Not Call list should charge huge fines and reimburse the reporting party something like $50 per incident.

    --
    If you are not allowed to question your government then the government has answered your question.
  14. Re:They have no intention of really doing anything by X0563511 · · Score: 4, Informative

    Imagine this: if instead of just ignoring the packets, you could somehow make their DNS server say "no such host."

    Your analogy doesn't apply. ACD systems don't care about non-answers, they don't remove the number then. If they get an answering machine they can detect, they drop the call but keep you - but if they get a number disconnected or other telco error, they remove you - at least from that campaign. Nothing stops the meatbag in charge from feeding you into the hopper again later.

    Disclaimer: I used to work with these systems. I do know how they work, having implemented them. (for a legitimate collections agency, not bullshit "Want a cruise!?" nonsense)

    --
    For large sets, this will be our guide even unto death, for the LORD will work for each type of data it is applied to...
  15. Re:They have no intention of really doing anything by Obfuscant · · Score: 3, Interesting

    I work for a large non-profit health system in the midwest. We implemented "robocalls" to serve as appointment reminders. Our patients seem to like and appreciate them.

    My "large profit health system" implemented the same thing. Didn't bother telling me ahead of time. I do not appreciate a robocaller calling my office (where several people work) and not bothering to ask for me, it just starts spouting that I "have an appointment with ..." and the details and any special instructions to whoever happens to pick up the phone. I consider it a violation of HIPAA to do that. Some of the details are pretty specific, and there is no way to be sure I'll ever get the message.

    They are not opt-in, but a person can opt-out.

    I've been trying to opt-out ever since they started doing this and they simply cannot do it. I was told today that it was not possible to opt-out. The only option is to give the system a different number where it is almost impossible to reach me, but at least they aren't dumping my medical information to anyone else.

    These calls save time and money,

    Yes, because we all know how important it is to save a phone operator in a medical office "time and money", compared to obeying federal law and patient requests.

    So, not all robocalls are bad.

    You used a very poor example of a good one. At least the credit card scammers aren't spreading private information around after being told not to.