After a long time Syrian Electronic Army again on news but this time that have not targeted any organization. Hope you all remembered a pro hacker…
After hacking into the official site of US Army (army.mil), Pro hackers group Syrian Electronic Army have showed another hack. On the twitter acco…
Today early Morning, the Syrian Electronic Army hacked into the official website of the US Army (army.mil) and defaced it. As a US official to…
Syrian Electronic Army hacked the Official website of the US Army. The Pro Palestine hackers group "Syrian Electronic Army (SEA)" who a…
The Pastelin pro hackers group, Syrian Electronics Army have once again targeted US media site. After a long time hackers group had back with thei…
Pro hackers group "Syrian Electronic Army" once again back with their hack and as like earlier hackers group which is mostly famous for …
Today early morning, Syria pro hackers group Syrian Electronic Army have hacked official twitter account of French daily newspaper ‘Le Monde’, a…
In the early morning, pro hackers group " Syrian Electronic Army " have once again targeted western online media site. This time SEA ha…
Remember pro hackers group "Syrian Electronic Army" (SEA), once again they are back with there high profiled hacks. After a long keeping…
There are numbers of the Linux distributors who offer operating system for free and there are many individuals or groups who have developed th…
Yesterday we have noted that, pro hacker group Syrian Electronic Army have hacked the ads provider service Taboola, which effects the Reuters …
After a long time, a Pro hackers group "Syrian Electronic Army" struck back with their hack. After hacking numbers of the online account…
Once again Pro-hackers group " Syrian Electronic Army " have leaked some of the documents, which stats that Microsoft have sell users in…
The Pro-hackers group " Syrian Electronic Army " have hacked and defaced the official website of the National Coalition for Syrian Revol…
Once again a pro hacker group "Syrian Electronic Army" is going to show there presence on the cyber world, and proving that the cyber wa…
The world’s best information-sharing website Forbes.com is now on the list of successfully infiltrated websites by list Syrian Electronic Army – …
Yesterday, Syrian Electronic Army had hacked into the WordPress admin panel of the Forbes , along with some employees twitter accounts. After a h…
Once again Popular Pro hackers group " Syrian Electronic Army " have made a another breached. Just an hour ago, Syrian Electronic Army …
The pro-Bashar Al Assad hacking group Syrian Electronic Army has hacked into the domain registry of world renowned online shopping portals.The hack…
Yesterday, Official site of Angry bird has been hacked by the hackers. A popular hackers group " Syrian Electronic Army " have tweeted t…
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();
})();