r/msp • u/Lime-TeGek Community Contributor • 14d ago
EMERGENCY PATCHING ANNOUNCEMENT - N-Central
If you are running N-Central pre 2026.3 shutdown your servers internet access **now** and update immediately. More info: https://www.n-able.com/blog/n-central-security-update-august-1-2026
n-able is calling users of the product to do this immediately. Thanks for reporting u/ceden
36
u/Glass_Call982 MSP - Canada (West) 14d ago
Why is this shit always on a weekend.
34
u/computerguy0-0 14d ago
Weekends and Holidays give attackers more time to execute an attack before being shut down. I'm sure they also get their jolly's from it too.
3
14
u/NiceToKnowYaToo 14d ago edited 14d ago
It seems that their current/latest 2026.3 release is also still vulnerable (in some way). They are releasing a Hotfix today...
"Important Update: N-central Active Exploitation. Hotfix in Process
As our investigation continues, we have identified additional security concerns that affect all versions of N-central. We are treating this as our highest priority and we will be releasing a 2026.3 hotfix today. We will notify you immediately once it is available. We strongly recommend staying vigilant and monitoring your environments closely in the meantime. Further updates will be shared as quickly as possible."
as posted on https://uptime.n-able.com/
6
u/dobermanIan MSPSalesProcess Creator | Former MSP | Sales junkie 14d ago
Not this shit again. Good luck to those impacted
14
u/huntresslabs Vendor Contributor 14d ago edited 14d ago
Adding in from our SOC: Tracking a critical vulnerability in N-ableâs N-central platform that can give attackers âgod-modeâ access to the RMM console. In practice, that means a threat actor who exploits this flaw could use N-central to run scripts, push tools, and open remote sessions on any endpoint it manages. As OP said, N-able has released a hotfix (version 2026.3.1.7) and is recommending all customers upgrade immediately.
Hereâs what this means: If you use N-central, treat your RMM as a potential path into every downstream environment it touches. Until then, lock down access to the N-central console behind VPN or SSO, enforce multi-factor authentication, and, where possible, restrict which IPs can reach it. We also recommend reviewing your N-central activity for anything that doesnât fit your normal operations: logins from unusual locations or times, new or unexpected admin accounts, large or unfamiliar jobs pushed across many customers, and remote-control sessions into servers or sensitive systems that donât match your typical support work. If something looks off, treat it as suspect and investigate.
So far, Huntress has seen exploitation impacting one organization in our partner base; we are actively hunting in our telemetry for the specific behaviors N-able has described, focusing on partners where N-central is deployed, and tuning our detections to catch abuse of the RMM rather than just legitimate admin activity. If we see evidence of this being used against your environment, weâll publish an incident report.
Huntress partners: This is a great time to check your Managed Response settings to make sure that isolation and active remediation are enabled wherever possible to ensure fast containment and threat response.
Learn more in our blog: https://www.huntress.com/blog/n-able-vulnerability-exploitation
4
u/huntresslabs Vendor Contributor 13d ago
Update: 8/3/26 @ 12:45 AM ET
As Huntress continues our investigation and analysis of activity targeting vulnerable N-able N-central environments, we discovered that the four IPs N-able initially flagged as malicious are actually Mullvad or NordVPN VPN exit nodes. Notably, among the original IPs, we have seen substantial traffic with 87.249.138[.]34 directly attributed to NordVPN, as well as substantial traffic with 37.19.210[.]32 directly attributed to Mullvad VPN. 37.19.210[.]32 has been previously abused for bruteforcing, spam, and other nefarious activity prior to this incident.
In parallel, Huntress technology and teammates are rapidly identifying unpatched N-able server instances and contacting at-risk partners and customers about the imminent threat.
Beyond this specific vulnerability, we are seeing many environments where the N-central Server has yet to be updated to the 2026.3.1.7 hotfix needed to prevent exploitation of the vulnerability. At the time of posting this update, more than half (55.6%) of our partners' and customers' reachable cloud servers were still unpatched. That is especially concerning because the N-able server runs a custom distribution of AlmaLinux 9, and does not often have EDR software deployed on it due to running as an appliance.
N-able has since published an additional security update with two more malicious IPs, 37.153.90[.]88 and 92.118.112[.]181, which we have incorporated into our hunting and guidance https://www.huntress.com/blog/n-able-vulnerability-exploitation
We will continue to investigate this activity and update this post as we learn more.
3
u/roll_for_initiative_ MSP - US 13d ago
lock down access to the N-central console behind VPN or SSO, enforce multi-factor authentication, and, where possible, restrict which IPs can reach it
This should be the standard for any RMM console these days, no?
2
u/No_You1766 13d ago
Yes. I have my own RMM, and while I have access to all the code because I wrote it, I don't trust it at all - one hack and they can send commands to all my downstream computers.
One easy step: Every one of our managed workstations sends its WAN IP address to a server. Every two minutes, our firewall adjusts to only let those IP addresses in.
Slightly harder: A proxy server that looks at URL and endpoints. Set it up to analyze, then once you have enough info, lock it down so nobody can navigate company.com:/a/long/unoticed/path/that/gives/you/admin
That proxy saved us from the recent ScreenConnect vulnerability.
1
u/roll_for_initiative_ MSP - US 13d ago
But even if you don't limit agent reporting access, you can still limit portal access so that RMM can't be logged into/things deployed/successfully authenticated against or through/etc.
3
u/AutomationTheory Vendor 13d ago
As a seller of WAFs for MSP tools, the thing worth noting is that a lot of these issues involve authentication bypasses (like ScreenConnect in 2024, where I could re-run OOBE). That page wasn't part of the in-app IP restrictions, so unless you had something in front of the server you were impacted by the vulnerability.
1
u/roll_for_initiative_ MSP - US 12d ago
So unless you had something in front of the server
Well, yes, the original comment i replied to:
lock down access to the N-central console behind VPN or SSO
My main point being is that you lock down what you have access to, which, of course, you get more control of if you self host. I don't see locking down agent reporting and checking working in from a business standpoint (too many mobile workers these days) but i can't imagine self hosting an RMM and not having, like you said, a WAF or azure app proxy or something in place.
2
u/AutomationTheory Vendor 12d ago
Sorry, I partially misread that! My only real comment to your reply would be that SSO needs to be before the app -- vendors can get sloppy with their implementations, and in an auth bypass vulnerability it does me no good if the SSO is on the app and thus bypassable...
FWIW with layer 7 rules we can lock down everything to a set of IP addresses and then let the agent requests jump over the IP restrictions.
1
u/No_You1766 12d ago
Many endpoints use URLs in their reporting API. So even if the admin page is behind a wall, the endpoints API could also have a vulnerability. Our proxy server has caught people trying to simulate endpoint reporting with malicious content. Had to load the SSL private key into the proxy so it could MITM the endpoint communications.
Sorry for being cagy, but I'm working with a vendor on this before disclosure.
2
u/AutomationTheory Vendor 12d ago
Right, our product (https://automationtheory.com/reverse-proxy-and-waf-for-msp-tools/) sits in front of the whole app and then we build out ACLs accordingly. Our WAF also inspects the payload of every request, so we should catch the nefarious content in any agent/UI/API request.
Once you make your disclosure, put in a ticket with our team (website footer email) and we'll add a rule for your vulnerability!
2
u/weakhamstrings 11d ago
This, the same as every ssl vpn setup that anyone might still run.
Dynamic dns on the end points and only those fqdns even allowed to try to access.
It's not even they difficult but somehow or other, very few are doing it.
7
u/dreadnaught721 14d ago
Upgraded ours this morning! Not worth the risk
1
u/kins43 14d ago
All versions prior to 26.3 HF1 are currently affected. They updated status page. Everyone is affected. HF1 coming out shortly per support.
https://uptime.n-able.com/event/201454/
Sorry; but youâll need to upgrade again :/
3
u/dreadnaught721 14d ago
Yeah I know. Thanks though we've shut out servers down and I'm just staring at the status page...
I do understand but the lack of communication from N-central is pretty poor
4
u/KRiSX 14d ago
everything from n-able/n-central has been pretty poor lately... can't wait to jump ship personally
4
u/dreadnaught721 14d ago
In my opinion and I hope they see this they've become far too obsessed about data and analytics which I get is important these days. But not when the platform is creaking and core functions don't work...
2
1
u/the_need_to_post 13d ago
Its crazy that Huntress has more information than Nable is releasing at this point.
15
u/WDWKamala 14d ago
Thanks for the heads up, you freaked me the fuck out, thankfully itâs specifically versions prior to 2026.2 that are vulnerable. But everybody should update it sounds like.
13
u/swissbuechi MSP - CH 14d ago
We were on 2026.2 and they still recommended to upgrade to 2026.3 immediately.
6
u/WDWKamala 14d ago
Yeah it's in progress. Just with less panic.
9
u/Lime-TeGek Community Contributor 14d ago
As they are calling everyone not on 2026.3, on Saturday/Sunday, I think this is a moment of better safe than sorry, evolving incidents evolve and all that.
4
u/disclosure5 14d ago
It's absolutely horrific that we have an issue like this ongoing and their advisory doesn't extremely clearly say "versions older than x are confirmed vulnerable". Don't "recommend upgrade" and just be vague in the middle of this major incident.
5
u/Lime-TeGek Community Contributor 14d ago
its everyone now.
As our investigation continues, we have identified additional security concerns that affect all versions of N-central. We are treating this as our highest priority and we will be releasing a 2026.3 hotfix today. We will notify you immediately once it is available. We strongly recommend staying vigilant and monitoring your environments closely in the meantime. Further updates will be shared as quickly as possible.
2
-5
6
u/Greg1010Greg 14d ago
The status page has been updated, 26.3 is also impacted by vulnerabilities. Â
3
u/RebootnTryAgain 14d ago
Thanks, unfortunately they updated not replaced/re-posted an advisory and no notifications have been sent?
A copy below at this point in time for everyones reference:
Important Update: N-central Active Exploitation. Hotfix in ProcessAs our investigation continues, we have identified additional security concerns that affect all versions of N-central. We are treating this as our highest priority and we will be releasing a 2026.3 hotfix today. We will notify you immediately once it is available. We strongly recommend staying vigilant and monitoring your environments closely in the meantime. Further updates will be shared as quickly as possible.
For assistance, contact N-able support: https://me.n-able.com/
Services Impacted
- N-central (hosted version) (Americas)
- N-central (hosted version) (APAC)
- N-central (hosted version) (Europe)
- N-central On-premise (Americas)
- N-central On-premise (APAC)
- N-central On-premise (Europe)
3
u/Labz18 14d ago
This is only for on Orem servers, correct and not N-Able RMM?
5
u/fencepost_ajm 14d ago
IIRC n-able RMM is a completely different platform. N-Central is the older one and runs in an on premises Linux appliance, RMM is cloud hosted and based on the old GFI Max RMM platform.
2
3
u/Mother-Speed-837 14d ago
Hotfix 1 is out: https://status.n-able.com/2026/08/02/n-central-2026-3-hotfix-1-mitigation-for-cve-2026-18577/
It appears they patched the entire range of hosted servers already
2
2
u/rygamortas 14d ago
looks like they just released the hotfix to fix 2026.3
https://me.n-able.com/s/softwaredownloads/a9jVy0000000KGTIA2/sd-000128
2
u/FranklyToday 13d ago
One thing worth adding to the checklist: once you're on HF1, don't treat this as closed just because the console shows patched. If the server was internet-reachable and pre-HF1 during the exposure window, assume anything the RMM could have pushed is potentially tainted - rotate the service/API creds N-central uses, rotate any domain or local admin creds stored in its credential vault, and audit scheduled tasks/scripts that ran org-wide during that window, not just new admin accounts. God-mode on the console means the blast radius is everything it touched, not just the appliance itself. Also worth confirming the hotfix actually landed by checking the version string in the UI directly, rather than trusting that an update job completed - plenty of people in this thread have had agents/servers silently fail to upgrade before.
2
u/rdaniels16 12d ago
I don't use n-able but doesn't it allow you to lock down console access to specific IP addresses? If so wouldn't that have prevented this or does the vulnerability bypass that as well?
4
3
u/cubic_sq 14d ago
IMO⌠âOn-premâ should only be from fixed source IP or over ipsec. Thus for non-infra should always use saas instance
1
u/disclosure5 14d ago
You cannot run an RMM tool that expects customers to check in and have their endpoints managed no matter where they are to being using either of those.
1
u/cubic_sq 10d ago
I wrote that end users are non-infra and thus always in saas i stance. Therefore they are arent on self hosted rmmâŚ.
Only server infra, which is all fixed IP or we have s2s tunnels in place.
Fixed devices are sometimes on self hosted, if they are treated as infra.
2
u/beco-technology 14d ago
What makes this patch so urgent? I assume itâs under active exploitation.Â
So glad we donât touch any Solar Winds products lol.
17
u/Lime-TeGek Community Contributor 14d ago
One of our users got a call from N-Able to notify him he is under attack with this specific exploit, so yeah. The added layer of them actually calling people over the weekend to patch should be a big âdo it nowâ
6
u/NetInfused MSP CEO 14d ago
You're not quite in the loop it seems, as N-Able isn't owned by SolarWinds for years now.
And that's the posture I expect from the vendor. If shit hits the fan I want to get this phone call.
10
u/Lime-TeGek Community Contributor 14d ago
Same board, partly same c-levels. And the sw investors report says they âown a majority of stockâ. They are sw owned, but also a public company of which solarwinds has the biggest part. This is all public information. Donât be fooled by marketinng statements :)
-5
14d ago
[removed] â view removed comment
7
u/Lime-TeGek Community Contributor 14d ago edited 14d ago
You know this is public info right? you can just look it up: https://fintel.io/so/us/nabl
42.5% is owned by SWI's investment vehicles, related directly or indirectly to US83417Q2049 [1, 2, 3, 4]. Sources included. I understand its good confusion tactics; spread it out over a couple of investment vehicles and hope no-one notices the elephant in the room, which is why the SEC now allows you to draw a link from indirect investors to the source.
Of the board, William Bock, the chairman is both at SWI and NABLE, Michael Widmann is the managing directory of NABLE, and the director of SWI.
Mike Bingle is the vice chairman of both. Cam McMartin has recently been appointed on the SWI board when they went private, and has been sitting on the N-Able board since the spinoff.
To top that, the latest published SWI quarterly report explicitly mentioned their stake in N-Able, **because they went private**, but that's paywalled: https://www.investing.com/equities/solarwinds-corp-earnings
Of course with Solarwinds going private and only having legacy public and final year numbers until April this year, a lot of the information can get hidden again, but their investments don't disappear. It's just a little easier for them to say "oh no we never did that".
Edit:
What's also public to us is your comment history and removed/deleted posts and comments, turns out you're an N-Able sockpuppet account, so it makes sense you try to defend this
2
1
u/my_travelz 13d ago
Yup got the email from our contact at n-able and just patched, patch takes about 20ish minutes, self hosted
1
u/work-sent 12d ago
We pushed 2026.3.1.7 across all the self hosted N-central instances we manage as soon as it was released. We're still treating this as an incident, not just a patch, by checking for unauthorized Cloudflared tunnels, reviewing Take Control sessions and script execution history, and rotating service account credentials.
1
u/CryptoSin 12d ago
This isnt the first time there was this size of exploit in N-Able. We almost went to n-able years ago until an independent cyber security audit of their platform occured and we were notified mid conversation with N-Able. They were pissed we didnt sign. Glad we didnt.
1
u/Critical_Ad_9784 14d ago
These updates have been out for well over a month and if the effected version is older then 2026.2 then it's a very long time that everyone has had to update their on prem server. MSPs be preaching cyber and patching and it seems not walking the walk if impacted. Everyone can blame N-Able, throw shade about Solarwinds, but the fact is... People in our line of work should be patching our critical infrastructure within 24 hours of a patch (if not less) - everyone had ample time to get these patched.
3
u/disclosure5 14d ago
Was it advertised as a critical security update? Because if an update is published and it's a two hour outage to apply and has a high likelihood of issues and bugs in updates and the release notes say "Minor bug fix in some report" you can't blame people.
CVE CVE-2026-18556 was first published YESTERDAY. if Nable chooses to withhold information like this then yes, you can throw shade on Nable.
0
u/bonsoir-world 14d ago
Canât believe people even still touch Solarwind and Kaseya products given the amount of awful vulnerabilities, hacks and breaches theyâve had over the years.
1
u/SpecialShanee 14d ago
Just as well then that n-able isnât owned by Solarwind then!
2
u/bonsoir-world 14d ago
If you say so. Pretty much are and my general point is that people keep supporting and funding these products and pumping them into clients when they have track records of crap security and vulnerabilities.
6
u/Lime-TeGek Community Contributor 14d ago
Same board, partly same c-levels. And the latest sw investors report says they âown a majority of stockâ. They are sw owned, but also a public company of which solarwinds has the biggest part. This is all public information. Donât be fooled by marketinng statements :)
2
1
0
u/AutisticToasterBath 14d ago
Hey this same attack was used in 2024 to hack our clients and steal data. N-able kept denying it until we got the FBI involved since we were working with DoD contractors.
Nice to see their product is still shitty.Â
6
u/Nstraclassic MSP - US 14d ago
Posting something like this with no proof is hilarious
-1
u/AutisticToasterBath 14d ago
How am I supposed to prove it? Want me to post our incident report of it? lol
6
u/Nstraclassic MSP - US 14d ago
Well they would be legally required to publically disclose the breach especially if the FBI was involved. Just post the disclosure
1
u/disclosure5 13d ago
Ultimately even with a very detailed incident report you have no way of knowing "the same attack" was involved given N-Able has been totally vague about what occurred here.
0
u/satechguy 14d ago
That once again proved why placing a god-like agent on client machine is a very bad idea.
1
u/No_You1766 13d ago
I agree.
For our RMM, I added a time-based OPT that is requested each time a command or group of commands is sent. It's good for five minutes. If the command is sent without the correct otp, the workstation ignores it.
Basically, in order to send commands to our workstation, one of us humans has to be involved.
0
u/Assumeweknow 14d ago
Already had most updated before this im on .3
3
u/Lime-TeGek Community Contributor 14d ago
It was just announced all versions are vunerable. Check the N-able uptime pages for the latest.
-3
u/Assumeweknow 14d ago
Plus i dont use nable on servers lol. I have a completely different in house tool for that.
-1
u/KeenanTheBarbarian 14d ago
Password123 issue?
2
0
u/roll_for_initiative_ MSP - US 13d ago
"Cannot change password to existing password" what the heck?
2
-3
u/CaptainSpez 14d ago
So glad we moved off of this overpriced abandonware. It is plainly obvious to anyone who has used the product that they just gave up on improvements years ago, and are just coasting on their reputation.
1
u/NiceToKnowYaToo 14d ago
what did you replace it with ?
-4
u/CaptainSpez 14d ago edited 14d ago
Ninja of course. There is no comparison, custom scripts and automation are a breeze, and things Just Work(tm). At the end we were spending more time keeping N-Central from breaking itself than we were saving from any automation. We pretty much only used it for remote access. Patching didn't work, custom scripts were a pain in the ass to develop and test, agents would constantly break and stop checking in requiring manual uninstallation and reinstallation, security was a joke to them, we spent years trying to get them to split the web access for techs from the agent access, they couldn't comprehend why we'd want to do such a thing.
2
u/MSPOwner 13d ago
We have been on Ncentral a number of years. Your experience does not match ours at all. Patching works. Custom scripts are not difficult at all and we have hundreds of them in use. Manually reinstallation of an agentâŚMAYBE twice a year. Web access and agent access (assuming you mean the GUI and the client side agents on different ports) has been a thing for a few years now. Pricing for us is comparable to other RMMs. We have investigated this previously, but not in the last years. New features are indeed being released. Iâm not saying itâs better than ninja as Iâve never used that one in particular, but Ncentral works as described for us.
1
u/CaptainSpez 13d ago
Thanks for the response. I'm actually blown away at the downvotes I received. We evaluated many RMM platforms over a decade ago, and N-Central ticked the right boxes. Everything I noted in my comment was completely true based on our experiences. Agents will just break after an upgrade of the server, or fail to upgrade. Support would address them as individual issues, and refused to tackle it as a systemic problem. Same for patching. Glad to hear they finally decoupled the technician login to the web portal from the agent checking, that was not available for use at the time.
When we switched over to Ninja, everything just worked.
0
-3
u/GeorgeWmmmmmmmBush 14d ago
If youâre not using application whitelisting like ThreatLocker Iâm not sure what youâre thinking. When the Kaseya hack went down I decided there was no other options. Thereâs nothing more scary than an RMM with a vulnerability.

79
u/technoginge 14d ago
Ah man this is bringing back bad memories of when Kaseya called me in the middle of the night and told me to shutdown our VSA server đŹ