|
From CP newsletter.
Interpol operation arrests 3,500 cybercriminals, seizes $300 million[^]
"Another emerging scam tool is AI and deep fake tools to generate synthetic content that appears realistic to the targets or even the voice of a person close to them."
I have gotten a couple of calls where a person claims to have been arrested and they need bail.
Now there is no way I am going to fall for the gift card and meeting on a corner somewhere since I know exactly how bail works. But still if I know the voice on the other end that is going to get complicated. Since other scenarios where gift card and corner might apply (like a claimed kidnapping.)
I would probably still call the police.
But perhaps time to look into a 'key phrase' for the relatives. Or at least the ones that I would give money to in the first place.
|
|
|
|
|
Someone recently tried to phish me, and they had a human at the end of an 800 number as part of the scam.
Someone is paying for that number, so I reported it to the FBI.
It was pretty convincing if you missed a minor detail in the originating email, the same detail that got it through the google filters, and that was that it originated from a gmail address.
I don't want anyone falling victim to them, that's why I reported them.
/snitch
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
fbi? good luck with that circus
Charlie Gilley
“They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
Has never been more appropriate.
|
|
|
|
|
They make it pretty easy actually.
Check out my IoT graphics library here:
https://honeythecodewitch.com/gfx
And my IoT UI/User Experience library here:
https://honeythecodewitch.com/uix
|
|
|
|
|
I'm sure they make it easy to submit stuff. What they do with it is completely up to conjecture.
It's a corrupt organization.
Charlie Gilley
“They who can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety.” BF, 1759
Has never been more appropriate.
|
|
|
|
|
|
They've had a few times I think that they have either hacked and patched vulnerable machines or hacked the hackers and stole money back.
|
|
|
|
|
jschell wrote: look into a 'key phrase' for the relatives When my daughter was little, we had a phrase we taught her. If she wasn't with us (visiting a friend, school, etc.) she knew she had to hear that phrase before going anywhere or doing anything with anyone else. We never actually needed it, but she still remembers the phrase (she's 32 now ).
Software Zen: delete this;
|
|
|
|
|
Is she married and did you teach it to the husband? Otherwise, she failed.
I’ve given up trying to be calm. However, I am open to feeling slightly less agitated.
I’m begging you for the benefit of everyone, don’t be STUPID.
|
|
|
|
|
Hmm. I'm going to assume you're making a joke here, and not insulting my daughter's intelligence. She's a smart one, and will your *cough* stuff *cough* up.
Software Zen: delete this;
|
|
|
|
|
You didn't see the Joke icon on the post?
I'm a programmer, it doesn't take much skill to my stuff up.
Bad knees, nerve impingement in the left shoulder, my 3 yr old granddaughter can mess me up.
I’ve given up trying to be calm. However, I am open to feeling slightly less agitated.
I’m begging you for the benefit of everyone, don’t be STUPID.
|
|
|
|
|
MarkTJohnson wrote: You didn't see the Joke icon on the post? Nope. Sorry if I sounded testy. It doesn't take much to make me go full-bore Papa Bear .
Software Zen: delete this;
|
|
|
|
|
Hopefully she did so she and her husband can teach it to their children.
|
|
|
|
|
I got a text message that I owed the "Well Care" walking clinic some moola with a link to pay. I called the clinic directly to confirm that it was a legitimate text message and the amounts matched. While convenient, frankly, I wouldn't even trust a bill if it came in the mail nowadays!
|
|
|
|
|
One doesn't know their "relatives" that well if one needs a "key phrase". "Who was there" or "where did we", etc. seems more reasonable and more fluid.
"Before entering on an understanding, I have meditated for a long time, and have foreseen what might happen. It is not genius which reveals to me suddenly, secretly, what I have to say or to do in a circumstance unexpected by other people; it is reflection, it is meditation." - Napoleon I
|
|
|
|
|
Other people can potentially discover 'historical' things though.
They won't 'crack' the inanity of "The lazy fox jumps over the big brown hog at midnight in ballet slippers before foie gras with the fellas...."
|
|
|
|
|
I've heard on other social media of AI voice-alike scams. But I had a learning experience last week, (the learning being not to be so stupid). Got a text from an unknown number "Hi Dad, I broke my phone, lost all my contacts; this is my new number". I assumed my son (my daughter doesn't usually do stuff like break her phone) so I texted back "OK; weren't they backed up?" Got a reply "I thought so, but seems not". At that point I actually deleted my son's old number and added the new, then wondered "Maybe it's my daughter?" so stupidly texted back "are you Adam or Beth?" (I used their real names, not Adam/Beth). Got a text back "Adam". So all seemed very normal, not suspicious. Told my wife who immediately called "Adam" on his old number, and had a perfectly normal chat, no prob with the phone at all. Stupid me.
Anyway, if I ever get something like that again, I'll just call back on the number I have for them.
Also had emails recently saying "We have a delivery for you today - will you be in between 1 and 2pm?" Well... that's too blatantly stupid for even me to fall for!
Take care, folks!
|
|
|
|
|
DerekT-P wrote: Also had emails recently saying...
I got a text 'from' UPS which said they had a problem with the delivery and I needed to click the link.
Of course I knew that was stupid and I just deleted it.
However I was in fact expecting a delivery that very day and that reminded me of that. So I checked and there was my package. If I hadn't gotten that spam I probably wouldn't have checked until the next day.
|
|
|
|
|
I see a lot of things like this in the project I'm working on:
Was it necessary at some point in time ?
Was this an ancient C syntax ?
void f(){
return;
}
I would not be surprised if I see old K&R syntax somewhere like this
void f( a )
int a
{
}
CI/CD = Continuous Impediment/Continuous Despair
|
|
|
|
|
Was it necessary at some point in time ?
I would say no, but I can't answer it definitively. But in the 35 years I've been programming C++, I've never been forced to write a 'return' at the end of a void method.
[Edit]
Neither I have been forced (by some older compilers from Borland) to write a return even it was a 'non-void' method. Which ended usually in a desaster, especally when the return type was float or double
modified 21-Dec-23 8:58am.
|
|
|
|
|
I have a vague recollection that in K&R days, the value of a function was the value of the last executed statement. so
f(x)
int x;
{
x += 3;
}
would return whatever x+3 evaluated to. I also seem to recall that a function return had to fit in a register. Not sure if either of those are correct. It was a long long time ago. But not in a galaxy far away.
"A little song, a little dance, a little seltzer down your pants"
Chuckles the clown
|
|
|
|
|
That is a bit similar to powershell which looks just enough like a programming language to lull you into believing it is. In powershell, the return of a function is any value evaluation that is not assigned to something.
And if your function uses function calls, that means it can be anything and everything.
|
|
|
|
|
I think it was never required.
However, someone wrote[^]:
If no return statement appears in a function definition, control automatically returns to the calling function after the last statement of the called function is executed. In this case, the return value of the called function is undefined. If the function has a return type other than void, it's a serious bug, and the compiler prints a warning diagnostic message. If the function has a void return type, this behavior is okay, but may be considered poor style. Use a plain return statement to make your intent clear.
Note, it's not me. I think omitting the return statement in a void function it is fine.
"In testa che avete, Signor di Ceprano?"
-- Rigoletto
|
|
|
|
|
I've seen similar from other sources besides Microsoft.
|
|
|
|
|
Had heard more than 20 years ago, that having a return statement at the end of a void function in C++ was indeed a harmless thing; the compiler wouldn't complain, and things would work just fine. Just that some programmers prefer to have a return in every function they write.
|
|
|
|