Sy Computing Services

Sy Computing Services Official Page of Sy Computing Services, LLC. "Our Services, Your Peace of Mind!"
Residential & Commercial Computer Sales, Service and Remote Support.

Commercial Networking, Managed Services & Server Networks.

šŸ˜†
06/04/2026

šŸ˜†

šŸ˜‚šŸ”§ The Golden Rule of Network Administration šŸ”§šŸ˜‚

"If it works, don't touch it."

Every network administrator has encountered that one device, switch, router, or server that has been running flawlessly for years. Nobody knows exactly why it's working so perfectly anymore... and nobody wants to be the one who finds out! šŸ˜…

šŸ–„ļø Network Admin Reality:
āœ… Uptime: 1,200+ days
āœ… No documented changes
āœ… No one remembers who configured it
āœ… Everyone is afraid to reboot it

āš ļø One innocent change can quickly turn into:
šŸ“ž Emergency Calls
ā˜• Late-Night Troubleshooting
šŸ”„ Unexpected Outages
😱 "What changed?" Meetings

šŸ’” While proper documentation, backups, and change management are essential best practices, every IT professional knows there are systems that have earned legendary status simply because they've been running perfectly for years.

šŸ“š Lessons Every Network Engineer Learns:
āœ”ļø Document everything
āœ”ļø Take backups before changes
āœ”ļø Follow change control procedures
āœ”ļø Test before production deployment
āœ”ļø Respect the equipment that's been quietly doing its job

šŸ˜„ Sometimes the best network maintenance strategy is:
Observe. Monitor. Appreciate. Don't poke the sleeping dragon.

šŸ’¬ What's the longest uptime you've ever seen on a switch, router, firewall, or server?

Animal Doctors (Benbrook, TX) led by Dr. Rhonda Daniels, DVM, provides exceptional pet car in the Benbrook and surroundi...
06/04/2026

Animal Doctors (Benbrook, TX) led by Dr. Rhonda Daniels, DVM, provides exceptional pet car in the Benbrook and surrounding local area. The clinic runs on an Avimark software peer-to-peer Windows 10 network system, and sometimes has a hiccup or two. When that happens, Dr. Daniel's calls me. A shared folder had been inadvertently renamed which caused just one of those hiccups, so the clinic gave me shout to come fix. Do you need help with your commercial or residential IT environment? Give me a call to discuss! (817) 389-3980 - https://www.sycomputing.com

Long read, but interesting.
06/03/2026

Long read, but interesting.

Six working Windows attacks are sitting in the open right now, three of them already seen in a real intrusion, and the researcher who published them did it after he says Microsoft refused him, deleted the account he reported bugs through, and paid him nothing. Microsoft removed his account, called his actions criminal, and pointed at its crime unit. Both stories are out there, and the security world cannot agree on who is more to blame.

He goes by a few names. On GitHub he was Nightmare-Eclipse, most of the coverage calls him Chaotic Eclipse, and his blog runs under the name Dead Eclipse. Nobody has confirmed who he is. There are rumours he once worked at Microsoft, but a rumour is all it is. What is on the record is the pace: in roughly six weeks he published six working zero-days. Six. The GitHub account he used is gone now, removed by Microsoft, which is where the conflict turns sharp.

A zero-day is a flaw the vendor has not fixed yet, sometimes one they did not even know existed. The dangerous part is the timing. When working attack code goes public before there is a patch, every defender starts the race already behind, and every attacker who grabs the code starts ahead. That gap, between the code being out and the fix being ready, is where the damage happens. And that gap is what this fight is about.

Here are the six, and what each one actually does.

The first one turns the antivirus against the machine it is supposed to guard. It is called BlueHammer, tracked as CVE-2026-33825. Windows Defender, the built-in antivirus, runs with the highest power a Windows machine has, the SYSTEM account, because it needs that to scan everything. BlueHammer tricks Defender into reading files it should not touch, reaches the part of Windows where passwords are stored, pulls the password data out, and walks away with that same SYSTEM power. The guard hands over its own keys. Microsoft fixed this one in the April update, so on an up-to-date machine it is closed. And here is a detail that stings: when Microsoft credited the fix, the names they put on it were two other researchers, Zen Dodd and Yuanpei Xu, not the person who actually published the bug. I wrote up BlueHammer in full when it dropped in April.

The second one is RedSun, tracked as CVE-2026-41091. It goes after Defender too, but the other way around. Instead of reading secrets out, it drops attacker-chosen files into protected system folders that are supposed to be off limits. It does this by fooling a Windows storage service with a trick called a directory junction, which points Windows at a folder it was never meant to write to. It worked on fully updated Windows 10, Windows 11, and Server 2019. RedSun sat unpatched for about six weeks while it was already being used in attacks, and Microsoft only put out a real fix on May 21, an out-of-band update outside the normal monthly schedule. The researcher says Microsoft quietly fixed it even earlier without telling anyone, while the bug was live, which would be its own kind of mess if it is true. Either way, six weeks is a long time to leave a hole open that people are already getting hit through.

The third one does not break in at all. It just switches off the alarm. It is called UnDefend, tracked as CVE-2026-45498. It slowly cuts Defender off from its updates so the protection gets weaker and weaker, and it does this without setting anything off. Worse, it can lie to your security dashboard, so the console tells you Defender is up to date and running fine when it is neither. The Cloud Security Alliance flagged exactly this, telling admins to check the Defender version by hand instead of trusting what the dashboard says, because UnDefend can fake it. The machine looks perfectly fine from the outside while its defence quietly stops working. Chained behind one of the privilege attacks, an attacker gets in as SYSTEM and then makes sure the security software keeps getting worse at spotting whatever they do next. RedSun and UnDefend both got their out-of-band fix on May 21, the same day, after sitting open for weeks. I covered the pair back in April when they first dropped.

The fourth one made people sit up, because it beats the thing most people count on to protect a stolen laptop. It is called YellowKey, tracked as CVE-2026-45585, and it gets past BitLocker, the full-disk encryption built into Windows. With about a minute of physical access and a normal USB stick, an attacker drops straight into a SYSTEM command shell on an encrypted drive, no password, no recovery key. It does not crack the encryption, and that part matters. The math behind BitLocker is fine. The weak spot sits in the Windows Recovery Environment, the repair mode that loads before Windows itself, where a trusted piece of that startup process gets tricked into reopening a saved action and letting someone onto the unlocked drive. I walked through the full YellowKey attack last month.

On paper YellowKey scores a 6.8, which counts as medium. That number is misleading. The only reason it is not rated higher is that the attacker has to be physically at the machine. Once they are, the damage to your data is rated high across the board. So for a laptop that gets stolen or left unattended, medium is not the word that should be on your mind.

The fifth is GreenPlasma, another privilege-escalation flaw buried in Windows internals, with no patch at the time of writing.

The sixth is MiniPlasma. It takes a normal user account and pushes it all the way up to SYSTEM on a fully patched Windows 11 machine. It abuses the Cloud Files driver, and the bug it uses is roughly six years old, first found by Google Project Zero, and somewhere along the way it was either never properly fixed or fixed and then undone. I covered MiniPlasma on its own last month.

The anger is written straight into the working code. To pull off its trick, RedSun has to register itself as a fake cloud sync provider, the same kind Windows uses for OneDrive, and it needs a name for that. The name sitting in the source code, where anyone can read it, is SERIOUSLYMSFT, with a comment next to it daring Microsoft to keep playing this game. BlueHammer used the name IHATEMICROSOFT, and it carries a hardcoded password string aimed squarely at Microsoft. This is not a quiet technical disagreement. It is a public fight with Microsoft, spelled out inside attack code that is already in the hands of real attackers.

Huntress, a security firm, investigated an intrusion where an attacker tried to use this toolkit, and three of the four tools they dropped failed. Defender quarantined BlueHammer. RedSun produced no result. The UnDefend tools were run wrong by the attacker, who clearly did not fully understand them. The only piece that worked was a tunnelling tool, used to keep a connection open for later. The code is out there and the danger is genuine, but a properly patched and properly configured Windows machine held up far better than the panic would suggest.

There is another detail from that intrusion that matters for defenders. The attacker got in through a compromised FortiGate SSL VPN account. They came through weak remote access first, and only reached for these tools once they were already inside. The zero-day gets the headlines, but the initial access through a weak account is where the intrusion actually started.

If you run Windows machines, a few things help right away.

→ Get your machines onto the April 2026 cumulative update and make sure the Defender engine is current. The engine updates on its own channel, separate from the big monthly Windows updates, so check both. You can see where you stand by opening PowerShell as administrator and running:
Get-MpComputerStatus | Select-Object AMEngineVersion, AMProductVersion, AntivirusSignatureLastUpdated
→ For YellowKey, the default BitLocker setup, called TPM-only, stays exposed. Switch encrypted devices to TPM+PIN, which forces a startup PIN before the drive unlocks and closes off the physical attack. You can do this through PowerShell, Group Policy, or Intune.
→ Lean on behaviour-based detection, not just signatures. These tools abuse legitimate Windows components doing legitimate things, so a defence that only looks for known-bad files will miss them. Watch for the pattern of the chain, not the fingerprint of a single tool.

The full set of mitigations, including the registry change Microsoft published for YellowKey, is in my breakdown.

That was the technical half. The other half is why this happened at all.

The researcher's version is on his blog, and he tells it plainly. He says he asked Microsoft to communicate with him and was refused, that he was humiliated and insulted in front of people. He says Microsoft deleted the account he had used to report bugs to them, that work he did report got credited to other researchers instead of him, and that he was paid nothing for properly reporting flaws. He says he has proof for every word of it but cannot release that proof yet. And then he set a date, July 14, which is Microsoft's next monthly patch day, and warned that something is coming that day that he says will shatter their bones. That is his account, in his own words.

Microsoft's version is just as clear and points the other way. In an official post from its Security Response Center on May 27, the company said none of these six flaws were reported to it privately before they went public, that the disclosures put customers at unnecessary risk, and that releasing attack code for unpatched flaws is never justifiable and has real-world consequences. Microsoft also said its Digital Crimes Unit will keep bringing cases against people who do this and against those who help them, coordinating with law enforcement. From Microsoft's side, there was no broken agreement because there was no coordination at all, and customers are the ones paying for that.

And that part is not just talk. The whole reason coordinated disclosure exists is to close the window between a flaw becoming known and a fix being ready, because in that window anyone can grab the code. That is exactly what happened here. Within days of the exploits going public, attackers were dropping them onto a victim's network, a company that had nothing to do with the fight between this researcher and Microsoft. The people who pay for a public dump are rarely the company it was aimed at. They are the ordinary organisations whose machines get hit while the dust is still settling.

So one side says the deal was broken and the other says there was never a deal. Both of them are saying it on the record, and both cannot be true at once. From the outside, there is no way to know which one is lying.

What pushed this from a private feud into a bigger fight is that Microsoft's own past works against it. The company has hired people who did the exact thing it now calls criminal, including a well-known researcher who dumped Windows zero-days in public out of frustration and then got a job there. So if publishing this kind of code is suddenly a crime, that is a hard thing to say with a straight face when your own staff list is full of people who did it.

Katie Moussouris built Microsoft's bug bounty programme. She caught something small but telling in how Microsoft talks about this. They used to say coordinated disclosure, a neutral phrase, and she was the one who pushed them off the older term, responsible disclosure, because that word quietly makes the company's wishes the right thing to do and the researcher the difficult one.

Microsoft has now gone back to that older framing, and added the mention of its crime unit, which she described as vaguely threatening. Her worry is the chilling effect, the next honest researcher who finds a serious bug and now wonders whether reporting it will get them threatened instead of paid, and decides to just stay quiet. Her plainest point was that the bugs belong to Microsoft. They wrote the code, so they own the risk to their customers, no matter how the disclosure happened.

To be fair to Microsoft, this is not a company that never pays. It handed out more than 17 million dollars in bug bounties last year and works with hundreds of researchers the normal way. That is what makes this case stick out. It looks like one relationship that went badly wrong, not how the programme usually runs. Why it went wrong is the part nobody on the outside can settle.

There is one more development worth watching. After all the noise, other researchers started reaching out to Nightmare-Eclipse and handing him vulnerabilities for free. One of them is a respected name in Windows security, the person behind the HiveNightmare flaw from a few years back. By his own account, that person did most of the work on a new way to break BitLocker, and the two of them are now sitting on it together. This started with one researcher and is turning into a group, and Microsoft's response is part of what pulled the others in.

There is also the timing. Back in February, Microsoft said its researcher leaderboard would change in July 2026, switching from a points system to one based on the money actually paid out, so the rankings match real rewards. July. The same month as the threat. And so you have to wonder whether that fix, meant to make researchers feel they get a fairer deal, came too late for the ones who already feel burned.

Two things are true here at once, and the bounty reform does not change either one. He found six serious holes in Windows and, by his own account, reported them the right way. What he got back, and this is on the public record, was a deleted reporting account, his credit handed to other people, no money, and then a company that owns GitHub using GitHub to wipe him while waving its crime unit at him. A company worth hundreds of billions, with hundreds of thousands of staff, against one researcher who walked away with nothing. That is the one side. The other side is just as real. Dumping working attack code for unpatched flaws hurt people who had nothing to do with this fight, and the code did get grabbed and used because it was sitting there for the taking. Both of those things happened.

My question in this whole story is, who are the real criminals here? I have asked myself what I would have done in Dead Eclipse's shoes, and honestly, I think I would have done the same.

I also think there should be far more conversation about the work of bug hunters, the people who find the holes wherever they happen to be. They are not there to break anything. They are there to make the internet, and the world, a little safer. And they get treated as an afterthought, and badly underpaid. They carry the risk, they do the hard part, they hand it over, and the reward is a thank you if they are lucky, a lawsuit if they are not.

It has happened so often, yes, even to me, that a company was saved from ruin by one of these reports. Company after company, they take the report, they quietly fix it, and it often ends the same way. The hacker is left with zero, and sometimes even branded a criminal, while the company and its expensive lawyers walk free.

Microsoft is not unique here, not by a long way. This happens everywhere, and that is my whole point. That is exactly why we need to start talking about it out loud.

This is what pe*******on testing looks like, getting in, escalating your access, moving through a network, and understanding a system better than the people who run it. It is also where bug hunters start, learning to find the holes before anyone else does. That is exactly what I teach in my ethical hacking course, from your first day with zero experience to thinking and working like a real hacker:

→ https://www.udemy.com/course/ethical-hacking-complete-course-zero-to-expert/?couponCode=MAY2026

Hacking is not a hobby but a way of life. šŸŽÆ

Read the full breakdown:
→ https://hackingpassion.com/nightmare-eclipse-microsoft-zero-day-war/

Research & writing: Jolanda de Koff | HackingPassion.com
Sharing is fine. Copying without credit is not.

Oops! Thanks Meta!
06/02/2026

Oops! Thanks Meta!

Hackers took over some of the most valuable accounts on Instagram over the weekend by asking Meta's own AI support bot to hand them the keys, and it agreed without checking whether the person asking actually owned the account. They never cracked a password, sent a phishing link, or got near the victim's inbox. They opened a support chat, typed a few polite sentences, and walked off with accounts worth hundreds of thousands of dollars.

The accounts that got hit were not random or low value. The dormant Instagram page for the Obama White House, untouched since the presidential handover in January 2017, was hijacked and defaced with a pro-Iranian image. The account belonging to the Chief Master Sergeant of the U.S. Space Force went too, along with the beauty retailer Sephora, the app researcher Jane Manchun Wong, and a set of short, rare usernames like and that are valued together at more than a million dollars on the underground market.

The uncomfortable part is how little skill it took. Instagram has a long, frustrating reputation for terrible account support, where getting a locked account back can take weeks of fighting an automated ticket system with no human anywhere on the other end. Meta's answer was an AI support assistant, introduced late last year and then put in charge of account recovery, handling common tasks like relinking a lost email, resetting a password, and confirming that someone owns the account they claim. To do that job, the assistant was handed real write access to the systems that manage accounts.

That access is where it fell apart. An attacker would first set up a VPN or proxy with an IP address near the real owner's usual location, which kept Meta's automatic fraud checks quiet. Then they opened a chat with the AI assistant and asked it, in plain language, to link a new email address to the target account. The bot did it, and sent a verification code straight to the attacker's email.

```
Attacker (connected through a VPN near the target's location):
Opens a chat with Meta's AI support assistant
Asks it to link a new email to the target account
Gives the target username and an attacker-controlled email

Meta AI support bot:
Links the attacker's email to the account
Sends an 8-digit verification code to that email

Attacker:
Uses the code to reset the password
Refreshes the account's backup codes
The real owner is now locked out
```

With that code in hand, the attacker reset the password, refreshed the account's backup codes, and shut the real owner out. The genuine account holder never got a prompt to confirm anything, and no warning ever reached the email already on file. From the first message to a locked-out owner, it took minutes.

The reason this worked comes down to who was allowed to do what. The AI bot had permission to change the email on an account and trigger a password reset, something a normal user cannot do directly. The attacker had no such permission and no credentials at all, so instead of going at the account head on, they convinced the one thing that did have the permission to use it on their behalf. The bot did exactly what it was designed to do, just aimed at the wrong account. Security people have a name for this kind of flaw, the confused deputy problem, and it was first written up back in 1988. The new twist is that the deputy here is a language model, and a language model can be talked into things with words instead of code.

The way it was triggered looks like prompt injection. The bot reads a message as a blend of information and instructions and cannot reliably tell the two apart, so part of what looks like ordinary detail gets acted on as a command. It is the same underlying weakness as SQL injection in old web forms, where text typed into a field as data ended up running as a database command, and a language model has no clean way to separate data from instructions because making sense of natural language is the job it was built for. But the real problem was not the wording. It was that the bot acted on the request without ever confirming who was asking, and that is what really made the attack possible.

None of this should have come as a surprise. The security community has warned about exactly this setup for years. The OWASP project, which publishes widely used security guidance, released a top ten list of risks for large language model applications back in 2023, and one of the named risks is excessive agency: giving an AI too much room to act, especially the power to take actions that cannot be undone, without a person or a hard check standing in the way. Meta built the thing that list warned against.

Multi-factor authentication mattered here, but not as a guarantee. The people who shared the method on Telegram claimed it failed against accounts with a second login step switched on, and Krebs on Security read it the same way, that even a simple SMS code would probably have blocked it. Other researchers and outlets are less sure, with several reporting that the bot got past two-factor protection anyway, and at least one well-known victim who normally runs that kind of protection still lost their account. The reason lies in how account recovery works. Recovery is built to let people back in when they have lost their normal login, so it deliberately relaxes the usual checks, and that is exactly the moment the AI was making the decisions. When the bot did ask for proof, attackers got around it. In the cases where it asked for a selfie to confirm identity, they fed the victim's public profile photos into an AI video generator and used the fake clip to pass the check. So turn it on, because it clearly made this harder and stopped the simple version of the attack, but do not treat it as foolproof.

There is a bitter irony in all of this. When Meta launched this AI support, it sold the location awareness as a security feature, telling users its systems recognized their usual devices and familiar places better than ever. That same location check is exactly what a cheap VPN defeated. What Meta presented as protection became the way in.

The people behind the takeovers claimed to be pro-Iran, and the message left on the Obama account leaned that way. Attribution is one of the hardest parts of security though. A VPN hides where someone really is, a claim posted on Telegram costs nothing, and a political image pasted onto a stolen account proves only that the account was stolen. What we can be sure of is how the attack worked. Who was really behind it is far less certain.

Meta pushed an emergency patch over the weekend, cutting off the AI flows that had direct write access to the email and password systems, and said the issue was resolved and affected accounts were being secured. The company also said there was no breach of its systems, which is true in a narrow technical sense, since no database was cracked open and no credentials were stolen from Meta directly. For someone who lost a six-figure handle over a single weekend, that wording is no comfort. The account is gone either way, and researchers were quick to point out that a logic flaw letting strangers seize accounts at will is still a failure, database intact or not.

The bigger worry is that Meta is almost certainly not the only one. The same design decision, an AI agent wired into production systems with real power to act and no firm verification step in front of it, sits in plenty of places nobody has tested yet. The fix is neither complicated nor new. An action that cannot be reversed, like rebinding the email on an account, should never run on a language model's judgment alone. It needs a deterministic check that lives outside the model, a confirmation sent to the contact already on the account, rate limits on reset attempts, and logging that flags anything odd. That is ordinary practice for any sensitive system. The mistake was not applying it to the AI.

If you want to keep this kind of thing away from your own accounts, a few steps go a long way:

→ Turn on multi-factor authentication everywhere you can. It made a real difference even in this case, and an authenticator app or a hardware key is stronger than an SMS code.
→ Use an email address for your important accounts that you do not publish on your website, your LinkedIn, or anywhere else public. The harder it is to find, the harder it is to use against you.
→ Generate a fresh set of backup recovery codes and store them offline, in a password manager or printed and kept somewhere physical, never sitting in your email.
→ Check your active login sessions now and then and log out anything you do not recognize. On Instagram that lives under Accounts Center, Password and Security, Where You're Logged In.
→ If a password reset email turns up that you never asked for, do not click anything inside it. Open the app yourself and check that your linked email and phone number are still your own.

This attack was social engineering, plain and simple, convincing a support channel to act for someone who had no right to ask. My ethical hacking course has a full section on exactly that, built around real cases where attackers got a help desk to reset a password and take control of a high-profile account. It also covers how they use a VPN to appear in a different location and slip past checks that assume the request comes from the real owner, and how they move through a system and escalate privileges once they are inside. The course teaches you to think like a black hat, step by step:

→ https://www.udemy.com/course/ethical-hacking-complete-course-zero-to-expert/?couponCode=JUNE2026

Hacking is not a hobby but a way of life. šŸŽÆ

Research & writing: Jolanda de Koff | HackingPassion.com
Sharing is fine. Copying without credit is not.

Read the full breakdown:
→ https://hackingpassion.com/meta-ai-instagram-account-takeover/

Trailer Lott is a locally owned and operated business offering top quality trailers and accessories at a very reasonable...
05/28/2026

Trailer Lott is a locally owned and operated business offering top quality trailers and accessories at a very reasonable cost to you. From the smallest utility trailer to the biggest equipment haulers, they offer top brands at fair prices. Kelly and Markus needed new machines to replace their slow ones in the office, so I got them set up with 2 business-class reconditioned AiO's with 3 year warranty. Need to look into upgrading or replacing your home or business computer equipment? Give me a call I'd love to talk with you!

(817) 240-5761
https://www.sycomputing.com

Great to see Mark and Joanna Crawford of Crawford Park Financial today. Crawford Park Financial is a team of dedicated p...
05/26/2026

Great to see Mark and Joanna Crawford of Crawford Park Financial today. Crawford Park Financial is a team of dedicated professionals with years of experience in real estate development, hard money loans, and consumer finance. They're people just like you who strongly believe in the value of investing in real estate. We did a bunch of onsite IT stuff today, e.g., worked on IP phones and headsets, commercial copier stuff, fixed a dumbfounding issue with Outlook, set up their Google Nest, etc. It was a good day! Thanks Mark and Joanna!

Do you need help with your home or business IT environment? I'd love to talk with you! Give me a call to make an appointment today?

https://www.sycomputing.com

Remember . . .
05/25/2026

Remember . . .

Address

417 W. Graham Avenue
Godley, TX
76044

Opening Hours

Monday 10am - 6pm
Tuesday 10am - 6pm
Wednesday 10am - 6pm
Thursday 10am - 6pm
Friday 10am - 6pm
Saturday 10am - 2pm

Alerts

Be the first to know and let us send you an email when Sy Computing Services posts news and promotions. Your email address will not be used for any other purpose, and you can unsubscribe at any time.

Share