In an era where data is as precious as currency, ransomware has emerged as a formidable threat, locking away vital information behind a paywall of cy…
Another new crypto ransomware know as Critroni is being sold in underground forums from last month or so and is now being dropped by the Angler …
In today's digital world, cybersecurity threats are on the rise and ransomware attacks are becoming increasingly common. Ransomware is a type o…
In today’s interconnected world, small businesses face an escalating threat from cybercriminals, with ransomware emerging as one of the most insidiou…
Popular ransomware hackers group, Hive's Tor payment, and data leak website were seized by the international law enforcement operation after the …
Attacks from the Ransomware is not a new things and earlier also we have noted many Ransomware attacks cyber cyber criminals. Mostly cyber crimin…
Claro (part of América Móvil), the largest telecommunications provider in Latin America, has disclosed that it suffered a ransomware attack that disr…
Ransomware , from last year it is getting familiar with all and in ransomware variants CryptoLocker is one of the famous. Its a kind of malware th…
Since Thursday, cybersecurity experts have raised alarms about the new vulnerability — tagged as CVE-2023-34362 — affecting Progress Software’s MOVE…
ESET researchers have uncovered alarming details about the activities of CosmicBeetle, an emerging ransomware threat actor targeting small and medium…
Today, Europol has announced the arrest of the LockBit Ransomware operator who had attacked the critical infrastructure of the high profiled company …
A major international law enforcement operation has disrupted the infrastructure and services of the notorious LockBit ransomware gang, authorities a…
Today, Cisco confirmed that its corporate network has been breached by the Yanluowang ransomware hacker group in late May. The company revealed that …
A major ransomware attack has caused disruption in the US Treasury market this week. The Industrial and Commercial Bank of China (ICBC), China's …
Ransomware attacks are hitting financial sectors hard. These attacks lock up critical data and demand payment before freeing it. But what’s more conc…
A team of security researchers from the MalwareHunter Team and Recorded Future has discovered the third ransomware developed in the RUST programming …
const config = {
safeID = 'safelink',
safeURL: ['/p/safelink.html'],
timer: 15,
redirect: true,
text: {
wait: 'The link will appear in 0 second',
direct: 'You’ll be redirected to the download link in 0 second',
shifted: 'Redirecting... [link] if you’re not redirected automatically.',
click: 'Click here',
btn: 'Direct to link.'
}
};
(() => {
const randomURL = url => url[Math.floor(Math.random() * url.length)];
const safeLink = () => config.safeURL.some(path => location.pathname.endsWith(path));
const safeMessage = (text, time) => {
const [start, end] = text.split('0');
return `${start} ${time} ${end}.
`;
};
const outboundLinks = () => {
const links = document.querySelectorAll('a.safeurl[href]');
if (!links.length) return;
links.forEach(anchor => {
const encoded = encodeURIComponent(btoa(anchor.href));
Object.assign(anchor, {
href: `${location.origin}${randomURL(config.safeURL)}?go=${encoded}`,
target: '_self',
rel: 'noopener'
})
})
};
const handleLink = () => {
const params = new URLSearchParams(location.search);
const encoded = params.get('go');
if (!encoded) return;
const link = atob(decodeURIComponent(encoded))
params.delete('go');
history.replaceState({}, '', location.pathname + (params.toString() ? '?' + params : ''));
let counter = config.timer;
const label = config.redirect ? config.text.direct : config.text.wait;
const box = document.getElementById(config.safeID);
if (!box) return;
box.removeAttribute('hidden');
box.innerHTML = safeMessage(label, counter);
const countdown = setInterval(() => {
counter--;
box.innerHTML = safeMessage(label, counter);
if (counter > 0) return;
clearInterval(countdown);
if (config.redirect) {
box.innerHTML = `${config.text.shifted.replace('[link]', `${config.text.click}`)}
`;
location.href = link;
} else {
box.innerHTML = '';
const btn = document.createElement('a');
//btn.className = 'btn';
btn.href = link;
btn.target = '_blank';
btn.rel = 'nofollow noopener noreferrer';
btn.innerHTML = `${config.text.btn}`;
box.appendChild(btn);
}
}, 1000)
};
safeLink() ? handleLink() : outboundLinks();
})();