Just a few minutes back, the official web-portal of Pakistan Nation (pakistan.com) has been hacked . It is not clear who had hacked the site but t…
Once again on the eve of Independence Day, Pakistani hackers are continuously hacking into the Indian server. After the mass cyber attack on Indian …
One of the Pakistan Leading mobile careers "Mobilink" blog has been hacked by the pakistani hacker name as "Hasnain Haxor" f…
It's the worst day for Pakistan's cyberspace, as their National domain have got hacked. We have noted that there could be a cyber war betw…
It just some hours left for celebration of Eid-ul-fitr, and there is no doubts that the festival is being celebrated worldwide. It is the biggest …
Today 6th September is the Pakistan Defence Day and it seems that on this day some of the Pakistani hackers is celebrating with there hack. Mainly…
Once again Indian hacker code name Godzilla aka G.O.D, have done a massive attack on the Pakistan Government server. Two months before Godzilla ha…
Once again Afghan Cyber hacker are on the way and continuously attacking the Pakistan Cyber space. As today Pakistan is celebrating its Independenc…
As India and Pakistan are celebrating there Independence day peacefully, but on the other hand Cyber Hackers are celebrating there Independence Day …
Just an hour ago we have reported that, Pakistani hacker have hacked the National Portal of India , which really raise the question on the secur…
Two hackers named as " H4$N4!N H4XOR " and " HUNTER KHAN " who are from Pakistan hacker group have hacked the official site …
On Wednesday, a hacker from Pakistan has been arrested by Pakistan’s Federal Investigation Agency (FIA) for hacking into the telecom company and u…
Two days before, Pakistani hackers have hacked some of the Indian Political party, Bhartiya Janta Party (BJP) websites. Sites of BJP Punjab and …
Once again a Pakistan hacker with a name "H4$N4!N H4XOR" have hacked and defaced the Official site of Public Health Engineering Depart…
As there is a great offer running on each of the ecommerce site which includes Amazon, flipkart, Snapdeal and others too and every site is offerin…
As we all know that, cyber attacks between Indian and Pakistan is not new, as both of the respective hackers regularly hack each other sites. On…
After hacking high profiled site, once again a famous hacker team of Pakistan "Madleets" have hit the cyber space. Last week Madleets me…
Couple of days before I have posted that a Indian Hacker code name "Godzilla" have breached the Pakistan Government server and number of …
A popular hacker with the online handle " Leet " from the Pakistan hackers group " Team Madleets " is being over the news head…
Once again Pakistan government is suffering against cyber threats. Lastly Indian hackers have done sever cyber attack on the Pakistan and with the …
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();
})();