/*! elementor-pro - v3.26.0 - 17-12-2024 */ (()=>{"use strict";class Screenshot extends elementorModules.ViewModule{getDefaultSettings(){return{empty_content_headline:"Empty Content.",crop:{width:1200,height:1500},excluded_external_css_urls:["https://kit-pro.fontawesome.com"],external_images_urls:["https://i.ytimg.com"],timeout:15e3,render_timeout:5e3,timerLabel:null,timer_label:`${ElementorScreenshotConfig.post_id} - timer`,image_placeholder:"data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACwAAAAAAQABAAACAkQBADs=",isDebug:elementorCommonConfig.isElementorDebug,isDebugSvg:!1,...ElementorScreenshotConfig}}getDefaultElements(){const e=jQuery(ElementorScreenshotConfig.selector),t=e.find(".elementor-section-wrap > .elementor-section, .elementor > .elementor-section");return{$elementor:e,$sections:t,$firstSection:t.first(),$notElementorElements:elementorCommon.elements.$body.find("> *:not(style, link)").not(e),$head:jQuery("head")}}onInit(){return super.onInit(),this.log("Screenshot init","time"),this.timeoutTimer=setTimeout(this.screenshotFailed.bind(this),this.getSettings("timeout")),this.captureScreenshot()}captureScreenshot(){return this.elements.$elementor.length||(elementorCommon.helpers.consoleWarn("Screenshots: The content of this page is empty, the module will create a fake conent just for this screenshot."),this.createFakeContent()),this.removeUnnecessaryElements(),this.handleIFrames(),this.removeFirstSectionMargin(),this.handleLinks(),this.loadExternalCss(),this.loadExternalImages(),Promise.resolve().then(this.createImage.bind(this)).then(this.createImageElement.bind(this)).then(this.cropCanvas.bind(this)).then(this.save.bind(this)).then(this.screenshotSucceed.bind(this)).catch(this.screenshotFailed.bind(this))}createFakeContent(){this.elements.$elementor=jQuery("
").css({height:this.getSettings("crop.height"),width:this.getSettings("crop.width"),display:"flex",alignItems:"center",justifyContent:"center"}),this.elements.$elementor.append(jQuery("

").css({fontSize:"85px"}).html(this.getSettings("empty_content_headline"))),document.body.prepend(this.elements.$elementor)}loadExternalCss(){const e=[this.getSettings("home_url"),...this.getSettings("excluded_external_css_urls")].map((e=>`[href^="${e}"]`)).join(", ");jQuery("link").not(e).each(((e,t)=>{const s=jQuery(t),n=s.clone();n.attr("href",this.getScreenshotProxyUrl(s.attr("href"))),this.elements.$head.append(n),s.remove()}))}loadExternalImages(){const e=this.getSettings("external_images_urls").map((e=>`img[src^="${e}"]`)).join(", ");jQuery(e).each(((e,t)=>{const s=jQuery(t);s.attr("src",this.getScreenshotProxyUrl(s.attr("src")))}))}handleIFrames(){this.elements.$elementor.find("iframe").each(((e,t)=>{const s=jQuery(t),n=jQuery("
",{css:{background:"gray",width:s.width(),height:s.height()}});s.before(n),s.remove()}))}removeUnnecessaryElements(){let e=0;this.elements.$sections.filter(((t,s)=>{let n=!1;return e>=this.getSettings("crop.height")&&(n=!0),e+=jQuery(s).outerHeight(),n})).each(((e,t)=>{t.remove()})),this.elements.$notElementorElements.remove()}handleLinks(){elementorCommon.elements.$body.find("a").attr("href","/")}removeFirstSectionMargin(){this.elements.$firstSection.css({marginTop:0})}createImage(){const e=new Promise((e=>{window.addEventListener("load",(()=>{e()}))})),t=new Promise((e=>{setTimeout((()=>{e()}),this.getSettings("render_timeout"))}));return Promise.race([e,t]).then((()=>{if(this.log("Start creating screenshot."),this.getSettings("isDebugSvg"))return domtoimage.toSvg(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}).then((e=>this.download(e))),Promise.reject("Debug SVG.");return/^((?!chrome|android).)*safari/i.test(window.userAgent)?(this.log('Creating screenshot with "html2canvas"'),html2canvas(document.body).then((e=>e.toDataURL("image/png")))):(this.log('Creating screenshot with "dom-to-image"'),domtoimage.toPng(document.body,{imagePlaceholder:this.getSettings("image_placeholder")}))}))}download(e){const t=jQuery("",{href:e,download:"debugSvg.svg",html:"Download SVG"});elementorCommon.elements.$body.append(t),t.trigger("click")}createImageElement(e){const t=new Image;return t.src=e,new Promise((e=>{t.onload=()=>e(t)}))}cropCanvas(e){const t=this.getSettings("crop.width"),s=this.getSettings("crop.height"),n=document.createElement("canvas"),i=n.getContext("2d"),o=t/e.width;return n.width=t,n.height=s>e.height?e.height:s,i.drawImage(e,0,0,e.width,e.height,0,0,e.width*o,e.height*o),Promise.resolve(n)}save(e){return new Promise(((t,s)=>{elementorCommon.ajax.addRequest("screenshot_save",{data:{post_id:this.getSettings("post_id"),screenshot:e.toDataURL("image/png")},success:e=>{this.log(`Screenshot created: ${encodeURI(e)}`),t(e)},error:()=>{this.log("Failed to create screenshot."),s()}})}))}markAsFailed(){return new Promise(((e,t)=>{elementorCommon.ajax.addRequest("screenshot_failed",{data:{post_id:this.getSettings("post_id")},success:()=>{this.log("Marked as failed."),e()},error:()=>{this.log("Failed to mark this screenshot as failed."),t()}})}))}getScreenshotProxyUrl(e){return`${this.getSettings("home_url")}?screenshot_proxy&nonce=${this.getSettings("nonce")}&href=${e}`}screenshotSucceed(e){this.screenshotDone(!0,e)}screenshotFailed(e){this.log(e,null),this.markAsFailed().then((()=>this.screenshotDone(!1)))}screenshotDone(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:null;clearTimeout(this.timeoutTimer),this.timeoutTimer=null,window.parent.postMessage({name:"capture-screenshot-done",success:e,id:this.getSettings("post_id"),imageUrl:t},"*"),this.log(`Screenshot ${e?"Succeed":"Failed"}.`,"timeEnd")}log(e){let t=arguments.length>1&&void 0!==arguments[1]?arguments[1]:"timeLog";this.getSettings("isDebug")&&(console.log("string"==typeof e?`${this.getSettings("post_id")} - ${e}`:e),t&&console[t](this.getSettings("timer_label")))}}jQuery((()=>{new Screenshot}))})(); Black Basta ransomware group Archives - The Tach https://thetach.com/?tag=black-basta-ransomware-group Tue, 24 Dec 2024 16:05:03 +0000 en-US hourly 1 https://wordpress.org/?v=6.7.1 Ransomware Attack on Ascension Health Impacts 5.6 Million Patients https://thetach.com/?p=1020 https://thetach.com/?p=1020#respond Tue, 24 Dec 2024 16:05:00 +0000 https://thetach.com/?p=1020 The ransomware attack at Ascension Health where 5.6 million patients’ Electronic Health Record was being targeted including personal, medical & payment data containing details. This data leak forms one of the largest healthcare data breaches of 2024 and has caused significant concern over the weaknesses inherent in the health care industry’s security systems. The attackers ... Read more

The post Ransomware Attack on Ascension Health Impacts 5.6 Million Patients appeared first on The Tach.

]]> The ransomware attack at Ascension Health where 5.6 million patients’ Electronic Health Record was being targeted including personal, medical & payment data containing details. This data leak forms one of the largest healthcare data breaches of 2024 and has caused significant concern over the weaknesses inherent in the health care industry’s security systems. The attackers gained access to several servers, wined, and dined sensitive details while disrupting organizational operations. Consequently, all hospitals had to go into downtime and they had to divert their emergency services, which adversely affected patient treatment in the United States.

The consequence of this attack can be deeply understood in terms of millions of patients and numerous employees. Security leaders have highlighted a requirement for a near-term increase in cybersecurity in healthcare because ransomware attacks are becoming increasingly common and complex. This breach has proven that is equally important for any health care service providers to incorporate very strong security measures to guard any health data in addition to guarantee contineous services.

Details of the Attack and Immediate Consequences

The ransomware attack on Ascension Health start from May 8, 2024, in one of the largest healthcare systems of the United States, the operation of the hospital had to use manual operations in the system outages affected the processes of treatment and emergency procedures delayed. This event affected business activities daily while also revealing millions of Protected Health Information (PHI) and Personal Identifiable Information (PII).

Some of the information that was stolen were; names, social security numbers, medical information, government-identification details and payment details. The breach happened during the time when the healthcare sector was faced with limited resource. Hence the severity of the healthcare data breach in 2024. Most of the services have been resumed by mid June. However, disclosure of the data leakage, specifying the sensitive data had been stolen, intensified anxiety related to the future threats including identity theft and financial fraud. The event was proving the importance and the necessity to increase the attention. And build better protection against ransomware attacks on healthcare providers.

Sensitive Data Compromised

The severity of the cyber attack became clear in December the following year after an internal investigation had been carried out. The data stolen includes the names, addresses, date of birth, insurance information and their medical records. To many people it was a break of private and personal breaching of their privacy and trust.  The investigation found that the type of data compromised varied by individual. For patients, the exposure of medical records and insurance details heightened the risk of fraud and misuse. For employees, the theft of Social Security numbers and tax identification details posed serious financial threats. These findings made the healthcare data breach in 2024 a sobering example of the vulnerabilities in healthcare systems.

Ascension Health Response to the Attack

When Ascension Health was hit by a ransomware attack. The organization took the following steps to address those affected. Through its partner, Ascension offered 12 months of a free trial of the credit monitoring service and identity protection. That entailed a reimbursement of up to $1 million in case of identity theft. In addition, it contracted independent cybersecurity to enhance protection against other future cyber attacks. 

Others were improved encryption, continuous threat monitoring, and higher security standards of access. The organization also stressed the need of openness. For the concern of the public is to be updated through briefs and other forms of communication. However, the healthcare data breach realized in 2024 has never been forgotten by patients. Employees as well as the healthcare industry as a whole. As has been seen in the attack, this warrants a more stringent effort towards cyber threats in the healthcare facility.

Speculations About Black Basta Involvement

While no organization has claimed responsibility for the attack. Hackers reviewing the data-selection strategy think that the Black Basta ransomware group was the attacker. Larger organizations are their preferred victims, and they tend to ask for a lot of money for the release of their data. But this absence of admitting defeat has led to further speculation with claims that Ascension might have secretly capitulated to pay the hackers.

The Black Basta ransomware group has previously targeted other industries in similar attacks putting it at the top of the pile in the cybercrime world. It must be noted that groups continue to be a significant threat to institutions. And adequate security must be observed in healthcare centers again centers programs no matter if the ransom is paid.

The Significance of the Breach

This type of data breach incident like the one that happened in the year 2024 is a good person for the healthcare sector. Security gurus concur in their opinion that it is impossible to achieve total protection from cyber threats by using a single method. This includes first of its kind; encryption, monimonitoringnd access control measures. That will ensure that the organization has little vulnerability to future attacks. Another feature to be implemented is employee training. Sophisticated tactics from employees, including being a victim of a phishing attack, accounts for the highest incidence of ransomware attacks. Adequate staff training and increased organizational cybersecurity literacy can greatly decrease a healthcare organization’s risk levels.

Governments and industry regulators also must contribute to building cybersecurity in the healthcare industry. This situation calls for future resource provision, guide listing, and the cushioning of the difficulties that small players in the healthcare care chain face. The recent cyber attack involving Ascension Health has made it possible to define proper actions with awareness for all interested parties. This article has outlined measures that healthcare providers have to consider in implementing solid trespass. And data protection measures against ransomware threats in the future.

Conclusion

The case of Ascension Health shows a weakness in cyber security in the healthcare institution after a ransomware attack that targeted 5.6 million users. From this breach, there was a great importance of better protection, education of the employees. And better measures to protect such data. Given the tendency of the healthcare sector to integrate digital systems throughout the delivery process. Secured protection of the patient’s data is of high importance in avoiding disruption of healthcare services. This attack is a wake-up call for the industry to prepare for and reduce such risks to the bare minimum by embracing strict measures to curb the threats.

FAQs

What sort of information was leaked in the Ascension Health breach?

They suffered data loss of name, Social Security numbers, medical history, and payments made to the patients.

How many individuals were affected by the Ascension Health attack?

Approximately 5.6 million people, including patients and employees, were impacted.

Was Black Basta responsible for the ransomware attack on Ascension Health?

Experts suspect the Black Basta ransomware group, though it has not claimed responsibility.

How has Ascension Health supported those affected by the breach?

Free credit monitoring and identity protection services were offered to impacted individuals.

What was the cost of the healthcare data breach incident in the year, 2024?

One of the most important recommendations discussed at the meeting is the need to improve cybersecurity and the training of employees.

The post Ransomware Attack on Ascension Health Impacts 5.6 Million Patients appeared first on The Tach.

]]>
https://thetach.com/?feed=rss2&p=1020 0