├── LICENSE ├── README.MD ├── trigmap ├── fasttrack.txt ├── general_user_wordlist_short.txt ├── passwords.lst ├── trigmap.sh ├── unix_user_wordlist_short.txt └── win_user_wordlist_short.txt └── trigmap_images ├── dir_hierarchy.PNG ├── screenshots ├── complete_scan.png ├── interactive_mode.png ├── interactive_mode_2.png ├── interactive_mode_2_commented.png ├── interactive_mode_commented.png └── result.png └── trigmap_logo.png /LICENSE: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 3, 29 June 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU General Public License is a free, copyleft license for 11 | software and other kinds of works. 12 | 13 | The licenses for most software and other practical works are designed 14 | to take away your freedom to share and change the works. By contrast, 15 | the GNU General Public License is intended to guarantee your freedom to 16 | share and change all versions of a program--to make sure it remains free 17 | software for all its users. We, the Free Software Foundation, use the 18 | GNU General Public License for most of our software; it applies also to 19 | any other work released this way by its authors. You can apply it to 20 | your programs, too. 21 | 22 | When we speak of free software, we are referring to freedom, not 23 | price. Our General Public Licenses are designed to make sure that you 24 | have the freedom to distribute copies of free software (and charge for 25 | them if you wish), that you receive source code or can get it if you 26 | want it, that you can change the software or use pieces of it in new 27 | free programs, and that you know you can do these things. 28 | 29 | To protect your rights, we need to prevent others from denying you 30 | these rights or asking you to surrender the rights. Therefore, you have 31 | certain responsibilities if you distribute copies of the software, or if 32 | you modify it: responsibilities to respect the freedom of others. 33 | 34 | For example, if you distribute copies of such a program, whether 35 | gratis or for a fee, you must pass on to the recipients the same 36 | freedoms that you received. You must make sure that they, too, receive 37 | or can get the source code. And you must show them these terms so they 38 | know their rights. 39 | 40 | Developers that use the GNU GPL protect your rights with two steps: 41 | (1) assert copyright on the software, and (2) offer you this License 42 | giving you legal permission to copy, distribute and/or modify it. 43 | 44 | For the developers' and authors' protection, the GPL clearly explains 45 | that there is no warranty for this free software. For both users' and 46 | authors' sake, the GPL requires that modified versions be marked as 47 | changed, so that their problems will not be attributed erroneously to 48 | authors of previous versions. 49 | 50 | Some devices are designed to deny users access to install or run 51 | modified versions of the software inside them, although the manufacturer 52 | can do so. This is fundamentally incompatible with the aim of 53 | protecting users' freedom to change the software. The systematic 54 | pattern of such abuse occurs in the area of products for individuals to 55 | use, which is precisely where it is most unacceptable. Therefore, we 56 | have designed this version of the GPL to prohibit the practice for those 57 | products. If such problems arise substantially in other domains, we 58 | stand ready to extend this provision to those domains in future versions 59 | of the GPL, as needed to protect the freedom of users. 60 | 61 | Finally, every program is threatened constantly by software patents. 62 | States should not allow patents to restrict development and use of 63 | software on general-purpose computers, but in those that do, we wish to 64 | avoid the special danger that patents applied to a free program could 65 | make it effectively proprietary. To prevent this, the GPL assures that 66 | patents cannot be used to render the program non-free. 67 | 68 | The precise terms and conditions for copying, distribution and 69 | modification follow. 70 | 71 | TERMS AND CONDITIONS 72 | 73 | 0. Definitions. 74 | 75 | "This License" refers to version 3 of the GNU General Public License. 76 | 77 | "Copyright" also means copyright-like laws that apply to other kinds of 78 | works, such as semiconductor masks. 79 | 80 | "The Program" refers to any copyrightable work licensed under this 81 | License. Each licensee is addressed as "you". "Licensees" and 82 | "recipients" may be individuals or organizations. 83 | 84 | To "modify" a work means to copy from or adapt all or part of the work 85 | in a fashion requiring copyright permission, other than the making of an 86 | exact copy. The resulting work is called a "modified version" of the 87 | earlier work or a work "based on" the earlier work. 88 | 89 | A "covered work" means either the unmodified Program or a work based 90 | on the Program. 91 | 92 | To "propagate" a work means to do anything with it that, without 93 | permission, would make you directly or secondarily liable for 94 | infringement under applicable copyright law, except executing it on a 95 | computer or modifying a private copy. Propagation includes copying, 96 | distribution (with or without modification), making available to the 97 | public, and in some countries other activities as well. 98 | 99 | To "convey" a work means any kind of propagation that enables other 100 | parties to make or receive copies. Mere interaction with a user through 101 | a computer network, with no transfer of a copy, is not conveying. 102 | 103 | An interactive user interface displays "Appropriate Legal Notices" 104 | to the extent that it includes a convenient and prominently visible 105 | feature that (1) displays an appropriate copyright notice, and (2) 106 | tells the user that there is no warranty for the work (except to the 107 | extent that warranties are provided), that licensees may convey the 108 | work under this License, and how to view a copy of this License. If 109 | the interface presents a list of user commands or options, such as a 110 | menu, a prominent item in the list meets this criterion. 111 | 112 | 1. Source Code. 113 | 114 | The "source code" for a work means the preferred form of the work 115 | for making modifications to it. "Object code" means any non-source 116 | form of a work. 117 | 118 | A "Standard Interface" means an interface that either is an official 119 | standard defined by a recognized standards body, or, in the case of 120 | interfaces specified for a particular programming language, one that 121 | is widely used among developers working in that language. 122 | 123 | The "System Libraries" of an executable work include anything, other 124 | than the work as a whole, that (a) is included in the normal form of 125 | packaging a Major Component, but which is not part of that Major 126 | Component, and (b) serves only to enable use of the work with that 127 | Major Component, or to implement a Standard Interface for which an 128 | implementation is available to the public in source code form. A 129 | "Major Component", in this context, means a major essential component 130 | (kernel, window system, and so on) of the specific operating system 131 | (if any) on which the executable work runs, or a compiler used to 132 | produce the work, or an object code interpreter used to run it. 133 | 134 | The "Corresponding Source" for a work in object code form means all 135 | the source code needed to generate, install, and (for an executable 136 | work) run the object code and to modify the work, including scripts to 137 | control those activities. However, it does not include the work's 138 | System Libraries, or general-purpose tools or generally available free 139 | programs which are used unmodified in performing those activities but 140 | which are not part of the work. For example, Corresponding Source 141 | includes interface definition files associated with source files for 142 | the work, and the source code for shared libraries and dynamically 143 | linked subprograms that the work is specifically designed to require, 144 | such as by intimate data communication or control flow between those 145 | subprograms and other parts of the work. 146 | 147 | The Corresponding Source need not include anything that users 148 | can regenerate automatically from other parts of the Corresponding 149 | Source. 150 | 151 | The Corresponding Source for a work in source code form is that 152 | same work. 153 | 154 | 2. Basic Permissions. 155 | 156 | All rights granted under this License are granted for the term of 157 | copyright on the Program, and are irrevocable provided the stated 158 | conditions are met. This License explicitly affirms your unlimited 159 | permission to run the unmodified Program. The output from running a 160 | covered work is covered by this License only if the output, given its 161 | content, constitutes a covered work. This License acknowledges your 162 | rights of fair use or other equivalent, as provided by copyright law. 163 | 164 | You may make, run and propagate covered works that you do not 165 | convey, without conditions so long as your license otherwise remains 166 | in force. You may convey covered works to others for the sole purpose 167 | of having them make modifications exclusively for you, or provide you 168 | with facilities for running those works, provided that you comply with 169 | the terms of this License in conveying all material for which you do 170 | not control copyright. Those thus making or running the covered works 171 | for you must do so exclusively on your behalf, under your direction 172 | and control, on terms that prohibit them from making any copies of 173 | your copyrighted material outside their relationship with you. 174 | 175 | Conveying under any other circumstances is permitted solely under 176 | the conditions stated below. Sublicensing is not allowed; section 10 177 | makes it unnecessary. 178 | 179 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 180 | 181 | No covered work shall be deemed part of an effective technological 182 | measure under any applicable law fulfilling obligations under article 183 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 184 | similar laws prohibiting or restricting circumvention of such 185 | measures. 186 | 187 | When you convey a covered work, you waive any legal power to forbid 188 | circumvention of technological measures to the extent such circumvention 189 | is effected by exercising rights under this License with respect to 190 | the covered work, and you disclaim any intention to limit operation or 191 | modification of the work as a means of enforcing, against the work's 192 | users, your or third parties' legal rights to forbid circumvention of 193 | technological measures. 194 | 195 | 4. Conveying Verbatim Copies. 196 | 197 | You may convey verbatim copies of the Program's source code as you 198 | receive it, in any medium, provided that you conspicuously and 199 | appropriately publish on each copy an appropriate copyright notice; 200 | keep intact all notices stating that this License and any 201 | non-permissive terms added in accord with section 7 apply to the code; 202 | keep intact all notices of the absence of any warranty; and give all 203 | recipients a copy of this License along with the Program. 204 | 205 | You may charge any price or no price for each copy that you convey, 206 | and you may offer support or warranty protection for a fee. 207 | 208 | 5. Conveying Modified Source Versions. 209 | 210 | You may convey a work based on the Program, or the modifications to 211 | produce it from the Program, in the form of source code under the 212 | terms of section 4, provided that you also meet all of these conditions: 213 | 214 | a) The work must carry prominent notices stating that you modified 215 | it, and giving a relevant date. 216 | 217 | b) The work must carry prominent notices stating that it is 218 | released under this License and any conditions added under section 219 | 7. This requirement modifies the requirement in section 4 to 220 | "keep intact all notices". 221 | 222 | c) You must license the entire work, as a whole, under this 223 | License to anyone who comes into possession of a copy. This 224 | License will therefore apply, along with any applicable section 7 225 | additional terms, to the whole of the work, and all its parts, 226 | regardless of how they are packaged. This License gives no 227 | permission to license the work in any other way, but it does not 228 | invalidate such permission if you have separately received it. 229 | 230 | d) If the work has interactive user interfaces, each must display 231 | Appropriate Legal Notices; however, if the Program has interactive 232 | interfaces that do not display Appropriate Legal Notices, your 233 | work need not make them do so. 234 | 235 | A compilation of a covered work with other separate and independent 236 | works, which are not by their nature extensions of the covered work, 237 | and which are not combined with it such as to form a larger program, 238 | in or on a volume of a storage or distribution medium, is called an 239 | "aggregate" if the compilation and its resulting copyright are not 240 | used to limit the access or legal rights of the compilation's users 241 | beyond what the individual works permit. Inclusion of a covered work 242 | in an aggregate does not cause this License to apply to the other 243 | parts of the aggregate. 244 | 245 | 6. Conveying Non-Source Forms. 246 | 247 | You may convey a covered work in object code form under the terms 248 | of sections 4 and 5, provided that you also convey the 249 | machine-readable Corresponding Source under the terms of this License, 250 | in one of these ways: 251 | 252 | a) Convey the object code in, or embodied in, a physical product 253 | (including a physical distribution medium), accompanied by the 254 | Corresponding Source fixed on a durable physical medium 255 | customarily used for software interchange. 256 | 257 | b) Convey the object code in, or embodied in, a physical product 258 | (including a physical distribution medium), accompanied by a 259 | written offer, valid for at least three years and valid for as 260 | long as you offer spare parts or customer support for that product 261 | model, to give anyone who possesses the object code either (1) a 262 | copy of the Corresponding Source for all the software in the 263 | product that is covered by this License, on a durable physical 264 | medium customarily used for software interchange, for a price no 265 | more than your reasonable cost of physically performing this 266 | conveying of source, or (2) access to copy the 267 | Corresponding Source from a network server at no charge. 268 | 269 | c) Convey individual copies of the object code with a copy of the 270 | written offer to provide the Corresponding Source. This 271 | alternative is allowed only occasionally and noncommercially, and 272 | only if you received the object code with such an offer, in accord 273 | with subsection 6b. 274 | 275 | d) Convey the object code by offering access from a designated 276 | place (gratis or for a charge), and offer equivalent access to the 277 | Corresponding Source in the same way through the same place at no 278 | further charge. You need not require recipients to copy the 279 | Corresponding Source along with the object code. If the place to 280 | copy the object code is a network server, the Corresponding Source 281 | may be on a different server (operated by you or a third party) 282 | that supports equivalent copying facilities, provided you maintain 283 | clear directions next to the object code saying where to find the 284 | Corresponding Source. Regardless of what server hosts the 285 | Corresponding Source, you remain obligated to ensure that it is 286 | available for as long as needed to satisfy these requirements. 287 | 288 | e) Convey the object code using peer-to-peer transmission, provided 289 | you inform other peers where the object code and Corresponding 290 | Source of the work are being offered to the general public at no 291 | charge under subsection 6d. 292 | 293 | A separable portion of the object code, whose source code is excluded 294 | from the Corresponding Source as a System Library, need not be 295 | included in conveying the object code work. 296 | 297 | A "User Product" is either (1) a "consumer product", which means any 298 | tangible personal property which is normally used for personal, family, 299 | or household purposes, or (2) anything designed or sold for incorporation 300 | into a dwelling. In determining whether a product is a consumer product, 301 | doubtful cases shall be resolved in favor of coverage. For a particular 302 | product received by a particular user, "normally used" refers to a 303 | typical or common use of that class of product, regardless of the status 304 | of the particular user or of the way in which the particular user 305 | actually uses, or expects or is expected to use, the product. A product 306 | is a consumer product regardless of whether the product has substantial 307 | commercial, industrial or non-consumer uses, unless such uses represent 308 | the only significant mode of use of the product. 309 | 310 | "Installation Information" for a User Product means any methods, 311 | procedures, authorization keys, or other information required to install 312 | and execute modified versions of a covered work in that User Product from 313 | a modified version of its Corresponding Source. The information must 314 | suffice to ensure that the continued functioning of the modified object 315 | code is in no case prevented or interfered with solely because 316 | modification has been made. 317 | 318 | If you convey an object code work under this section in, or with, or 319 | specifically for use in, a User Product, and the conveying occurs as 320 | part of a transaction in which the right of possession and use of the 321 | User Product is transferred to the recipient in perpetuity or for a 322 | fixed term (regardless of how the transaction is characterized), the 323 | Corresponding Source conveyed under this section must be accompanied 324 | by the Installation Information. But this requirement does not apply 325 | if neither you nor any third party retains the ability to install 326 | modified object code on the User Product (for example, the work has 327 | been installed in ROM). 328 | 329 | The requirement to provide Installation Information does not include a 330 | requirement to continue to provide support service, warranty, or updates 331 | for a work that has been modified or installed by the recipient, or for 332 | the User Product in which it has been modified or installed. Access to a 333 | network may be denied when the modification itself materially and 334 | adversely affects the operation of the network or violates the rules and 335 | protocols for communication across the network. 336 | 337 | Corresponding Source conveyed, and Installation Information provided, 338 | in accord with this section must be in a format that is publicly 339 | documented (and with an implementation available to the public in 340 | source code form), and must require no special password or key for 341 | unpacking, reading or copying. 342 | 343 | 7. Additional Terms. 344 | 345 | "Additional permissions" are terms that supplement the terms of this 346 | License by making exceptions from one or more of its conditions. 347 | Additional permissions that are applicable to the entire Program shall 348 | be treated as though they were included in this License, to the extent 349 | that they are valid under applicable law. If additional permissions 350 | apply only to part of the Program, that part may be used separately 351 | under those permissions, but the entire Program remains governed by 352 | this License without regard to the additional permissions. 353 | 354 | When you convey a copy of a covered work, you may at your option 355 | remove any additional permissions from that copy, or from any part of 356 | it. (Additional permissions may be written to require their own 357 | removal in certain cases when you modify the work.) You may place 358 | additional permissions on material, added by you to a covered work, 359 | for which you have or can give appropriate copyright permission. 360 | 361 | Notwithstanding any other provision of this License, for material you 362 | add to a covered work, you may (if authorized by the copyright holders of 363 | that material) supplement the terms of this License with terms: 364 | 365 | a) Disclaiming warranty or limiting liability differently from the 366 | terms of sections 15 and 16 of this License; or 367 | 368 | b) Requiring preservation of specified reasonable legal notices or 369 | author attributions in that material or in the Appropriate Legal 370 | Notices displayed by works containing it; or 371 | 372 | c) Prohibiting misrepresentation of the origin of that material, or 373 | requiring that modified versions of such material be marked in 374 | reasonable ways as different from the original version; or 375 | 376 | d) Limiting the use for publicity purposes of names of licensors or 377 | authors of the material; or 378 | 379 | e) Declining to grant rights under trademark law for use of some 380 | trade names, trademarks, or service marks; or 381 | 382 | f) Requiring indemnification of licensors and authors of that 383 | material by anyone who conveys the material (or modified versions of 384 | it) with contractual assumptions of liability to the recipient, for 385 | any liability that these contractual assumptions directly impose on 386 | those licensors and authors. 387 | 388 | All other non-permissive additional terms are considered "further 389 | restrictions" within the meaning of section 10. If the Program as you 390 | received it, or any part of it, contains a notice stating that it is 391 | governed by this License along with a term that is a further 392 | restriction, you may remove that term. If a license document contains 393 | a further restriction but permits relicensing or conveying under this 394 | License, you may add to a covered work material governed by the terms 395 | of that license document, provided that the further restriction does 396 | not survive such relicensing or conveying. 397 | 398 | If you add terms to a covered work in accord with this section, you 399 | must place, in the relevant source files, a statement of the 400 | additional terms that apply to those files, or a notice indicating 401 | where to find the applicable terms. 402 | 403 | Additional terms, permissive or non-permissive, may be stated in the 404 | form of a separately written license, or stated as exceptions; 405 | the above requirements apply either way. 406 | 407 | 8. Termination. 408 | 409 | You may not propagate or modify a covered work except as expressly 410 | provided under this License. Any attempt otherwise to propagate or 411 | modify it is void, and will automatically terminate your rights under 412 | this License (including any patent licenses granted under the third 413 | paragraph of section 11). 414 | 415 | However, if you cease all violation of this License, then your 416 | license from a particular copyright holder is reinstated (a) 417 | provisionally, unless and until the copyright holder explicitly and 418 | finally terminates your license, and (b) permanently, if the copyright 419 | holder fails to notify you of the violation by some reasonable means 420 | prior to 60 days after the cessation. 421 | 422 | Moreover, your license from a particular copyright holder is 423 | reinstated permanently if the copyright holder notifies you of the 424 | violation by some reasonable means, this is the first time you have 425 | received notice of violation of this License (for any work) from that 426 | copyright holder, and you cure the violation prior to 30 days after 427 | your receipt of the notice. 428 | 429 | Termination of your rights under this section does not terminate the 430 | licenses of parties who have received copies or rights from you under 431 | this License. If your rights have been terminated and not permanently 432 | reinstated, you do not qualify to receive new licenses for the same 433 | material under section 10. 434 | 435 | 9. Acceptance Not Required for Having Copies. 436 | 437 | You are not required to accept this License in order to receive or 438 | run a copy of the Program. Ancillary propagation of a covered work 439 | occurring solely as a consequence of using peer-to-peer transmission 440 | to receive a copy likewise does not require acceptance. However, 441 | nothing other than this License grants you permission to propagate or 442 | modify any covered work. These actions infringe copyright if you do 443 | not accept this License. Therefore, by modifying or propagating a 444 | covered work, you indicate your acceptance of this License to do so. 445 | 446 | 10. Automatic Licensing of Downstream Recipients. 447 | 448 | Each time you convey a covered work, the recipient automatically 449 | receives a license from the original licensors, to run, modify and 450 | propagate that work, subject to this License. You are not responsible 451 | for enforcing compliance by third parties with this License. 452 | 453 | An "entity transaction" is a transaction transferring control of an 454 | organization, or substantially all assets of one, or subdividing an 455 | organization, or merging organizations. If propagation of a covered 456 | work results from an entity transaction, each party to that 457 | transaction who receives a copy of the work also receives whatever 458 | licenses to the work the party's predecessor in interest had or could 459 | give under the previous paragraph, plus a right to possession of the 460 | Corresponding Source of the work from the predecessor in interest, if 461 | the predecessor has it or can get it with reasonable efforts. 462 | 463 | You may not impose any further restrictions on the exercise of the 464 | rights granted or affirmed under this License. For example, you may 465 | not impose a license fee, royalty, or other charge for exercise of 466 | rights granted under this License, and you may not initiate litigation 467 | (including a cross-claim or counterclaim in a lawsuit) alleging that 468 | any patent claim is infringed by making, using, selling, offering for 469 | sale, or importing the Program or any portion of it. 470 | 471 | 11. Patents. 472 | 473 | A "contributor" is a copyright holder who authorizes use under this 474 | License of the Program or a work on which the Program is based. The 475 | work thus licensed is called the contributor's "contributor version". 476 | 477 | A contributor's "essential patent claims" are all patent claims 478 | owned or controlled by the contributor, whether already acquired or 479 | hereafter acquired, that would be infringed by some manner, permitted 480 | by this License, of making, using, or selling its contributor version, 481 | but do not include claims that would be infringed only as a 482 | consequence of further modification of the contributor version. For 483 | purposes of this definition, "control" includes the right to grant 484 | patent sublicenses in a manner consistent with the requirements of 485 | this License. 486 | 487 | Each contributor grants you a non-exclusive, worldwide, royalty-free 488 | patent license under the contributor's essential patent claims, to 489 | make, use, sell, offer for sale, import and otherwise run, modify and 490 | propagate the contents of its contributor version. 491 | 492 | In the following three paragraphs, a "patent license" is any express 493 | agreement or commitment, however denominated, not to enforce a patent 494 | (such as an express permission to practice a patent or covenant not to 495 | sue for patent infringement). To "grant" such a patent license to a 496 | party means to make such an agreement or commitment not to enforce a 497 | patent against the party. 498 | 499 | If you convey a covered work, knowingly relying on a patent license, 500 | and the Corresponding Source of the work is not available for anyone 501 | to copy, free of charge and under the terms of this License, through a 502 | publicly available network server or other readily accessible means, 503 | then you must either (1) cause the Corresponding Source to be so 504 | available, or (2) arrange to deprive yourself of the benefit of the 505 | patent license for this particular work, or (3) arrange, in a manner 506 | consistent with the requirements of this License, to extend the patent 507 | license to downstream recipients. "Knowingly relying" means you have 508 | actual knowledge that, but for the patent license, your conveying the 509 | covered work in a country, or your recipient's use of the covered work 510 | in a country, would infringe one or more identifiable patents in that 511 | country that you have reason to believe are valid. 512 | 513 | If, pursuant to or in connection with a single transaction or 514 | arrangement, you convey, or propagate by procuring conveyance of, a 515 | covered work, and grant a patent license to some of the parties 516 | receiving the covered work authorizing them to use, propagate, modify 517 | or convey a specific copy of the covered work, then the patent license 518 | you grant is automatically extended to all recipients of the covered 519 | work and works based on it. 520 | 521 | A patent license is "discriminatory" if it does not include within 522 | the scope of its coverage, prohibits the exercise of, or is 523 | conditioned on the non-exercise of one or more of the rights that are 524 | specifically granted under this License. You may not convey a covered 525 | work if you are a party to an arrangement with a third party that is 526 | in the business of distributing software, under which you make payment 527 | to the third party based on the extent of your activity of conveying 528 | the work, and under which the third party grants, to any of the 529 | parties who would receive the covered work from you, a discriminatory 530 | patent license (a) in connection with copies of the covered work 531 | conveyed by you (or copies made from those copies), or (b) primarily 532 | for and in connection with specific products or compilations that 533 | contain the covered work, unless you entered into that arrangement, 534 | or that patent license was granted, prior to 28 March 2007. 535 | 536 | Nothing in this License shall be construed as excluding or limiting 537 | any implied license or other defenses to infringement that may 538 | otherwise be available to you under applicable patent law. 539 | 540 | 12. No Surrender of Others' Freedom. 541 | 542 | If conditions are imposed on you (whether by court order, agreement or 543 | otherwise) that contradict the conditions of this License, they do not 544 | excuse you from the conditions of this License. If you cannot convey a 545 | covered work so as to satisfy simultaneously your obligations under this 546 | License and any other pertinent obligations, then as a consequence you may 547 | not convey it at all. For example, if you agree to terms that obligate you 548 | to collect a royalty for further conveying from those to whom you convey 549 | the Program, the only way you could satisfy both those terms and this 550 | License would be to refrain entirely from conveying the Program. 551 | 552 | 13. Use with the GNU Affero General Public License. 553 | 554 | Notwithstanding any other provision of this License, you have 555 | permission to link or combine any covered work with a work licensed 556 | under version 3 of the GNU Affero General Public License into a single 557 | combined work, and to convey the resulting work. The terms of this 558 | License will continue to apply to the part which is the covered work, 559 | but the special requirements of the GNU Affero General Public License, 560 | section 13, concerning interaction through a network will apply to the 561 | combination as such. 562 | 563 | 14. Revised Versions of this License. 564 | 565 | The Free Software Foundation may publish revised and/or new versions of 566 | the GNU General Public License from time to time. Such new versions will 567 | be similar in spirit to the present version, but may differ in detail to 568 | address new problems or concerns. 569 | 570 | Each version is given a distinguishing version number. If the 571 | Program specifies that a certain numbered version of the GNU General 572 | Public License "or any later version" applies to it, you have the 573 | option of following the terms and conditions either of that numbered 574 | version or of any later version published by the Free Software 575 | Foundation. If the Program does not specify a version number of the 576 | GNU General Public License, you may choose any version ever published 577 | by the Free Software Foundation. 578 | 579 | If the Program specifies that a proxy can decide which future 580 | versions of the GNU General Public License can be used, that proxy's 581 | public statement of acceptance of a version permanently authorizes you 582 | to choose that version for the Program. 583 | 584 | Later license versions may give you additional or different 585 | permissions. However, no additional obligations are imposed on any 586 | author or copyright holder as a result of your choosing to follow a 587 | later version. 588 | 589 | 15. Disclaimer of Warranty. 590 | 591 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 592 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 593 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 594 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 595 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 596 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 597 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 598 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 599 | 600 | 16. Limitation of Liability. 601 | 602 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 603 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 604 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 605 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 606 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 607 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 608 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 609 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 610 | SUCH DAMAGES. 611 | 612 | 17. Interpretation of Sections 15 and 16. 613 | 614 | If the disclaimer of warranty and limitation of liability provided 615 | above cannot be given local legal effect according to their terms, 616 | reviewing courts shall apply local law that most closely approximates 617 | an absolute waiver of all civil liability in connection with the 618 | Program, unless a warranty or assumption of liability accompanies a 619 | copy of the Program in return for a fee. 620 | 621 | END OF TERMS AND CONDITIONS 622 | 623 | How to Apply These Terms to Your New Programs 624 | 625 | If you develop a new program, and you want it to be of the greatest 626 | possible use to the public, the best way to achieve this is to make it 627 | free software which everyone can redistribute and change under these terms. 628 | 629 | To do so, attach the following notices to the program. It is safest 630 | to attach them to the start of each source file to most effectively 631 | state the exclusion of warranty; and each file should have at least 632 | the "copyright" line and a pointer to where the full notice is found. 633 | 634 | 635 | Copyright (C) 636 | 637 | This program is free software: you can redistribute it and/or modify 638 | it under the terms of the GNU General Public License as published by 639 | the Free Software Foundation, either version 3 of the License, or 640 | (at your option) any later version. 641 | 642 | This program is distributed in the hope that it will be useful, 643 | but WITHOUT ANY WARRANTY; without even the implied warranty of 644 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 645 | GNU General Public License for more details. 646 | 647 | You should have received a copy of the GNU General Public License 648 | along with this program. If not, see . 649 | 650 | Also add information on how to contact you by electronic and paper mail. 651 | 652 | If the program does terminal interaction, make it output a short 653 | notice like this when it starts in an interactive mode: 654 | 655 | Copyright (C) 656 | This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 657 | This is free software, and you are welcome to redistribute it 658 | under certain conditions; type `show c' for details. 659 | 660 | The hypothetical commands `show w' and `show c' should show the appropriate 661 | parts of the General Public License. Of course, your program's commands 662 | might be different; for a GUI interface, you would use an "about box". 663 | 664 | You should also get your employer (if you work as a programmer) or school, 665 | if any, to sign a "copyright disclaimer" for the program, if necessary. 666 | For more information on this, and how to apply and follow the GNU GPL, see 667 | . 668 | 669 | The GNU General Public License does not permit incorporating your program 670 | into proprietary programs. If your program is a subroutine library, you 671 | may consider it more useful to permit linking proprietary applications with 672 | the library. If this is what you want to do, use the GNU Lesser General 673 | Public License instead of this License. But first, please read 674 | . 675 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | ![Release](https://img.shields.io/badge/release-beta-yellow.svg) 2 | ![Language](https://img.shields.io/badge/made%20with-bash-brightgreen.svg) 3 | ![License](https://img.shields.io/badge/license-GPLv3-blue.svg) 4 | ![LastUpdate](https://img.shields.io/badge/last%20update-2019%2F05-orange.svg) 5 | ![TestedOn](https://img.shields.io/badge/tested%20on-Kali%20Linux-red.svg) 6 | 7 |
8 |
9 |
10 | 11 |

12 | 13 | ## About 14 | Trigmap is a bash wrapper for Nmap. You can use it to easily run nmap scans and, especially, to collect information into a well organized directory hierarchy. The use of Nmap makes the script **portable** (easy to run not only on Kali Linux) and very **efficient** thanks to the optimized Nmap algorithms. 15 | 16 | ## Details 17 | Trigmap can performs several tasks using Nmap scripting engine (NSE): 18 | 19 | * **_Port Scan_** 20 | * **_Service and Version Detection_** 21 | * **_Web Resources Enumeration_** 22 | * **_Vulnerability Assessment_** 23 | * **_Common Vulnerabilities Test_** 24 | * **_Common Exploits Test_** 25 | * **_Dictionary Attacks Against Active Services_** 26 | * **_Default Credentials Test_** 27 | 28 | ## Usage 29 | Trigmap can be used in two ways: 30 | 31 | * Interactive mode: 32 | 33 | `trigmap [ENTER], and the script does the rest` 34 | 35 |

36 | 37 | * NON-interactive mode: 38 | 39 | `trigmap -h|--host [-tp|--tcp TCP ports] [-up|--udp UDP ports] [-f|--file file path] [-s|--speed time profile] [-n|--nic NIC] [-p|--phase phases]` 40 | 41 |
42 | 43 | **If you want to see the help:** 44 |
45 | 46 | `trigmap --help to print this helper` 47 | 48 |
49 | 50 | _**For more screenshots see the relative [directory](https://github.com/Leviathan36/trigmap/tree/master/trigmap_images/screenshots) of the repository.**_ 51 | 52 | ## Dir Hierarchy 53 |

54 | 55 | ## Customization 56 | It's possible to customize the script by changing the value of variables at the beginning of the file. 57 | In particularly you can choose the wordlists used by the Nmap scripts and the most important Nmap scan parameters (ping, scan, timing and script). 58 | 59 | ```bash 60 | ############################################## 61 | ### PARAMETERS ### 62 | ############################################## 63 | GENERAL_USER_LIST='general_user_wordlist_short.txt' 64 | WIN_USER_LIST='win_user_wordlist_short.txt' 65 | UNIX_USER_LIST='unix_user_wordlist_short.txt' 66 | SHORT_PASS_LIST='fasttrack.txt' 67 | LONG_PASS_LIST='passwords.lst' 68 | 69 | ############################################## 70 | ### NMAP SETTING ### 71 | ############################################## 72 | 73 | # PE (echo req), PP (timestamp-request) 74 | # you can add a port on every ping scan 75 | NMAP_PING='-PE -PS80,443,22,25,110,445 -PU -PP -PA80,443,22,25,110,445' 76 | 77 | NMAP_OTHER='-sV --allports -O --fuzzy --min-hostgroup 256' 78 | 79 | SCRIPT_VA='(auth or vuln or exploit or http-* and not dos)' 80 | 81 | SCRIPT_BRUTE='(auth or vuln or exploit or http-* or brute and not dos)' 82 | 83 | SCRIPT_ARGS="userdb=$GENERAL_USER_LIST,passdb=$SHORT_PASS_LIST" 84 | 85 | CUSTOM_SCAN='--max-retries 3 --min-rate 250' # LIKE UNICORNSCAN 86 | ``` 87 | 88 | ## Twin Brother 89 | This project is very similar to [Kaboom](https://github.com/Leviathan36/kaboom), but it has a different philosophy; infact, it uses only Nmap, while Kaboom uses different tools, one for each task. 90 | The peculiarity of Trigmap is the **portability** and the **efficient**, but it's recommended to use both the tools to 91 | scan the targets in a such way to gather more evidence with different tools (_redundancy_ and _reliability_). 92 | 93 |
94 |
95 | 96 | ------------------------------------- 97 | ## Disclaimer: 98 | Author assume no liability and are not responsible for any misuse or damage caused by this program. 99 | 100 | Trigmap is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. 101 | 102 | ## License: 103 | Trigmap is released under GPLv3 license. See [LICENSE](LICENSE) for more details. 104 | -------------------------------------------------------------------------------- /trigmap/fasttrack.txt: -------------------------------------------------------------------------------- 1 | Spring2017 2 | Spring2016 3 | Spring2015 4 | Spring2014 5 | Spring2013 6 | spring2017 7 | spring2016 8 | spring2015 9 | spring2014 10 | spring2013 11 | Summer2017 12 | Summer2016 13 | Summer2015 14 | Summer2014 15 | Summer2013 16 | summer2017 17 | summer2016 18 | summer2015 19 | summer2014 20 | summer2013 21 | Autumn2017 22 | Autumn2016 23 | Autumn2015 24 | Autumn2014 25 | Autumn2013 26 | autumn2017 27 | autumn2016 28 | autumn2015 29 | autumn2014 30 | autumn2013 31 | Winter2017 32 | Winter2016 33 | Winter2015 34 | Winter2014 35 | Winter2013 36 | winter2017 37 | winter2016 38 | winter2015 39 | winter2014 40 | winter2013 41 | P@55w0rd 42 | P@ssw0rd! 43 | P@55w0rd! 44 | sqlsqlsqlsql 45 | SQLSQLSQLSQL 46 | Welcome123 47 | Welcome1234 48 | Welcome1212 49 | PassSql12 50 | network 51 | networking 52 | networks 53 | test 54 | testtest 55 | testing 56 | testing123 57 | testsql 58 | test-sql3 59 | sqlsqlsqlsqlsql 60 | bankbank 61 | default 62 | test 63 | testing 64 | password2 65 | 66 | password 67 | Password1 68 | Password1! 69 | P@ssw0rd 70 | password12 71 | Password12 72 | security 73 | security1 74 | security3 75 | secuirty3 76 | complex1 77 | complex2 78 | complex3 79 | sqlserver 80 | sql 81 | sqlsql 82 | password1 83 | password123 84 | complexpassword 85 | database 86 | server 87 | changeme 88 | change 89 | sqlserver2000 90 | sqlserver2005 91 | Sqlserver 92 | SqlServer 93 | Password1 94 | Password2 95 | P@ssw0rd 96 | P@ssw0rd! 97 | P@55w0rd! 98 | P@ssword! 99 | Password! 100 | password! 101 | sqlsvr 102 | sqlaccount 103 | account 104 | sasa 105 | sa 106 | administator 107 | pass 108 | sql 109 | microsoft 110 | sqlserver 111 | sa 112 | hugs 113 | sasa 114 | welcome 115 | welcome1 116 | welcome2 117 | march2011 118 | sqlpass 119 | sqlpassword 120 | guessme 121 | bird 122 | P@55w0rd! 123 | test 124 | dev 125 | devdev 126 | devdevdev 127 | qa 128 | god 129 | admin 130 | adminadmin 131 | admins 132 | goat 133 | sysadmin 134 | water 135 | dirt 136 | air 137 | earth 138 | company 139 | company1 140 | company123 141 | company1! 142 | company! 143 | secret 144 | secret! 145 | secret123 146 | secret1212 147 | secret12 148 | secret1! 149 | sqlpass123 150 | Summer2013 151 | Summer2012 152 | Summer2011 153 | Summer2010 154 | Summer2009 155 | Summer2008 156 | Winter2013 157 | Winter2012 158 | Winter2011 159 | Winter2010 160 | Winter2009 161 | Winter2008 162 | summer2013 163 | summer2012 164 | summer2011 165 | summer2010 166 | summer2009 167 | summer2008 168 | winter2013 169 | winter2012 170 | winter2011 171 | winter2010 172 | winter2009 173 | winter2008 174 | 123456 175 | abcd123 176 | abc 177 | burp 178 | private 179 | unknown 180 | wicked 181 | alpine 182 | trust 183 | microsoft 184 | sql2000 185 | sql2003 186 | sql2005 187 | sql2008 188 | vista 189 | xp 190 | nt 191 | 98 192 | 95 193 | 2003 194 | 2008 195 | someday 196 | sql2010 197 | sql2011 198 | sql2009 199 | complex 200 | goat 201 | changelater 202 | rain 203 | fire 204 | snow 205 | unchanged 206 | qwerty 207 | 12345678 208 | football 209 | baseball 210 | basketball 211 | abc123 212 | 111111 213 | 1qaz2wsx 214 | dragon 215 | master 216 | monkey 217 | letmein 218 | login 219 | princess 220 | solo 221 | qwertyuiop 222 | starwars 223 | -------------------------------------------------------------------------------- /trigmap/general_user_wordlist_short.txt: -------------------------------------------------------------------------------- 1 | admin 2 | root 3 | administrator 4 | guest 5 | system 6 | -------------------------------------------------------------------------------- /trigmap/passwords.lst: -------------------------------------------------------------------------------- 1 | #!comment: ***********************IMPORTANT NMAP LICENSE TERMS************************ 2 | #!comment: * * 3 | #!comment: * The Nmap Security Scanner is (C) 1996-2010 Insecure.Com LLC. Nmap is * 4 | #!comment: * also a registered trademark of Insecure.Com LLC. This program is free * 5 | #!comment: * software; you may redistribute and/or modify it under the terms of the * 6 | #!comment: * GNU General Public License as published by the Free Software * 7 | #!comment: * Foundation; Version 2 with the clarifications and exceptions described * 8 | #!comment: * below. This guarantees your right to use, modify, and redistribute * 9 | #!comment: * this software under certain conditions. If you wish to embed Nmap * 10 | #!comment: * technology into proprietary software, we sell alternative licenses * 11 | #!comment: * (contact sales@insecure.com). Dozens of software vendors already * 12 | #!comment: * license Nmap technology such as host discovery, port scanning, OS * 13 | #!comment: * detection, and version detection. * 14 | #!comment: * * 15 | #!comment: * Note that the GPL places important restrictions on "derived works", yet * 16 | #!comment: * it does not provide a detailed definition of that term. To avoid * 17 | #!comment: * misunderstandings, we consider an application to constitute a * 18 | #!comment: * "derivative work" for the purpose of this license if it does any of the * 19 | #!comment: * following: * 20 | #!comment: * o Integrates source code from Nmap * 21 | #!comment: * o Reads or includes Nmap copyrighted data files, such as * 22 | #!comment: * nmap-os-db or nmap-service-probes. * 23 | #!comment: * o Executes Nmap and parses the results (as opposed to typical shell or * 24 | #!comment: * execution-menu apps, which simply display raw Nmap output and so are * 25 | #!comment: * not derivative works.) * 26 | #!comment: * o Integrates/includes/aggregates Nmap into a proprietary executable * 27 | #!comment: * installer, such as those produced by InstallShield. * 28 | #!comment: * o Links to a library or executes a program that does any of the above * 29 | #!comment: * * 30 | #!comment: * The term "Nmap" should be taken to also include any portions or derived * 31 | #!comment: * works of Nmap. This list is not exclusive, but is meant to clarify our * 32 | #!comment: * interpretation of derived works with some common examples. Our * 33 | #!comment: * interpretation applies only to Nmap--we don't speak for other people's * 34 | #!comment: * GPL works. * 35 | #!comment: * * 36 | #!comment: * If you have any questions about the GPL licensing restrictions on using * 37 | #!comment: * Nmap in non-GPL works, we would be happy to help. As mentioned above, * 38 | #!comment: * we also offer alternative license to integrate Nmap into proprietary * 39 | #!comment: * applications and appliances. These contracts have been sold to dozens * 40 | #!comment: * of software vendors, and generally include a perpetual license as well * 41 | #!comment: * as providing for priority support and updates as well as helping to * 42 | #!comment: * fund the continued development of Nmap technology. Please email * 43 | #!comment: * sales@insecure.com for further information. * 44 | #!comment: * * 45 | #!comment: * As a special exception to the GPL terms, Insecure.Com LLC grants * 46 | #!comment: * permission to link the code of this program with any version of the * 47 | #!comment: * OpenSSL library which is distributed under a license identical to that * 48 | #!comment: * listed in the included docs/licenses/OpenSSL.txt file, and distribute * 49 | #!comment: * linked combinations including the two. You must obey the GNU GPL in all * 50 | #!comment: * respects for all of the code used other than OpenSSL. If you modify * 51 | #!comment: * this file, you may extend this exception to your version of the file, * 52 | #!comment: * but you are not obligated to do so. * 53 | #!comment: * * 54 | #!comment: * If you received these files with a written license agreement or * 55 | #!comment: * contract stating terms other than the terms above, then that * 56 | #!comment: * alternative license agreement takes precedence over these comments. * 57 | #!comment: * * 58 | #!comment: * Source is provided to this software because we believe users have a * 59 | #!comment: * right to know exactly what a program is going to do before they run it. * 60 | #!comment: * This also allows you to audit the software for security holes (none * 61 | #!comment: * have been found so far). * 62 | #!comment: * * 63 | #!comment: * Source code also allows you to port Nmap to new platforms, fix bugs, * 64 | #!comment: * and add new features. You are highly encouraged to send your changes * 65 | #!comment: * to the dev@nmap.org mailing list for possible incorporation into the * 66 | #!comment: * main distribution. By sending these changes to Fyodor or one of the * 67 | #!comment: * Insecure.Org development mailing lists, it is assumed that you are * 68 | #!comment: * offering the Nmap Project (Insecure.Com LLC) the unlimited, * 69 | #!comment: * non-exclusive right to reuse, modify, and relicense the code. Nmap * 70 | #!comment: * will always be available Open Source, but this is important because the * 71 | #!comment: * inability to relicense code has caused devastating problems for other * 72 | #!comment: * Free Software projects (such as KDE and NASM). We also occasionally * 73 | #!comment: * relicense the code to third parties as discussed above. If you wish to * 74 | #!comment: * specify special license conditions of your contributions, just say so * 75 | #!comment: * when you send them. * 76 | #!comment: * * 77 | #!comment: * This program is distributed in the hope that it will be useful, but * 78 | #!comment: * WITHOUT ANY WARRANTY; without even the implied warranty of * 79 | #!comment: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * 80 | #!comment: * General Public License v2.0 for more details at * 81 | #!comment: * http://www.gnu.org/licenses/gpl-2.0.html , or in the COPYING file * 82 | #!comment: * included with Nmap. * 83 | #!comment: * * 84 | #!comment: ***************************************************************************/ 85 | 86 | 123456 87 | 12345 88 | 123456789 89 | password 90 | iloveyou 91 | princess 92 | 12345678 93 | 1234567 94 | abc123 95 | nicole 96 | daniel 97 | monkey 98 | babygirl 99 | qwerty 100 | lovely 101 | 654321 102 | michael 103 | jessica 104 | 111111 105 | ashley 106 | 000000 107 | iloveu 108 | michelle 109 | tigger 110 | sunshine 111 | chocolate 112 | password1 113 | soccer 114 | anthony 115 | friends 116 | purple 117 | angel 118 | butterfly 119 | jordan 120 | fuckyou 121 | 123123 122 | justin 123 | liverpool 124 | football 125 | loveme 126 | secret 127 | andrea 128 | jennifer 129 | joshua 130 | carlos 131 | superman 132 | bubbles 133 | hannah 134 | 1234567890 135 | amanda 136 | andrew 137 | loveyou 138 | pretty 139 | basketball 140 | angels 141 | flower 142 | tweety 143 | hello 144 | playboy 145 | charlie 146 | elizabeth 147 | samantha 148 | hottie 149 | chelsea 150 | tinkerbell 151 | shadow 152 | barbie 153 | 666666 154 | jasmine 155 | lovers 156 | brandon 157 | teamo 158 | matthew 159 | melissa 160 | eminem 161 | robert 162 | danielle 163 | forever 164 | dragon 165 | computer 166 | whatever 167 | family 168 | jonathan 169 | cookie 170 | summer 171 | 987654321 172 | naruto 173 | vanessa 174 | sweety 175 | joseph 176 | spongebob 177 | junior 178 | taylor 179 | softball 180 | mickey 181 | yellow 182 | lauren 183 | daniela 184 | princesa 185 | william 186 | alexandra 187 | thomas 188 | jesus 189 | alexis 190 | miguel 191 | estrella 192 | patrick 193 | angela 194 | mylove 195 | poohbear 196 | beautiful 197 | iloveme 198 | sakura 199 | adrian 200 | 121212 201 | destiny 202 | alexander 203 | christian 204 | america 205 | monica 206 | dancer 207 | 112233 208 | sayang 209 | richard 210 | diamond 211 | orange 212 | 555555 213 | princess1 214 | carolina 215 | steven 216 | louise 217 | rangers 218 | snoopy 219 | hunter 220 | 999999 221 | killer 222 | nathan 223 | 789456 224 | 11111 225 | buster 226 | shorty 227 | gabriel 228 | cherry 229 | george 230 | cheese 231 | sandra 232 | alejandro 233 | rachel 234 | brittany 235 | ginger 236 | patricia 237 | alejandra 238 | 7777777 239 | 159753 240 | pokemon 241 | pepper 242 | arsenal 243 | maggie 244 | peanut 245 | baseball 246 | dolphin 247 | heather 248 | david 249 | tequiero 250 | chicken 251 | blink182 252 | antonio 253 | 222222 254 | victoria 255 | sweetie 256 | rainbow 257 | stephanie 258 | 987654 259 | beauty 260 | honey 261 | 00000 262 | fernando 263 | cristina 264 | corazon 265 | kisses 266 | manuel 267 | angel1 268 | martin 269 | heaven 270 | november 271 | 55555 272 | rebelde 273 | greenday 274 | 123321 275 | ricardo 276 | batman 277 | babygurl 278 | madison 279 | 123abc 280 | mother 281 | alyssa 282 | morgan 283 | asshole 284 | december 285 | bailey 286 | mahalkita 287 | september 288 | mariposa 289 | maria 290 | sophie 291 | jeremy 292 | gemini 293 | pamela 294 | gabriela 295 | shannon 296 | iloveyou2 297 | kimberly 298 | jessie 299 | pictures 300 | austin 301 | claudia 302 | hellokitty 303 | booboo 304 | master 305 | harley 306 | angelica 307 | babygirl1 308 | victor 309 | horses 310 | courtney 311 | tiffany 312 | mahalko 313 | eduardo 314 | kissme 315 | mariana 316 | peaches 317 | andres 318 | banana 319 | precious 320 | chris 321 | october 322 | ronaldo 323 | inuyasha 324 | veronica 325 | iloveyou1 326 | 888888 327 | freedom 328 | james 329 | prince 330 | oliver 331 | jesus1 332 | zxcvbnm 333 | adriana 334 | samsung 335 | cutie 336 | friend 337 | crystal 338 | edward 339 | scooby 340 | celtic 341 | rebecca 342 | jackie 343 | carmen 344 | kenneth 345 | diana 346 | angelo 347 | johnny 348 | 456789 349 | sebastian 350 | school 351 | spiderman 352 | karina 353 | mustang 354 | christopher 355 | slipknot 356 | august 357 | orlando 358 | 0123456789 359 | samuel 360 | monkey1 361 | adidas 362 | cameron 363 | barcelona 364 | casper 365 | bitch 366 | kitten 367 | internet 368 | 50cent 369 | kevin 370 | cutiepie 371 | brenda 372 | bonita 373 | babyboy 374 | maganda 375 | karen 376 | natalie 377 | fuckoff 378 | 123654 379 | isabel 380 | sarah 381 | silver 382 | cuteako 383 | javier 384 | jasper 385 | 789456123 386 | 777777 387 | tigers 388 | marvin 389 | rockstar 390 | bowwow 391 | nicholas 392 | chester 393 | laura 394 | portugal 395 | smokey 396 | denise 397 | asdfgh 398 | flowers 399 | january 400 | tintin 401 | alicia 402 | volleyball 403 | 101010 404 | bianca 405 | garfield 406 | cristian 407 | dennis 408 | cassie 409 | 696969 410 | chrisbrown 411 | sweet 412 | francis 413 | midnight 414 | strawberry 415 | panget 416 | love123 417 | lollipop 418 | benfica 419 | aaaaaa 420 | olivia 421 | welcome 422 | apples 423 | charles 424 | cancer 425 | qwertyuiop 426 | ihateyou 427 | vincent 428 | mercedes 429 | nirvana 430 | jordan23 431 | letmein 432 | camila 433 | monique 434 | superstar 435 | harrypotter 436 | fucker 437 | scorpio 438 | pookie 439 | icecream 440 | christine 441 | benjamin 442 | mexico 443 | abigail 444 | charmed 445 | 131313 446 | lorena 447 | lovelove 448 | abcdef 449 | katherine 450 | andreea 451 | 333333 452 | rafael 453 | brianna 454 | love 455 | aaliyah 456 | brooke 457 | johncena 458 | dakota 459 | gangsta 460 | jackson 461 | michael1 462 | hiphop 463 | travis 464 | sabrina 465 | metallica 466 | julian 467 | stephen 468 | jeffrey 469 | sergio 470 | mybaby 471 | babyblue 472 | fluffy 473 | badboy 474 | simple 475 | smiley 476 | catherine 477 | dolphins 478 | melanie 479 | blondie 480 | westlife 481 | newyork 482 | fernanda 483 | sasuke 484 | 88888888 485 | muffin 486 | piglet 487 | roberto 488 | teresa 489 | steaua 490 | jason 491 | minnie 492 | ronald 493 | asdfghjkl 494 | popcorn 495 | raymond 496 | slideshow 497 | kitty 498 | santiago 499 | scooter 500 | 5201314 501 | dexter 502 | jerome 503 | jayson 504 | 246810 505 | ladybug 506 | gandako 507 | cookies 508 | gatita 509 | leslie 510 | babyko 511 | lalala 512 | christ 513 | alberto 514 | 232323 515 | jenny 516 | sweetheart 517 | chivas 518 | leonardo 519 | nicole1 520 | rockon 521 | marcus 522 | valeria 523 | anthony1 524 | babydoll 525 | jayjay 526 | brooklyn 527 | cocacola 528 | 12345678910 529 | sexygirl 530 | bitch1 531 | liliana 532 | happy 533 | chris1 534 | amores 535 | eeyore 536 | natasha 537 | skittles 538 | fatima 539 | 252525 540 | single 541 | lover 542 | london 543 | winnie 544 | 159357 545 | miamor 546 | 123456a 547 | colombia 548 | manutd 549 | lakers 550 | hahaha 551 | britney 552 | albert 553 | katrina 554 | teddybear 555 | linda 556 | elephant 557 | grace 558 | christina 559 | marie 560 | stupid 561 | hockey 562 | 0123456 563 | pasaway 564 | snickers 565 | mahal 566 | turtle 567 | tatiana 568 | charlotte 569 | smile 570 | 147258369 571 | cantik 572 | qazwsx 573 | teiubesc 574 | genesis 575 | shelby 576 | natalia 577 | spider 578 | francisco 579 | 147258 580 | xavier 581 | kelsey 582 | amorcito 583 | angelito 584 | claire 585 | brandy 586 | manchester 587 | paola 588 | fuckyou1 589 | mommy1 590 | marina 591 | 147852 592 | bandit 593 | phoenix 594 | rabbit 595 | amigos 596 | 444444 597 | garcia 598 | bonnie 599 | linkinpark 600 | marlon 601 | sharon 602 | guitar 603 | dallas 604 | starwars 605 | disney 606 | monster 607 | frankie 608 | diego 609 | red123 610 | pimpin 611 | pumpkin 612 | iverson 613 | 54321 614 | andrei 615 | england 616 | soccer1 617 | sparky 618 | fashion 619 | justine 620 | allison 621 | emily 622 | 102030 623 | lucky1 624 | 456123 625 | wilson 626 | potter 627 | danny 628 | matrix 629 | miranda 630 | bestfriend 631 | number1 632 | canada 633 | people 634 | thunder 635 | hermosa 636 | barney 637 | player 638 | savannah 639 | camille 640 | sporting 641 | katie 642 | nelson 643 | 212121 644 | yankees 645 | scotland 646 | timothy 647 | hearts 648 | iloveu2 649 | truelove 650 | hottie1 651 | jasmin 652 | smiles 653 | bubble 654 | onelove 655 | jayden 656 | florida 657 | ilovehim 658 | parola 659 | ganda 660 | brandon1 661 | jackass 662 | shakira 663 | motorola 664 | tennis 665 | sweets 666 | estrellita 667 | westside 668 | nikki 669 | evelyn 670 | biteme 671 | monkeys 672 | maryjane 673 | lucky 674 | trinity 675 | loverboy 676 | ronnie 677 | love12 678 | elijah 679 | joanna 680 | emmanuel 681 | familia 682 | broken 683 | compaq 684 | 1234 685 | omarion 686 | hello1 687 | 999999999 688 | mamita 689 | rodrigo 690 | justin1 691 | jamaica 692 | california 693 | isabella 694 | shopping 695 | fuckyou2 696 | gracie 697 | nothing 698 | kathleen 699 | cupcake 700 | mauricio 701 | sammy 702 | abcdefg 703 | bradley 704 | amigas 705 | mariah 706 | loser 707 | connor 708 | preciosa 709 | ferrari 710 | snowball 711 | elaine 712 | robbie 713 | hector 714 | flores 715 | jorge 716 | trustno1 717 | darling 718 | candy 719 | martinez 720 | sunflower 721 | millie 722 | jamie 723 | melody 724 | blessed 725 | cheche 726 | dominic 727 | joanne 728 | valentina 729 | swimming 730 | pebbles 731 | tyler 732 | friendster 733 | santos 734 | taurus 735 | dreams 736 | a123456 737 | aaron 738 | gloria 739 | loving 740 | gangster 741 | sweetpea 742 | kitkat 743 | sunshine1 744 | google 745 | jessica1 746 | cheyenne 747 | dustin 748 | violet 749 | apple 750 | sydney 751 | darren 752 | megan 753 | darkangel 754 | kelly 755 | cynthia 756 | zachary 757 | froggy 758 | charlie1 759 | sophia 760 | skater 761 | 123qwe 762 | raiders 763 | purple1 764 | bettyboop 765 | darkness 766 | oscar 767 | iubire 768 | money 769 | chacha 770 | jordan1 771 | 010203 772 | inlove 773 | batista 774 | bestfriends 775 | marian 776 | gerald 777 | carebear 778 | green 779 | daddy1 780 | pogiako 781 | karla 782 | billabong 783 | sexyme 784 | willow 785 | cooper 786 | pinky 787 | daddysgirl 788 | ashley1 789 | bambam 790 | tigger1 791 | amber 792 | fuckme 793 | erika 794 | nenita 795 | dreamer 796 | bella 797 | gatito 798 | butter 799 | 123789 800 | buttercup 801 | glitter 802 | passion 803 | lokita 804 | sister 805 | maldita 806 | nichole 807 | lindsey 808 | sierra 809 | lindsay 810 | anderson 811 | booger 812 | miller 813 | caroline 814 | eagles 815 | loveya 816 | marissa 817 | lovebug 818 | nicolas 819 | cecilia 820 | zacefron 821 | tokiohotel 822 | lollypop 823 | bubblegum 824 | kristine 825 | mario 826 | puppies 827 | mememe 828 | carter 829 | chubby 830 | scorpion 831 | ariana 832 | sammie 833 | 11111111 834 | stella 835 | raquel 836 | kristen 837 | qwerty1 838 | lonely 839 | stacey 840 | baller 841 | chance 842 | hotstuff 843 | angelina 844 | roxana 845 | james1 846 | susana 847 | sexybitch 848 | rocker 849 | williams 850 | 012345 851 | babylove 852 | rocky 853 | sweet16 854 | freddy 855 | lolita 856 | remember 857 | football1 858 | catdog 859 | kayla 860 | playgirl 861 | loveme1 862 | marcos 863 | zxcvbn 864 | yamaha 865 | gustavo 866 | bhebhe 867 | PASSWORD 868 | hotdog 869 | 202020 870 | daddy 871 | 151515 872 | milagros 873 | caitlin 874 | vampire 875 | lovely1 876 | ireland 877 | skyline 878 | matthew1 879 | xxxxxx 880 | beyonce 881 | lilmama 882 | georgia 883 | martha 884 | gerard 885 | armando 886 | undertaker 887 | margarita 888 | bryan 889 | kittycat 890 | tristan 891 | lizzie 892 | dance 893 | loves 894 | password2 895 | money1 896 | amistad 897 | tamara 898 | boomer 899 | simpsons 900 | justme 901 | capricorn 902 | maddie 903 | andrew1 904 | amelia 905 | delfin 906 | legolas 907 | sheila 908 | 141414 909 | harvey 910 | cheerleader 911 | chiquita 912 | gateway 913 | cowboys 914 | janine 915 | penguin 916 | enrique 917 | patches 918 | scoobydoo 919 | genius 920 | badgirl 921 | israel 922 | carlitos 923 | happy1 924 | dancing 925 | cuteme 926 | lester 927 | angeles 928 | peewee 929 | walter 930 | jesuschrist 931 | awesome 932 | thebest 933 | deedee 934 | lucky7 935 | chichi 936 | buddy1 937 | angie 938 | 00000000 939 | ashton 940 | winter 941 | michelle1 942 | hardcore 943 | tinker 944 | myself 945 | janice 946 | paloma 947 | tazmania 948 | regina 949 | cinderella 950 | molly 951 | miriam 952 | poopoo 953 | animal 954 | april 955 | ilovejesus 956 | david1 957 | murphy 958 | please 959 | felipe 960 | spencer 961 | tekiero 962 | princesita 963 | jesucristo 964 | pussycat 965 | johnson 966 | lipgloss 967 | melvin 968 | rosita 969 | jazmin 970 | celeste 971 | mierda 972 | scarface 973 | pangit 974 | silvia 975 | arturo 976 | 741852963 977 | mylife 978 | trixie 979 | gorgeous 980 | hernandez 981 | chicago 982 | panthers 983 | daisy 984 | yourmom 985 | ilovegod 986 | xbox360 987 | babyboo 988 | kristina 989 | crazy 990 | hawaii 991 | honeyko 992 | valerie 993 | nikita 994 | sparkle 995 | debbie 996 | loveu 997 | tucker 998 | 098765 999 | hollywood 1000 | wesley 1001 | lupita 1002 | alfredo 1003 | hailey 1004 | musica 1005 | abcd1234 1006 | sexymama 1007 | lawrence 1008 | 242424 1009 | jeremiah 1010 | hayden 1011 | bullshit 1012 | marley 1013 | chloe 1014 | qwert 1015 | barbara 1016 | 1q2w3e4r 1017 | micheal 1018 | lolipop 1019 | panther 1020 | jimmy 1021 | trouble 1022 | united 1023 | sheena 1024 | coffee 1025 | 87654321 1026 | 0987654321 1027 | diamonds 1028 | pineapple 1029 | isaiah 1030 | brian 1031 | blonde 1032 | christmas 1033 | bubbles1 1034 | sandy 1035 | jasmine1 1036 | pantera 1037 | marisol 1038 | cesar 1039 | twilight 1040 | shadow1 1041 | butterfly1 1042 | bananas 1043 | 741852 1044 | whitney 1045 | mhine 1046 | julius 1047 | pauline 1048 | madalina 1049 | birthday 1050 | anamaria 1051 | drpepper 1052 | beatriz 1053 | eugene 1054 | bobby 1055 | donald 1056 | desiree 1057 | hannah1 1058 | sweetness 1059 | february 1060 | moomoo 1061 | twinkle 1062 | friendship 1063 | leanne 1064 | simone 1065 | shelly 1066 | anita 1067 | lover1 1068 | marie1 1069 | perfect 1070 | beckham 1071 | cookie1 1072 | cowboy 1073 | calvin 1074 | 123123123 1075 | imissyou 1076 | samson 1077 | catalina 1078 | damian 1079 | ashlee 1080 | autumn 1081 | buddy 1082 | bebita 1083 | joshua1 1084 | 147852369 1085 | andre 1086 | iloveyou! 1087 | titanic 1088 | daniel1 1089 | pollito 1090 | nursing 1091 | serenity 1092 | mommy 1093 | babyface 1094 | torres 1095 | bitches 1096 | dinamo 1097 | paradise 1098 | reggie 1099 | bulldogs 1100 | 852456 1101 | animals 1102 | willie 1103 | juliana 1104 | alison 1105 | passw0rd 1106 | sexylady 1107 | robert1 1108 | cassandra 1109 | 14344 1110 | mendoza 1111 | blossom 1112 | mariel 1113 | element 1114 | bethany 1115 | 1111111 1116 | 1q2w3e 1117 | creative 1118 | harold 1119 | bulldog 1120 | mitchell 1121 | diesel 1122 | marshall 1123 | amanda1 1124 | marcela 1125 | gerardo 1126 | maverick 1127 | peterpan 1128 | tanner 1129 | tyrone 1130 | cutie1 1131 | kucing 1132 | chanel 1133 | simpleplan 1134 | paulina 1135 | ILOVEYOU 1136 | fabian 1137 | pisces 1138 | always 1139 | hollister 1140 | kaylee 1141 | margaret 1142 | grandma 1143 | 143143 1144 | donkey 1145 | salvador 1146 | lovehurts 1147 | stars 1148 | rodriguez 1149 | jason1 1150 | sanchez 1151 | boston 1152 | thuglife 1153 | 181818 1154 | patito 1155 | thumper 1156 | piolin 1157 | theresa 1158 | derrick 1159 | helena 1160 | dianne 1161 | sweet1 1162 | joseluis 1163 | aquarius 1164 | dancer1 1165 | ashleigh 1166 | aaaaa 1167 | diosesamor 1168 | bigboy 1169 | danger 1170 | brownie 1171 | phillip 1172 | sammy1 1173 | panda 1174 | maxwell 1175 | mihaela 1176 | trisha 1177 | kitty1 1178 | parker 1179 | love4ever 1180 | esther 1181 | shane 1182 | chinita 1183 | alexandru 1184 | pickles 1185 | rosebud 1186 | archie 1187 | yvonne 1188 | virginia 1189 | heart 1190 | hamster 1191 | amormio 1192 | rosario 1193 | police 1194 | gregory 1195 | frances 1196 | lorraine 1197 | marius 1198 | speedy 1199 | hayley 1200 | 11223344 1201 | arnold 1202 | morena 1203 | kaitlyn 1204 | fantasy 1205 | trevor 1206 | sports 1207 | audrey 1208 | tweety1 1209 | asdfg 1210 | babycakes 1211 | sexy123 1212 | taylor1 1213 | hello123 1214 | babies 1215 | golden 1216 | 12341234 1217 | black 1218 | gerrard 1219 | italia 1220 | justice 1221 | brittney 1222 | superman1 1223 | catarina 1224 | roxanne 1225 | nintendo 1226 | marco 1227 | toyota 1228 | 753951 1229 | lorenzo 1230 | cuddles 1231 | yasmin 1232 | chrissy 1233 | darwin 1234 | rockme 1235 | diablo 1236 | rascal 1237 | summer1 1238 | nadine 1239 | tyler1 1240 | giggles 1241 | sofia 1242 | godisgood 1243 | dominique 1244 | rocku 1245 | happiness 1246 | jenjen 1247 | castillo 1248 | joyjoy 1249 | shorty1 1250 | russell 1251 | ghetto 1252 | wildcats 1253 | kittykat 1254 | madison1 1255 | faith 1256 | william1 1257 | pelusa 1258 | blahblah 1259 | franklin 1260 | beautiful1 1261 | college 1262 | mickey1 1263 | curtis 1264 | jocelyn 1265 | fabiola 1266 | cristo 1267 | buttons 1268 | junjun 1269 | alisha 1270 | cheer 1271 | kayleigh 1272 | gilbert 1273 | unicorn 1274 | rooney 1275 | rochelle 1276 | babygurl1 1277 | julio 1278 | cricket 1279 | macmac 1280 | singer 1281 | montana 1282 | cuteko 1283 | vanilla 1284 | 1qaz2wsx 1285 | winston 1286 | merlin 1287 | hershey 1288 | philip 1289 | bloods 1290 | bigdaddy 1291 | sarita 1292 | slayer 1293 | gabrielle 1294 | naughty 1295 | mississippi 1296 | therock 1297 | friends1 1298 | tiger 1299 | pikachu 1300 | soledad 1301 | mickeymouse 1302 | marilyn 1303 | shithead 1304 | 7654321 1305 | sapphire 1306 | busted 1307 | johanna 1308 | yolanda 1309 | gwapako 1310 | 123654789 1311 | prettygirl 1312 | pickle 1313 | emerald 1314 | warren 1315 | jacob 1316 | nascar 1317 | jellybean 1318 | elizabeth1 1319 | dragons 1320 | pretty1 1321 | love13 1322 | ramona 1323 | australia 1324 | camilo 1325 | scotty 1326 | pink123 1327 | bismillah 1328 | pedro 1329 | douglas 1330 | pinkie 1331 | holas 1332 | yoyoyo 1333 | photos 1334 | briana 1335 | carla 1336 | lucky13 1337 | callum 1338 | 9876543210 1339 | shirley 1340 | lavender 1341 | hilary 1342 | iceman 1343 | aurora 1344 | goddess 1345 | erick 1346 | ihateu 1347 | janelle 1348 | loveme2 1349 | asshole1 1350 | dylan 1351 | little 1352 | watermelon 1353 | copper 1354 | rahasia 1355 | breanna 1356 | lourdes 1357 | juancarlos 1358 | PRINCESS 1359 | tania 1360 | yellow1 1361 | cheer1 1362 | latina 1363 | lovergirl 1364 | windows 1365 | papito 1366 | hunter1 1367 | 010101 1368 | 22222 1369 | ranger 1370 | krystal 1371 | idontknow 1372 | kittens 1373 | rocky1 1374 | madonna 1375 | diamond1 1376 | damien 1377 | iluvme 1378 | emanuel 1379 | teamomucho 1380 | norman 1381 | poohbear1 1382 | kingkong 1383 | 171717 1384 | goldfish 1385 | cindy 1386 | flower1 1387 | music 1388 | houston 1389 | spanky 1390 | wicked 1391 | belinda 1392 | iloveu1 1393 | ballet 1394 | rangers1 1395 | valentine 1396 | hotgirl 1397 | peanut1 1398 | boogie 1399 | cuties 1400 | teacher 1401 | volcom 1402 | yahoo 1403 | 142536 1404 | charlene 1405 | liberty 1406 | babyphat 1407 | shaggy 1408 | caramelo 1409 | selena 1410 | mookie 1411 | phoebe 1412 | incubus 1413 | baby123 1414 | special 1415 | wendy 1416 | coolgirl 1417 | lovelife 1418 | billy 1419 | 0000000000 1420 | connie 1421 | myname 1422 | loulou 1423 | chelsea1 1424 | maymay 1425 | handsome 1426 | alexa 1427 | a12345 1428 | buster1 1429 | lucero 1430 | richie 1431 | steelers 1432 | crazy1 1433 | marlboro 1434 | kristin 1435 | love1 1436 | chicken1 1437 | 1435254 1438 | rayray 1439 | angelita 1440 | sniper 1441 | paula 1442 | peter 1443 | arthur 1444 | tommy 1445 | walker 1446 | guadalupe 1447 | 124578 1448 | kissmyass 1449 | goober 1450 | linkin 1451 | candy1 1452 | esmeralda 1453 | peace 1454 | dayana 1455 | marisa 1456 | iloveme1 1457 | converse 1458 | random 1459 | ramirez 1460 | champion 1461 | sexybabe 1462 | angel123 1463 | nathaniel 1464 | spongebob1 1465 | harry 1466 | 2cute4u 1467 | atlanta 1468 | sassy1 1469 | falloutboy 1470 | molly1 1471 | jesse 1472 | dianita 1473 | 1111111111 1474 | gothic 1475 | sassy 1476 | 161616 1477 | eunice 1478 | nissan 1479 | sexy12 1480 | 12345a 1481 | 0000000 1482 | family1 1483 | hotchick 1484 | 080808 1485 | giovanni 1486 | sagitario 1487 | preston 1488 | kelvin 1489 | juventus 1490 | danica 1491 | shutup 1492 | cutegirl 1493 | lacoste 1494 | campanita 1495 | winner 1496 | password123 1497 | snuggles 1498 | fatboy 1499 | realmadrid 1500 | 951753 1501 | iverson3 1502 | stefan 1503 | leelee 1504 | ronaldinho 1505 | erica 1506 | austin1 1507 | skippy 1508 | bernard 1509 | newcastle 1510 | esteban 1511 | maribel 1512 | moises 1513 | thomas1 1514 | spirit 1515 | tiger1 1516 | missy 1517 | mahalkoh 1518 | blueeyes 1519 | fresita 1520 | hotpink 1521 | pakistan 1522 | tequieromucho 1523 | loser1 1524 | taytay 1525 | honey1 1526 | playboy1 1527 | soulmate 1528 | celticfc 1529 | ecuador 1530 | tagged 1531 | michel 1532 | carrie 1533 | helpme 1534 | judith 1535 | michele 1536 | kennedy 1537 | brandi 1538 | nancy 1539 | 111222 1540 | stanley 1541 | arlene 1542 | lunita 1543 | pierre 1544 | landon 1545 | rachelle 1546 | maurice 1547 | darius 1548 | newlife 1549 | Password 1550 | nicola 1551 | southside 1552 | hermione 1553 | 282828 1554 | unique 1555 | mackenzie 1556 | cooldude 1557 | alexia 1558 | 99999 1559 | ernesto 1560 | domino 1561 | cosita 1562 | france 1563 | hummer 1564 | mamapapa 1565 | coolcat 1566 | morales 1567 | edgar 1568 | nigger 1569 | katelyn 1570 | rodney 1571 | dimples 1572 | bunny 1573 | chocolate1 1574 | gonzalez 1575 | children 1576 | father 1577 | starlight 1578 | dillon 1579 | rivera 1580 | eclipse 1581 | fender 1582 | moonlight 1583 | iluvu 1584 | viviana 1585 | something 1586 | esperanza 1587 | marlene 1588 | cassidy 1589 | abcde 1590 | softball1 1591 | 234567 1592 | sunset 1593 | love22 1594 | godbless 1595 | garrett 1596 | kathryn 1597 | 77777 1598 | pitbull 1599 | baby12 1600 | romance 1601 | chopper 1602 | fucku 1603 | ingrid 1604 | blue123 1605 | clover 1606 | groovy 1607 | warrior 1608 | smudge 1609 | 134679 1610 | allstar 1611 | annie 1612 | goldie 1613 | swordfish 1614 | snowflake 1615 | ricky 1616 | yugioh 1617 | blabla 1618 | shasha 1619 | theone 1620 | redsox 1621 | dragon1 1622 | ballin 1623 | karate 1624 | ragnarok 1625 | doraemon 1626 | daisy1 1627 | freddie 1628 | julie 1629 | puppy 1630 | success 1631 | paramore 1632 | online 1633 | runescape 1634 | wizard 1635 | geraldine 1636 | jermaine 1637 | blue22 1638 | dimple 1639 | romania 1640 | bhaby 1641 | loveless 1642 | meghan 1643 | bitchy 1644 | thailand 1645 | alonso 1646 | tweetybird 1647 | mykids 1648 | bella1 1649 | jefferson 1650 | cherries 1651 | maggie1 1652 | seventeen 1653 | coconut 1654 | mariela 1655 | emotional 1656 | computer1 1657 | sponge 1658 | smallville 1659 | peluche 1660 | serena 1661 | poopie 1662 | cheryl 1663 | gladys 1664 | punkrock 1665 | 191919 1666 | mexico1 1667 | cameron1 1668 | amber1 1669 | 262626 1670 | green1 1671 | andreita 1672 | ximena 1673 | asdasd 1674 | boricua 1675 | basket 1676 | vanesa 1677 | janjan 1678 | 070707 1679 | marjorie 1680 | kendra 1681 | kaykay 1682 | joyce 1683 | destiny1 1684 | blueberry 1685 | john316 1686 | kevin1 1687 | acuario 1688 | butthead 1689 | mollie 1690 | harmony 1691 | jupiter 1692 | whatever1 1693 | athena 1694 | kirsty 1695 | brother 1696 | granny 1697 | aileen 1698 | negrita 1699 | abraham 1700 | angelbaby 1701 | booboo1 1702 | doggie 1703 | michaela 1704 | dipset 1705 | blacky 1706 | bonbon 1707 | alexis1 1708 | danilo 1709 | munchkin 1710 | patrick1 1711 | samantha1 1712 | mikey 1713 | cheeky 1714 | babyboy1 1715 | mmmmmm 1716 | ilovemyself 1717 | wrestling 1718 | dragonfly 1719 | guillermo 1720 | chandler 1721 | nathan1 1722 | lasvegas 1723 | miracle 1724 | bintang 1725 | love69 1726 | harrison 1727 | casey 1728 | harley1 1729 | alfonso 1730 | moreno 1731 | qwe123 1732 | jillian 1733 | eternity 1734 | stinky 1735 | yourock 1736 | maureen 1737 | bullet 1738 | asdfjkl; 1739 | jazmine 1740 | manunited 1741 | carlo 1742 | duncan 1743 | heyhey 1744 | seven7 1745 | christy 1746 | rock you 1747 | iloveboys 1748 | drowssap 1749 | 159951 1750 | bailey1 1751 | karlita 1752 | bogdan 1753 | lilwayne 1754 | supergirl 1755 | rachael 1756 | catalin 1757 | melisa 1758 | bugsbunny 1759 | hollie 1760 | kenny 1761 | wallace 1762 | jaguar 1763 | emilio 1764 | makayla 1765 | starfish 1766 | welcome1 1767 | holly 1768 | jennifer1 1769 | alianza 1770 | mathew 1771 | alfred 1772 | pepper1 1773 | juanita 1774 | knight 1775 | violeta 1776 | puppylove 1777 | baxter 1778 | gymnastics 1779 | ilovechris 1780 | 8675309 1781 | caramel 1782 | virgin 1783 | goodgirl 1784 | milkshake 1785 | mckenzie 1786 | redrose 1787 | 1password 1788 | holiday 1789 | fishing 1790 | steven1 1791 | santana 1792 | kenzie 1793 | badass 1794 | baseball1 1795 | logitech 1796 | manuela 1797 | monday 1798 | ingeras 1799 | katkat 1800 | ginger1 1801 | blackie 1802 | aubrey 1803 | felicia 1804 | estefania 1805 | estrela 1806 | popeye 1807 | love14 1808 | godislove 1809 | jajaja 1810 | keisha 1811 | america1 1812 | scrappy 1813 | freaky 1814 | friday 1815 | elena 1816 | lenlen 1817 | deanna 1818 | geminis 1819 | colleen 1820 | danny1 1821 | ariel 1822 | holden 1823 | hehehe 1824 | frank 1825 | sublime 1826 | scott 1827 | 2hot4u 1828 | coolio 1829 | danielle1 1830 | sarah1 1831 | florin 1832 | joseph1 1833 | killer1 1834 | alaska 1835 | gordon 1836 | teddy 1837 | lizard 1838 | argentina 1839 | callie 1840 | aaron1 1841 | legend 1842 | valentin 1843 | futbol 1844 | mayra 1845 | yankee 1846 | lifehack 1847 | chelle 1848 | sasha 1849 | vegeta 1850 | mermaid 1851 | luisa 1852 | roland 1853 | myangel 1854 | lampard 1855 | monika 1856 | rihanna 1857 | fiorella 1858 | melissa1 1859 | billie 1860 | manson 1861 | sugar 1862 | clifford 1863 | denisa 1864 | yesenia 1865 | sailormoon 1866 | love11 1867 | ludacris 1868 | junior1 1869 | jonjon 1870 | fucku2 1871 | ABC123 1872 | microsoft 1873 | joana 1874 | clayton 1875 | kathy 1876 | forever1 1877 | kirsten 1878 | corona 1879 | golfinho 1880 | change 1881 | dragoste 1882 | gonzales 1883 | falcon 1884 | maxine 1885 | josephine 1886 | dramaqueen 1887 | yvette 1888 | carol 1889 | stevie 1890 | richard1 1891 | vivian 1892 | passport 1893 | tracey 1894 | platinum 1895 | arianna 1896 | kisskiss 1897 | carito 1898 | bruno 1899 | henry 1900 | honduras 1901 | shalom 1902 | carina 1903 | sexylove 1904 | thegame 1905 | computadora 1906 | maximus 1907 | ronaldo7 1908 | morris 1909 | fergie 1910 | ilovematt 1911 | berenice 1912 | momdad 1913 | noodles 1914 | dalton 1915 | eastside 1916 | steph 1917 | 272727 1918 | divina 1919 | liverpoolfc 1920 | dwayne 1921 | redneck 1922 | orange1 1923 | lollol 1924 | ilovejosh 1925 | howard 1926 | rocket 1927 | lovesucks 1928 | password12 1929 | joejonas 1930 | rebeca 1931 | simona 1932 | asd123 1933 | mibebe 1934 | 88888 1935 | 1212312121 1936 | annette 1937 | love101 1938 | wolves 1939 | conejo 1940 | 963852 1941 | nacional 1942 | warriors 1943 | evanescence 1944 | hotmama 1945 | yousuck 1946 | loveu2 1947 | fabulous 1948 | kawasaki 1949 | aventura 1950 | cristi 1951 | tequila 1952 | bubba 1953 | phantom 1954 | marcelo 1955 | stewart 1956 | cristiano 1957 | spooky 1958 | jersey 1959 | heather1 1960 | smelly 1961 | dolphin1 1962 | hercules 1963 | cleopatra 1964 | brayan 1965 | pablo 1966 | 123 1967 | martina 1968 | saints 1969 | gabby 1970 | pirates 1971 | fernandez 1972 | denver 1973 | raiders1 1974 | brendan 1975 | luisito 1976 | freedom1 1977 | marines 1978 | mahalq 1979 | blanca 1980 | 555666 1981 | motherfucker 1982 | maryann 1983 | snowman 1984 | jennie 1985 | drummer 1986 | cheetah 1987 | love21 1988 | yanyan 1989 | kenshin 1990 | alvin 1991 | leonard 1992 | cracker 1993 | turkey 1994 | cuttie 1995 | tricia 1996 | sexy69 1997 | freckles 1998 | medina 1999 | romeo 2000 | missy1 2001 | cherry1 2002 | kendall 2003 | fuckit 2004 | prettyme 2005 | randy 2006 | bubba1 2007 | roberta 2008 | agosto 2009 | everton 2010 | candice 2011 | juliet 2012 | suzanne 2013 | carlos1 2014 | single1 2015 | 456456 2016 | steve 2017 | 090909 2018 | kieran 2019 | madeline 2020 | jesus7 2021 | nightmare 2022 | hamilton 2023 | antonia 2024 | laptop 2025 | mother1 2026 | surfer 2027 | german 2028 | poop 2029 | messenger 2030 | kimkim 2031 | iluvyou 2032 | filipa 2033 | honeybee 2034 | castro 2035 | private 2036 | jonas 2037 | love23 2038 | doodle 2039 | grandad 2040 | celine 2041 | mustang1 2042 | edison 2043 | isabelle 2044 | romero 2045 | mandy 2046 | jetaime 2047 | julia 2048 | Princess 2049 | cintaku 2050 | pancho 2051 | jacqueline 2052 | amore 2053 | logan 2054 | promise 2055 | anything 2056 | charmaine 2057 | colorado 2058 | newyork1 2059 | alvaro 2060 | student 2061 | qazwsxedc 2062 | budlight 2063 | rocknroll 2064 | mystuff 2065 | jeremy1 2066 | trinidad 2067 | leticia 2068 | yomama 2069 | melinda 2070 | smokey1 2071 | shiela 2072 | 020202 2073 | paris 2074 | ruben 2075 | jacob1 2076 | apple1 2077 | picture 2078 | wordpass 2079 | dulce 2080 | stormy 2081 | sweetgirl 2082 | loveyou2 2083 | sayangku 2084 | ashanti 2085 | angel12 2086 | harris 2087 | confused 2088 | blessed1 2089 | peaches1 2090 | tootsie 2091 | franco 2092 | andreia 2093 | ericka 2094 | taekwondo 2095 | ismael 2096 | insane 2097 | alexandre 2098 | chingy 2099 | cowgirl 2100 | juanito 2101 | nokia 2102 | cheese1 2103 | pink 2104 | sixteen 2105 | iluvu2 2106 | precious1 2107 | angel2 2108 | arcangel 2109 | ganteng 2110 | scruffy 2111 | biatch 2112 | delete 2113 | punkin 2114 | 1bitch 2115 | jerry 2116 | valencia 2117 | pussy 2118 | loveable 2119 | swimmer 2120 | florence 2121 | rainbow1 2122 | shawn 2123 | system 2124 | poison 2125 | shauna 2126 | galaxy 2127 | pavilion 2128 | a1b2c3 2129 | forget 2130 | gizmo 2131 | gunner 2132 | minime 2133 | malibu 2134 | hitman 2135 | rommel 2136 | marion 2137 | renato 2138 | applepie 2139 | divine 2140 | thalia 2141 | virgo 2142 | emily1 2143 | mnbvcxz 2144 | jesusfreak 2145 | penelope 2146 | chucky 2147 | gizmo1 2148 | jackson1 2149 | bobmarley 2150 | dorothy 2151 | queen 2152 | psycho 2153 | redhead 2154 | madrid 2155 | felicidad 2156 | lynlyn 2157 | babykoh 2158 | kayla1 2159 | sisters 2160 | sidney 2161 | sexybaby 2162 | 454545 2163 | rolando 2164 | tasha 2165 | alabama 2166 | lizbeth 2167 | nemesis 2168 | doctor 2169 | ilovemike 2170 | triskelion 2171 | loveyou1 2172 | dietcoke 2173 | maemae 2174 | hazel 2175 | 321654 2176 | cellphone 2177 | aldrin 2178 | country 2179 | hihihi 2180 | lovers1 2181 | rey619 2182 | aries 2183 | slimshady 2184 | liverpool1 2185 | germany 2186 | stitch 2187 | lauren1 2188 | philips 2189 | bryant 2190 | pimpin1 2191 | ewanko 2192 | skyler 2193 | dondon 2194 | beatrice 2195 | stuart 2196 | bigred 2197 | maimai 2198 | american 2199 | cristal 2200 | hanson 2201 | maricel 2202 | soloyo 2203 | fatcat 2204 | rowena 2205 | gibson 2206 | skipper 2207 | sherry 2208 | getmoney 2209 | vodafone 2210 | paige 2211 | jonathan1 2212 | nataly 2213 | babes 2214 | chloe1 2215 | stardust 2216 | password3 2217 | oscar1 2218 | jonasbrothers 2219 | greenday1 2220 | eminem1 2221 | monalisa 2222 | motocross 2223 | nickjonas 2224 | moocow 2225 | amazing 2226 | eddie 2227 | magandaako 2228 | church 2229 | cruzazul 2230 | super 2231 | lucas 2232 | robinson 2233 | laurita 2234 | abcdefgh 2235 | kagome 2236 | qwerty123 2237 | bernie 2238 | morgan1 2239 | weed420 2240 | beverly 2241 | kakashi 2242 | paolita 2243 | jamie1 2244 | filipe 2245 | xander 2246 | grapes 2247 | irock 2248 | bonjovi 2249 | theused 2250 | mypassword 2251 | princes 2252 | devils 2253 | morado 2254 | tattoo 2255 | cinta 2256 | edwin 2257 | milton 2258 | shanice 2259 | shannon1 2260 | conner 2261 | avril 2262 | marijuana 2263 | cinnamon 2264 | 121314 2265 | flamingo 2266 | scooby1 2267 | 13579 2268 | escorpion 2269 | benson 2270 | myfamily 2271 | mobile 2272 | regine 2273 | famous 2274 | love15 2275 | sprite 2276 | broncos 2277 | theman 2278 | telefon 2279 | jenna 2280 | rakista 2281 | eleven 2282 | misty 2283 | DANIEL 2284 | password! 2285 | nevaeh 2286 | marimar 2287 | camaro 2288 | allen 2289 | potpot 2290 | ilove 2291 | johana 2292 | tonton 2293 | falcons 2294 | noodle 2295 | marine 2296 | tomtom 2297 | trandafir 2298 | 420420 2299 | wonderful 2300 | jenifer 2301 | angel13 2302 | lifesucks 2303 | madden 2304 | bobby1 2305 | dance1 2306 | snoopy1 2307 | bowwow1 2308 | chivas1 2309 | suzuki 2310 | payton 2311 | wolverine 2312 | georgina 2313 | tinker1 2314 | fuckoff1 2315 | respect 2316 | zoey101 2317 | pencil 2318 | iloveme2 2319 | raven 2320 | marcel 2321 | katie1 2322 | aishiteru 2323 | jaime 2324 | makaveli 2325 | personal 2326 | cowboys1 2327 | michigan 2328 | bamboo 2329 | lestat 2330 | 007007 2331 | black1 2332 | fofinha 2333 | corvette 2334 | abercrombie 2335 | emerson 2336 | newport 2337 | cathy 2338 | enigma 2339 | love143 2340 | pink12 2341 | billybob 2342 | astig 2343 | georgiana 2344 | alondra 2345 | lionking 2346 | candyfloss 2347 | brittany1 2348 | pinky1 2349 | winniethepooh 2350 | 050505 2351 | poncho 2352 | g-unit 2353 | 303030 2354 | alyssa1 2355 | window 2356 | donnie 2357 | emilia 2358 | deborah 2359 | asdfasdf 2360 | kittie 2361 | iforgot 2362 | cedric 2363 | brazil 2364 | amalia 2365 | nathalie 2366 | iloveryan 2367 | langga 2368 | 963852741 2369 | bigdog 2370 | beatles 2371 | manman 2372 | mypics 2373 | hammer 2374 | devil 2375 | angeleyes 2376 | antony 2377 | sheryl 2378 | soccer12 2379 | lillian 2380 | spoiled 2381 | monkey2 2382 | 292929 2383 | zzzzzz 2384 | alina 2385 | princess2 2386 | meandyou 2387 | hotboy 2388 | renee 2389 | sunday 2390 | nelly 2391 | samsam 2392 | kimmie 2393 | shawty 2394 | behappy 2395 | krissy 2396 | magic 2397 | simpson 2398 | marianne 2399 | powers 2400 | yankees1 2401 | dingdong 2402 | boobies 2403 | chelsey 2404 | emogirl 2405 | mikaela 2406 | denisse 2407 | ssssss 2408 | tiffany1 2409 | music1 2410 | dickhead 2411 | scooter1 2412 | donna 2413 | sonia 2414 | chantelle 2415 | bratz 2416 | wedding 2417 | capricornio 2418 | elamor 2419 | puertorico 2420 | wisdom 2421 | bonjour 2422 | magdalena 2423 | irene 2424 | skateboard 2425 | octubre 2426 | noviembre 2427 | 1123581321 2428 | carebears 2429 | arizona 2430 | ilovemom 2431 | soccer10 2432 | desire 2433 | kkkkkk 2434 | nikki1 2435 | brasil 2436 | scarlet 2437 | graham 2438 | pillow 2439 | naynay 2440 | gabriella 2441 | kenken 2442 | pandora 2443 | lennon 2444 | jesse1 2445 | brianna1 2446 | lacrosse 2447 | bombon 2448 | frogger 2449 | maritza 2450 | skyblue 2451 | southpark 2452 | ilovejoe 2453 | anjing 2454 | jamjam 2455 | savage 2456 | sexy13 2457 | chikita 2458 | asawako 2459 | mitch 2460 | duckie 2461 | armani 2462 | sexyboy 2463 | mariajose 2464 | victory 2465 | azerty 2466 | xiomara 2467 | batman1 2468 | ivonne 2469 | girlfriend 2470 | believe 2471 | indian 2472 | philly 2473 | hacker 2474 | baby 2475 | subaru 2476 | lovable 2477 | hannahmontana 2478 | lopez 2479 | jjjjjj 2480 | rodolfo 2481 | ilovepink 2482 | english 2483 | saturn 2484 | sparkles 2485 | sucker 2486 | 445566 2487 | crystal1 2488 | shamrock 2489 | 789789 2490 | mylove1 2491 | perrito 2492 | smackdown 2493 | timmy 2494 | charity 2495 | conejita 2496 | rockers 2497 | marcia 2498 | josue 2499 | BABYGIRL 2500 | bluesky 2501 | spring 2502 | pepito 2503 | biscuit 2504 | 135790 2505 | bobbie 2506 | sherwin 2507 | lol123 2508 | kermit 2509 | suckit 2510 | nadia 2511 | apollo 2512 | denden 2513 | astrid 2514 | qwertyui 2515 | racing 2516 | jewels 2517 | queenie 2518 | jenny1 2519 | naruto1 2520 | muhammad 2521 | killua 2522 | zidane 2523 | toshiba 2524 | burbuja 2525 | leandro 2526 | eileen 2527 | campbell 2528 | 12344321 2529 | jester 2530 | kristy 2531 | donovan 2532 | dalejr 2533 | peachy 2534 | kellie 2535 | rooster 2536 | scarlett 2537 | blingbling 2538 | dakota1 2539 | playstation 2540 | loquita 2541 | lilbit 2542 | thankyou 2543 | missyou 2544 | george1 2545 | secret1 2546 | johnpaul 2547 | coldplay 2548 | surfing 2549 | avatar 2550 | sexsex 2551 | flaquita 2552 | maddog 2553 | mittens 2554 | lilman 2555 | cotton 2556 | 778899 2557 | chelseafc 2558 | dylan1 2559 | 565656 2560 | honeys 2561 | babygirl2 2562 | noelle 2563 | anastasia 2564 | killme 2565 | retard 2566 | barbie1 2567 | poppy 2568 | priscilla 2569 | jimenez 2570 | joejoe 2571 | longhorns 2572 | danielita 2573 | soccer13 2574 | jeanette 2575 | sexygurl 2576 | cloud9 2577 | 898989 2578 | boyfriend 2579 | brayden 2580 | kickass 2581 | rammstein 2582 | porter 2583 | tarzan 2584 | carmelo 2585 | panasonic 2586 | sophie1 2587 | celtic1888 2588 | twister 2589 | libertad 2590 | leonel 2591 | gators 2592 | nofear 2593 | laguna 2594 | estrellas 2595 | krista 2596 | terrell 2597 | losers 2598 | rosemary 2599 | borboleta 2600 | delacruz 2601 | knights 2602 | malcolm 2603 | aol123 2604 | gwapa 2605 | bluemoon 2606 | jimena 2607 | little1 2608 | ladybug1 2609 | johnny1 2610 | corina 2611 | diciembre 2612 | hallo 2613 | jared 2614 | gordita 2615 | johnjohn 2616 | player1 2617 | johnnydepp 2618 | titans 2619 | death 2620 | louie 2621 | lemons 2622 | power 2623 | mercury 2624 | princess12 2625 | mariam 2626 | pinklady 2627 | rosie 2628 | maria1 2629 | hassan 2630 | senior 2631 | jimbob 2632 | gangsta1 2633 | redred 2634 | gillian 2635 | lamejor 2636 | tabitha 2637 | althea 2638 | pokemon1 2639 | 1478963 2640 | amizade 2641 | mohamed 2642 | kingdom 2643 | megan1 2644 | belle 2645 | sexyback 2646 | sugar1 2647 | pookie1 2648 | dawson 2649 | shibby 2650 | soccer7 2651 | romina 2652 | carson 2653 | 030303 2654 | skeeter 2655 | classof08 2656 | alice 2657 | spunky 2658 | trigger 2659 | pizza 2660 | latoya 2661 | corey 2662 | kimberley 2663 | nugget 2664 | nibbles 2665 | canela 2666 | netball 2667 | shelley 2668 | blood 2669 | sexy101 2670 | sweetie1 2671 | allan 2672 | 060606 2673 | keith 2674 | jimmy1 2675 | darlene 2676 | francesca 2677 | paulo 2678 | asdf1234 2679 | 1234qwer 2680 | soccer11 2681 | jeffhardy 2682 | cristy 2683 | bernardo 2684 | peanuts 2685 | love16 2686 | teodio 2687 | qwaszx 2688 | alexandria 2689 | becky 2690 | lilly 2691 | bautista 2692 | vicky 2693 | jakarta 2694 | 12121212 2695 | africa 2696 | pepsi1 2697 | jeffery 2698 | skylar 2699 | manolo 2700 | cartoon 2701 | nellie 2702 | qwertyu 2703 | renata 2704 | packers 2705 | password7 2706 | daniella 2707 | daphne 2708 | smile1 2709 | cosmin 2710 | 987456 2711 | celular 2712 | samurai 2713 | guatemala 2714 | manzana 2715 | herman 2716 | rhiannon 2717 | declan 2718 | mamacita 2719 | patty 2720 | flakita 2721 | pirate 2722 | star123 2723 | pinkpink 2724 | stupid1 2725 | brooklyn1 2726 | bastard 2727 | margarida 2728 | angeline 2729 | hollister1 2730 | dandan 2731 | 666999 2732 | simon 2733 | russel 2734 | toffee 2735 | clarinet 2736 | mallory 2737 | halloween 2738 | pippin 2739 | jazzy 2740 | qweasd 2741 | classof09 2742 | bloodz 2743 | attitude 2744 | sadie 2745 | pornstar 2746 | runner 2747 | battle 2748 | megaman 2749 | libra 2750 | forest 2751 | kiara 2752 | senior06 2753 | joker 2754 | lizeth 2755 | lottie 2756 | brutus 2757 | keyboard 2758 | acmilan 2759 | christian1 2760 | 9999999 2761 | ilovesam 2762 | peyton 2763 | digital 2764 | dragonball 2765 | bridget 2766 | skate 2767 | 5555555 2768 | charly 2769 | squirt 2770 | brian1 2771 | traviesa 2772 | ilovejohn 2773 | alvarez 2774 | daredevil 2775 | lilian 2776 | misty1 2777 | married 2778 | ethan 2779 | deftones 2780 | outlaw 2781 | soldier 2782 | desmond 2783 | ilovenick 2784 | tootie 2785 | 44444 2786 | happy123 2787 | qqqqqq 2788 | betty 2789 | florida1 2790 | pandas 2791 | lilfizz 2792 | logan1 2793 | patrice 2794 | ilovehim1 2795 | shayne 2796 | angels1 2797 | emopunk 2798 | carmela 2799 | eliana 2800 | tommy1 2801 | yandel 2802 | heartbreaker 2803 | love08 2804 | pasword 2805 | rockstar1 2806 | gymnast 2807 | valentino 2808 | sunny 2809 | mamasita 2810 | catcat 2811 | sadie1 2812 | girlie 2813 | avrillavigne 2814 | loredana 2815 | jehova 2816 | onlyme 2817 | larissa 2818 | joaquin 2819 | faithful 2820 | evolution 2821 | lucia 2822 | carmel 2823 | nigga 2824 | mivida 2825 | carolyn 2826 | monkey12 2827 | detroit 2828 | travis1 2829 | tigers1 2830 | diane 2831 | collin 2832 | 159159 2833 | female 2834 | faith1 2835 | chemical 2836 | mattie 2837 | manila 2838 | patricio 2839 | morrison 2840 | jeanne 2841 | stefania 2842 | sandy1 2843 | elliot 2844 | my3kids 2845 | wassup 2846 | redskins 2847 | firefly 2848 | warcraft 2849 | natalie1 2850 | water 2851 | honda 2852 | 456852 2853 | lanena 2854 | nicoleta 2855 | vikings 2856 | kisses1 2857 | papamama 2858 | cheesecake 2859 | prissy 2860 | infinity 2861 | salazar 2862 | frosty 2863 | ellie 2864 | captain 2865 | glamorous 2866 | septiembre 2867 | bernadette 2868 | mumdad 2869 | pinkpanther 2870 | lavigne 2871 | puppy1 2872 | teddy1 2873 | girlpower 2874 | mexican 2875 | spitfire 2876 | georgie 2877 | sexy1 2878 | andrea1 2879 | thirteen 2880 | fuckers 2881 | porsche 2882 | sexy 2883 | eastenders 2884 | hellomoto 2885 | love07 2886 | zombie 2887 | razvan 2888 | cat123 2889 | candace 2890 | kimmy 2891 | dumbass 2892 | jericho 2893 | indonesia 2894 | nayeli 2895 | mygirl 2896 | angelic 2897 | pepsi 2898 | naomi 2899 | jamesbond 2900 | 33333 2901 | backspace 2902 | bebito 2903 | charmed1 2904 | nicholas1 2905 | lemonade 2906 | bhabes 2907 | kawaii 2908 | derek 2909 | murray 2910 | randall 2911 | carrot 2912 | meagan 2913 | potato 2914 | rainbows 2915 | hilaryduff 2916 | isaac 2917 | unknown 2918 | shania 2919 | charley 2920 | sylvester 2921 | 55555555 2922 | oranges 2923 | forgot 2924 | victoria1 2925 | hinata 2926 | elvis 2927 | JESSICA 2928 | matias 2929 | siobhan 2930 | thompson 2931 | melina 2932 | fucking 2933 | dougie 2934 | bunny1 2935 | porkchop 2936 | lexmark 2937 | digimon 2938 | spike 2939 | future 2940 | westham 2941 | yahooo 2942 | brooke1 2943 | clarence 2944 | ilovealex 2945 | kristian 2946 | extreme 2947 | telephone 2948 | shortie 2949 | mushroom 2950 | alexander1 2951 | texas1 2952 | tigger2 2953 | iloveben 2954 | rebecca1 2955 | lancer 2956 | chrisb 2957 | mamamia 2958 | cherokee 2959 | manchesterunited 2960 | penguins 2961 | louise1 2962 | habibi 2963 | chipper 2964 | beanie 2965 | wildcat 2966 | pollo 2967 | j123456 2968 | CARLOS 2969 | miguelito 2970 | mikey1 2971 | soccer2 2972 | 258456 2973 | medicina 2974 | flames 2975 | airforce 2976 | malachi 2977 | bleach 2978 | febrero 2979 | solomon 2980 | anime 2981 | blondie1 2982 | alex123 2983 | love01 2984 | margie 2985 | renee1 2986 | irish 2987 | braves 2988 | enamorada 2989 | lucifer 2990 | dallas1 2991 | sterling 2992 | 1lover 2993 | explorer 2994 | gundam 2995 | jackie1 2996 | security 2997 | together 2998 | giselle 2999 | bumblebee 3000 | NICOLE 3001 | blazer 3002 | perros 3003 | watson 3004 | iamcool 3005 | tamahome 3006 | goodies 3007 | cutiepie1 3008 | master1 3009 | 7894561230 3010 | holland 3011 | lassie 3012 | jessie1 3013 | fucklove 3014 | tobias 3015 | babyangel 3016 | rocio 3017 | malaysia 3018 | nenalinda 3019 | poochie 3020 | amarillo 3021 | china 3022 | cartman 3023 | benjie 3024 | jaypee 3025 | domingo 3026 | strong 3027 | chickens 3028 | whiskers 3029 | yadira 3030 | digger 3031 | soccer9 3032 | paolo 3033 | terry 3034 | 14789632 3035 | iloveyou3 3036 | lewis 3037 | skater1 3038 | daddyyankee 3039 | secrets 3040 | popstar 3041 | blessing 3042 | adelina 3043 | monkey123 3044 | matematica 3045 | playmate 3046 | oklahoma 3047 | littleman 3048 | poopy 3049 | sexy14 3050 | vanessa1 3051 | cassie1 3052 | monster1 3053 | ANGEL 3054 | nestor 3055 | osiris 3056 | salome 3057 | mustangs 3058 | gerardway 3059 | felix 3060 | girlsrule 3061 | annabelle 3062 | magnolia 3063 | darrell 3064 | lincoln 3065 | stonecold 3066 | reading 3067 | i love you 3068 | wanker 3069 | 123456j 3070 | bombom 3071 | goodbye 3072 | kaitlin 3073 | susan 3074 | mybaby1 3075 | killers 3076 | renren 3077 | babybaby 3078 | freak 3079 | mommy2 3080 | clarissa 3081 | goodluck 3082 | julieta 3083 | 123456789a 3084 | perro 3085 | josiah 3086 | vicente 3087 | raluca 3088 | pudding 3089 | casanova 3090 | gracia 3091 | fucker1 3092 | napoleon 3093 | angelz 3094 | lance 3095 | osito 3096 | nicky 3097 | mountain 3098 | floricienta 3099 | paopao 3100 | blue12 3101 | colton 3102 | sooners 3103 | blackrose 3104 | redbull 3105 | simba 3106 | janeth 3107 | mystery 3108 | mommie 3109 | iamthebest 3110 | pumas 3111 | penny 3112 | theking 3113 | sabina 3114 | richmond 3115 | sally 3116 | kikay 3117 | roseann 3118 | therese 3119 | siemens 3120 | bluebird 3121 | darryl 3122 | maricar 3123 | caitlyn 3124 | flipper 3125 | gabriel1 3126 | froggie 3127 | 22222222 3128 | roses 3129 | teamobb 3130 | lebron 3131 | flowerpower 3132 | sandiego 3133 | reynaldo 3134 | forever21 3135 | junebug 3136 | mumanddad 3137 | latino 3138 | seven 3139 | gemma 3140 | classof07 3141 | bunnies 3142 | tacobell 3143 | 753159 3144 | klapaucius 3145 | glenda 3146 | bobesponja 3147 | jesus777 3148 | matilda 3149 | frankie1 3150 | samara 3151 | chester1 3152 | dayday 3153 | sasha1 3154 | cortez 3155 | 567890 3156 | 99999999 3157 | crazygirl 3158 | washington 3159 | robin 3160 | 1princess 3161 | pangga 3162 | clinton 3163 | angel7 3164 | angel01 3165 | abc1234 3166 | rachel1 3167 | pinkgirl 3168 | central 3169 | charles1 3170 | arsenal1 3171 | memories 3172 | dream 3173 | amylee 3174 | poodle 3175 | sharks 3176 | dangerous 3177 | lamont 3178 | love06 3179 | stoner 3180 | kelly1 3181 | summer06 3182 | chris123 3183 | butterflies 3184 | dollar 3185 | hillary 3186 | araceli 3187 | damaris 3188 | hotrod 3189 | love1234 3190 | kaiser 3191 | babybear 3192 | m123456 3193 | metal 3194 | bentley 3195 | rootbeer 3196 | lesley 3197 | redrum 3198 | 1loveyou 3199 | godzilla 3200 | love10 3201 | fireman 3202 | gordito 3203 | billy1 3204 | carpediem 3205 | pazaway 3206 | changeme 3207 | 123457 3208 | burton 3209 | banana1 3210 | powerpuff 3211 | midnight1 3212 | chaparra 3213 | chuckie 3214 | janet 3215 | dalejr8 3216 | catwoman 3217 | baby13 3218 | adrienne 3219 | webster 3220 | hanna 3221 | violin 3222 | horses1 3223 | guerrero 3224 | pa55word 3225 | shiloh 3226 | whiskey 3227 | tottenham 3228 | q1w2e3 3229 | ASHLEY 3230 | laloca 3231 | mychemicalromance 3232 | ANTHONY 3233 | werty 3234 | 1122334455 3235 | aberdeen 3236 | youandme 3237 | molina 3238 | adriano 3239 | koolaid 3240 | jojojo 3241 | hooters 3242 | fanny 3243 | 223344 3244 | rusty1 3245 | milena 3246 | sheldon 3247 | sleepy 3248 | 1234abcd 3249 | locura 3250 | dolores 3251 | yahoo1 3252 | whatsup 3253 | LOVELY 3254 | heaven1 3255 | jessy 3256 | redhot 3257 | fallen 3258 | becca 3259 | brebre 3260 | monse 3261 | monique1 3262 | babygirl12 3263 | marita 3264 | lebron23 3265 | casey1 3266 | julissa 3267 | bowling 3268 | calculator 3269 | browneyes 3270 | rebekah 3271 | lightning 3272 | rebels 3273 | boomboom 3274 | yourmom1 3275 | britt 3276 | qwerty12 3277 | starbucks 3278 | olimpia 3279 | alucard 3280 | mikayla 3281 | humberto 3282 | sylvia 3283 | aaliyah1 3284 | dragonballz 3285 | fatass 3286 | magodeoz 3287 | cookies1 3288 | maniez 3289 | 789123 3290 | 321321 3291 | shayshay 3292 | scottie 3293 | science 3294 | candycane 3295 | chobits 3296 | reyes 3297 | trunks 3298 | eduard 3299 | angelique 3300 | voodoo 3301 | xxxxx 3302 | 2sexy4u 3303 | johnathan 3304 | 123456m 3305 | asdfghjk 3306 | lesbian 3307 | snowwhite 3308 | slipknot1 3309 | hamish 3310 | krishna 3311 | ilovejames 3312 | button 3313 | 5555555555 3314 | rangersfc 3315 | ****** 3316 | wonder 3317 | limegreen 3318 | maddison 3319 | school1 3320 | usa123 3321 | patriots 3322 | eleanor 3323 | mariano 3324 | grecia 3325 | Jessica 3326 | terrance 3327 | raider 3328 | iloveadam 3329 | edward1 3330 | chino 3331 | meowmeow 3332 | chavez 3333 | indiana 3334 | aguilar 3335 | shelby1 3336 | 66666 3337 | 786786 3338 | chase 3339 | rogelio 3340 | blablabla 3341 | te amo 3342 | access 3343 | blackcat 3344 | carajo 3345 | warning 3346 | jhonatan 3347 | jeter2 3348 | camera 3349 | dookie 3350 | mirela 3351 | tyson 3352 | gareth 3353 | claudio 3354 | micaela 3355 | imissu 3356 | sam123 3357 | gameboy 3358 | singing 3359 | turner 3360 | charming 3361 | loveko 3362 | pacman 3363 | yazmin 3364 | holahola 3365 | justdoit 3366 | marcus1 3367 | vargas 3368 | love24 3369 | fuckyou! 3370 | 363636 3371 | kristel 3372 | password. 3373 | lovehate 3374 | verito 3375 | wanted 3376 | blake 3377 | popcorn1 3378 | boobie 3379 | deathnote 3380 | danielito 3381 | memory 3382 | penis 3383 | beaver 3384 | evelin 3385 | nevermind 3386 | 147896325 3387 | friendly 3388 | kissme1 3389 | gunners 3390 | umbrella 3391 | misterio 3392 | MICHAEL 3393 | zachary1 3394 | 323232 3395 | lololo 3396 | tantan 3397 | mafalda 3398 | rosemarie 3399 | pussy1 3400 | celtic1 3401 | haley 3402 | rolltide 3403 | oliver1 3404 | mahalcoh 3405 | cashmoney 3406 | bandit1 3407 | shayla 3408 | q1w2e3r4 3409 | clouds 3410 | rosado 3411 | engineer 3412 | smarties 3413 | larisa 3414 | cougar 3415 | sampson 3416 | larry 3417 | jazzy1 3418 | selene 3419 | dannyboy 3420 | 909090 3421 | starburst 3422 | holly1 3423 | riley 3424 | rakizta 3425 | quincy 3426 | prayer 3427 | livestrong 3428 | jayden1 3429 | mildred 3430 | weezer 3431 | ilovesex 3432 | funny 3433 | jesica 3434 | iminlove 3435 | antonio1 3436 | viridiana 3437 | 98765 3438 | sk8ter 3439 | denise1 3440 | firebird 3441 | haters 3442 | hellboy 3443 | password5 3444 | seanpaul 3445 | rusty 3446 | casper1 3447 | laura1 3448 | juancho 3449 | agustin 3450 | ulises 3451 | coolness 3452 | sinead 3453 | someone 3454 | bob123 3455 | juggalo 3456 | jaycee 3457 | gatinha 3458 | jomblo 3459 | alex 3460 | fisher 3461 | buddha 3462 | versace 3463 | monroe 3464 | 040404 3465 | josefina 3466 | foster 3467 | analyn 3468 | courtney1 3469 | compaq1 3470 | 12qwaszx 3471 | elliott 3472 | orlando1 3473 | flowers1 3474 | hogwarts 3475 | business 3476 | soccer3 3477 | 56789 3478 | billiejoe 3479 | vagina 3480 | 123456789123456 3481 | greeneyes 3482 | iloveyou. 3483 | monkey7 3484 | sexychick 3485 | wayne 3486 | pucca 3487 | griffin 3488 | queens 3489 | treasure 3490 | maroon5 3491 | kingston 3492 | kenny1 3493 | energy 3494 | cinthia 3495 | emiliano 3496 | survivor 3497 | minnie1 3498 | elisha 3499 | stargate 3500 | aussie 3501 | placebo 3502 | lipstick 3503 | 12369874 3504 | iloveyou7 3505 | helen 3506 | watever 3507 | memphis 3508 | biggie 3509 | boycrazy 3510 | freeman 3511 | kipper 3512 | thesims 3513 | philippines 3514 | 147147 3515 | holla 3516 | ciara 3517 | gateway1 3518 | rocks 3519 | cougars 3520 | dddddd 3521 | samira 3522 | roger 3523 | kobe24 3524 | angel11 3525 | soccer4 3526 | baller1 3527 | badminton 3528 | reebok 3529 | lynette 3530 | roscoe 3531 | bbbbbb 3532 | 212224 3533 | skinny 3534 | 369369 3535 | hottie101 3536 | rupert 3537 | fercho 3538 | gracie1 3539 | hurley 3540 | bookie 3541 | johncena1 3542 | ronron 3543 | herbert 3544 | pppppp 3545 | jingjing 3546 | 123698745 3547 | meredith 3548 | mylene 3549 | serendipity 3550 | teadoro 3551 | neopets 3552 | whocares 3553 | sexybeast 3554 | yummy 3555 | cupcake1 3556 | yenyen 3557 | blonde1 3558 | artist 3559 | rugrats 3560 | yumyum 3561 | fireball 3562 | bradpitt 3563 | dracula 3564 | amoremio 3565 | love18 3566 | stargirl 3567 | simba1 3568 | heartbroken 3569 | fluffy1 3570 | Michael 3571 | general 3572 | mister 3573 | panama 3574 | chiqui 3575 | rebelde1 3576 | girls 3577 | puppys 3578 | leilani 3579 | 313131 3580 | 787878 3581 | angeli 3582 | rukawa 3583 | poiuyt 3584 | ILOVEU 3585 | timberlake 3586 | felicity 3587 | honda1 3588 | ilovedan 3589 | inuyasha1 3590 | amsterdam 3591 | blades 3592 | tiesto 3593 | pleasure 3594 | khulet 3595 | martin1 3596 | eliza 3597 | redman 3598 | mouse 3599 | airforce1 3600 | jordyn 3601 | loveit 3602 | walmart 3603 | vladimir 3604 | shanna 3605 | secreto 3606 | kitten1 3607 | bacardi 3608 | pelota 3609 | hendrix 3610 | killa 3611 | andreas 3612 | poppop 3613 | collins 3614 | penny1 3615 | waters 3616 | freestyle 3617 | stefanie 3618 | soccer14 3619 | trenton 3620 | chucho 3621 | Password1 3622 | 1234560 3623 | maximo 3624 | doggy 3625 | sunrise 3626 | teamobebe 3627 | patience 3628 | my2kids 3629 | brodie 3630 | love09 3631 | shawna 3632 | marquis 3633 | estefany 3634 | alone 3635 | TEAMO 3636 | bishop 3637 | shawn1 3638 | lakers1 3639 | elijah1 3640 | brandy1 3641 | minerva 3642 | blackjack 3643 | babypink 3644 | pringles 3645 | tiago 3646 | kontol 3647 | asakapa 3648 | vinnie 3649 | paintball 3650 | yasmine 3651 | myhoney 3652 | gutierrez 3653 | playboy123 3654 | mendez 3655 | qazxsw 3656 | loveforever 3657 | fotos 3658 | jonalyn 3659 | aimee 3660 | snoopdog 3661 | adonis 3662 | wateva 3663 | mason 3664 | andrey 3665 | vampires 3666 | thanks 3667 | chantal 3668 | raven1 3669 | mozart 3670 | summer07 3671 | giants 3672 | badger 3673 | 789654 3674 | guitar1 3675 | pablito 3676 | candygirl 3677 | mario1 3678 | angelface 3679 | villanueva 3680 | lilangel 3681 | amote 3682 | dustin1 3683 | prince1 3684 | nolove 3685 | lovegod 3686 | beaner 3687 | webcam 3688 | snoopdogg 3689 | JORDAN 3690 | shitface 3691 | cheerleading 3692 | rebel 3693 | pumpkin1 3694 | looney 3695 | gonzalo 3696 | marihuana 3697 | muppet 3698 | superstar1 3699 | olivia1 3700 | snakes 3701 | puppydog 3702 | 19871987 3703 | harry1 3704 | solange 3705 | 7895123 3706 | smarty 3707 | dulcemaria 3708 | juicy 3709 | maryjoy 3710 | texas 3711 | party 3712 | raphael 3713 | underground 3714 | dodgers 3715 | striker 3716 | boricua1 3717 | 123456k 3718 | tulips 3719 | tomboy 3720 | spikey 3721 | trooper 3722 | romeo1 3723 | 1314520 3724 | aliyah 3725 | ilovedavid 3726 | 01234 3727 | dog123 3728 | snickers1 3729 | apples1 3730 | movies 3731 | 25252525 3732 | street 3733 | emelec 3734 | sunny1 3735 | jackass1 3736 | ethan1 3737 | 654123 3738 | highschool 3739 | buffy 3740 | cherish 3741 | sherman 3742 | goodboy 3743 | juanjose 3744 | princess13 3745 | mummy 3746 | zxcvb 3747 | stephen1 3748 | maryrose 3749 | jumong 3750 | candle 3751 | imcute 3752 | ironman 3753 | fresa 3754 | anabel 3755 | amethyst 3756 | navarro 3757 | woaini 3758 | sweetiepie 3759 | jonathon 3760 | trinity1 3761 | franky 3762 | guinness 3763 | muffin1 3764 | martini 3765 | spartan 3766 | leeann 3767 | gretchen 3768 | lillie 3769 | shane1 3770 | bribri 3771 | idunno 3772 | wazzup 3773 | andromeda 3774 | bloody 3775 | francine 3776 | caleb 3777 | sweetlove 3778 | corazones 3779 | sexy11 3780 | bobbob 3781 | bitch123 3782 | grandma1 3783 | ferreira 3784 | selina 3785 | honesty 3786 | nguyen 3787 | rovers 3788 | skittles1 3789 | sexy15 3790 | deadman 3791 | turtle1 3792 | giraffe 3793 | elvira 3794 | ernest 3795 | devin 3796 | panda1 3797 | jhonny 3798 | sirena 3799 | dieguito 3800 | oswaldo 3801 | pendejo 3802 | benji 3803 | 1a2b3c 3804 | pink11 3805 | sexbomb 3806 | morangos 3807 | lavinia 3808 | angelgirl 3809 | pebbles1 3810 | angela1 3811 | carlita 3812 | love4u 3813 | adrian1 3814 | 619619 3815 | qwer1234 3816 | 19891989 3817 | icecream1 3818 | garden 3819 | alegria 3820 | beauty1 3821 | lilone 3822 | craig 3823 | imcool 3824 | my2girls 3825 | jesus123 3826 | ANDREA 3827 | federico 3828 | kaycee 3829 | thunder1 3830 | scott1 3831 | spiderman1 3832 | kangaroo 3833 | markie 3834 | kathmandu 3835 | johndeere 3836 | gwapo 3837 | ilove? 3838 | venezuela 3839 | blueangel 3840 | pink13 3841 | star 3842 | herrera 3843 | myheart 3844 | gianna 3845 | myboys 3846 | mygirls 3847 | claudiu 3848 | education 3849 | aerosmith 3850 | imsexy 3851 | butter1 3852 | ironmaiden 3853 | account 3854 | pompom 3855 | fighter 3856 | twins2 3857 | 321654987 3858 | alinutza 3859 | rashad 3860 | because 3861 | buffalo 3862 | reggae 3863 | anakin 3864 | superpets 3865 | cheekymonkey 3866 | max123 3867 | bounce 3868 | maxmax 3869 | raerae 3870 | chippy 3871 | einstein 3872 | miguelangel 3873 | mike 3874 | temple 3875 | pereira 3876 | angel3 3877 | love17 3878 | printer 3879 | march 3880 | senior07 3881 | chinito 3882 | hongkong 3883 | benny 3884 | makeup 3885 | madmax 3886 | chantel 3887 | misael 3888 | immortal 3889 | queen1 3890 | singapore 3891 | dante 3892 | joaninha 3893 | hunnie 3894 | escape 3895 | summer08 3896 | karolina 3897 | angel5 3898 | tangina 3899 | jungle 3900 | topgun 3901 | floppy 3902 | badboys 3903 | victor1 3904 | tarheels 3905 | coolman 3906 | smirnoff 3907 | homero 3908 | eighteen 3909 | miley 3910 | gwapoko 3911 | bigdick 3912 | happydays 3913 | soccer5 3914 | isabela 3915 | boxing 3916 | presario 3917 | bradley1 3918 | diogo 3919 | darnell 3920 | bigbird 3921 | kentucky 3922 | chunky 3923 | stephy 3924 | aguila 3925 | lashay 3926 | pisica 3927 | kamote 3928 | angel22 3929 | tanya 3930 | timothy1 3931 | peaceout 3932 | llllll 3933 | gotohell 3934 | tammy 3935 | monopoly 3936 | tyson1 3937 | sweetangel 3938 | jasper1 3939 | jarule 3940 | antonella 3941 | silvana 3942 | eddie1 3943 | papichulo 3944 | fucku1 3945 | password11 3946 | ivette 3947 | woohoo 3948 | herbie 3949 | burger 3950 | sexual 3951 | sparrow 3952 | brokenheart 3953 | yuliana 3954 | narnia 3955 | francia 3956 | terrence 3957 | peluchin 3958 | milkyway 3959 | horse 3960 | imagine 3961 | lizzy 3962 | smiley1 3963 | adolfo 3964 | villevalo 3965 | polaris 3966 | monita 3967 | shasta 3968 | glenn 3969 | muerte 3970 | negrito 3971 | bond007 3972 | ichigo 3973 | ilovemymom 3974 | jaylen 3975 | goodcharlotte 3976 | laurence 3977 | babydoll1 3978 | french 3979 | chico 3980 | ionutz 3981 | davids 3982 | leigh 3983 | photo 3984 | honeykoh 3985 | vince 3986 | tripleh 3987 | homies 3988 | glamour 3989 | juanpablo 3990 | eagles1 3991 | nelly1 3992 | 19921992 3993 | soylamejor 3994 | silver1 3995 | stefany 3996 | iubita 3997 | ramones 3998 | cornelia 3999 | tribal 4000 | alesana 4001 | nigga1 4002 | tropical 4003 | whisper 4004 | smile4me 4005 | reagan 4006 | metoyou 4007 | april1 4008 | caballo 4009 | family5 4010 | stephanie1 4011 | slide 4012 | angel14 4013 | annmarie 4014 | yahoo.com 4015 | keegan 4016 | cabbage 4017 | revenge 4018 | startrek 4019 | ashlyn 4020 | julieann 4021 | cheska 4022 | jackson5 4023 | pancakes 4024 | gabby1 4025 | ilovemyfamily 4026 | calderon 4027 | auburn 4028 | finalfantasy 4029 | MICHELLE 4030 | predator 4031 | daughter 4032 | class09 4033 | breezy 4034 | dipset1 4035 | ilovejake 4036 | journey 4037 | classof06 4038 | trouble1 4039 | marquez 4040 | newton 4041 | karito 4042 | adrianna 4043 | mission 4044 | astonvilla 4045 | dodger 4046 | dodong 4047 | sexygirl1 4048 | james123 4049 | 1jesus 4050 | sporty 4051 | youtube 4052 | maradona 4053 | buddie 4054 | zxcvbnm,./ 4055 | ricky1 4056 | jesussaves 4057 | history 4058 | green123 4059 | sexyass 4060 | malagu 4061 | my2boys 4062 | pegasus 4063 | packard 4064 | popopo 4065 | ionela 4066 | princess7 4067 | consumer 4068 | riley1 4069 | tyrell 4070 | bratz1 4071 | geronimo 4072 | 1qazxsw2 4073 | boobear 4074 | maddie1 4075 | bumbum 4076 | viking 4077 | hudson 4078 | marianita 4079 | pioneer 4080 | allie 4081 | grumpy 4082 | musical 4083 | contraseña 4084 | kambal 4085 | silent 4086 | luciana 4087 | running 4088 | winxclub 4089 | hearty 4090 | benito 4091 | cinthya 4092 | liezel 4093 | badman 4094 | christie 4095 | smooth 4096 | bigman 4097 | cancel 4098 | dublin 4099 | cherie 4100 | peanutbutter 4101 | zamora 4102 | delicious 4103 | sixers 4104 | jesusc 4105 | candyman 4106 | leonor 4107 | mafer 4108 | itachi 4109 | a1b2c3d4 4110 | twinkie 4111 | clueless 4112 | patches1 4113 | chevelle 4114 | addison 4115 | ralph 4116 | sparky1 4117 | mydear 4118 | password13 4119 | topher 4120 | trumpet 4121 | savannah1 4122 | 69696969 4123 | fiesta 4124 | angel101 4125 | kristi 4126 | mason1 4127 | cheers 4128 | estela 4129 | bennett 4130 | backstreet 4131 | abcd123 4132 | enter 4133 | jessa 4134 | jensen 4135 | brown 4136 | 505050 4137 | fourteen 4138 | arianne 4139 | rosie1 4140 | rastaman 4141 | naenae 4142 | 369852 4143 | password4 4144 | pamelita 4145 | jologs 4146 | godfather 4147 | lilred 4148 | baby14 4149 | island 4150 | babycoh 4151 | sailor 4152 | ravens 4153 | savanna 4154 | indigo 4155 | blizzard 4156 | playboi 4157 | pingpong 4158 | pink22 4159 | ilovemark 4160 | mom123 4161 | fatman 4162 | friends4ever 4163 | xoxoxo 4164 | aguilas 4165 | livelife 4166 | luisteamo 4167 | praise 4168 | alissa 4169 | monkey3 4170 | tornado 4171 | timmy1 4172 | control 4173 | chase1 4174 | fuckface 4175 | spike1 4176 | beloved 4177 | timber 4178 | 19861986 4179 | nichole1 4180 | alanna 4181 | 123987 4182 | jhenny 4183 | harlem 4184 | gordon24 4185 | lovingyou 4186 | summertime 4187 | crazy4u 4188 | 543210 4189 | ritinha 4190 | chinchin 4191 | innocent 4192 | lucian 4193 | hitler 4194 | dudley 4195 | haylee 4196 | jaiden 4197 | delfines 4198 | monitor 4199 | bhabie 4200 | roxygirl 4201 | soccer15 4202 | walalang 4203 | devil666 4204 | mileycyrus 4205 | ariane 4206 | rosales 4207 | rhonda 4208 | dwight 4209 | neneng 4210 | salinas 4211 | lilmama1 4212 | emokid 4213 | midget 4214 | ilovetom 4215 | 23456 4216 | PASSWORD1 4217 | madness 4218 | pancake 4219 | salvation 4220 | oooooo 4221 | dominick 4222 | oliveira 4223 | broken1 4224 | doglover 4225 | jessika 4226 | irving 4227 | gandalf 4228 | froggy1 4229 | punker 4230 | booger1 4231 | soccer8 4232 | pokpok 4233 | demons 4234 | poptart 4235 | grace1 4236 | ilovejason 4237 | damion 4238 | fcporto 4239 | principe 4240 | ioana 4241 | manager 4242 | mayang 4243 | molly123 4244 | princess3 4245 | angel21 4246 | my3sons 4247 | cielo 4248 | zander 4249 | prinsesa 4250 | asdfghj 4251 | kassandra 4252 | magaly 4253 | chocolat 4254 | turtles 4255 | oldnavy 4256 | choclate 4257 | pearl 4258 | pothead 4259 | souljaboy 4260 | ramon 4261 | bigbrother 4262 | ranita 4263 | chihuahua 4264 | 111213 4265 | thatshot 4266 | reaper 4267 | elmejor 4268 | awesome1 4269 | QWERTY 4270 | dutchess 4271 | momanddad 4272 | ibanez 4273 | gunit 4274 | ninja 4275 | mango 4276 | lorenz 4277 | benedict 4278 | sebas 4279 | soccer6 4280 | jesuss 4281 | garnet 4282 | pampam 4283 | poppy1 4284 | luckydog 4285 | fabio 4286 | disturbed 4287 | babygirl13 4288 | bearbear 4289 | colombia1 4290 | 123789456 4291 | cristiana 4292 | bellota 4293 | candies 4294 | aaaaaaaa 4295 | newzealand 4296 | bertha 4297 | samanta 4298 | 222333 4299 | emachines 4300 | millwall 4301 | killbill 4302 | monkeybutt 4303 | jacky 4304 | coyote 4305 | information 4306 | denzel 4307 | tierra 4308 | cierra 4309 | itzel 4310 | barbiegirl 4311 | maiden 4312 | chris12 4313 | original 4314 | assassin 4315 | kelley 4316 | madman 4317 | hawaiian 4318 | alessandro 4319 | peter1 4320 | blue 4321 | Daniel 4322 | lorenita 4323 | marygrace 4324 | classic 4325 | karencita 4326 | james23 4327 | people1 4328 | coleman 4329 | morenita 4330 | kittys 4331 | debora 4332 | iulian 4333 | celina 4334 | jesuslovesme 4335 | apple123 4336 | waterfall 4337 | cowboy1 4338 | darkside 4339 | willy 4340 | passwords 4341 | kamikaze 4342 | katty 4343 | complicated 4344 | perlita 4345 | monkey13 4346 | gisela 4347 | iloveyou12 4348 | star12 4349 | mohammed 4350 | birdie 4351 | redroses 4352 | peekaboo 4353 | gerrard8 4354 | gotmilk 4355 | angell 4356 | jones 4357 | hotshot 4358 | paige1 4359 | 1angel 4360 | cooper1 4361 | estrada 4362 | afrodita 4363 | baby08 4364 | frederick 4365 | edwards 4366 | xavier1 4367 | hamtaro 4368 | nature 4369 | lionel 4370 | alicia1 4371 | piggy 4372 | venice 4373 | graciela 4374 | looser 4375 | sharpay 4376 | gamecube 4377 | class07 4378 | bighead 4379 | tennis1 4380 | velvet 4381 | siempre 4382 | doggies 4383 | 258963 4384 | 1blood 4385 | cookiemonster 4386 | biology 4387 | colt45 4388 | hotbabe 4389 | duchess 4390 | angel16 4391 | water1 4392 | jelly 4393 | blue32 4394 | monica1 4395 | baby1 4396 | sandrita 4397 | wachtwoord 4398 | laurie 4399 | kamila 4400 | pineda 4401 | 123456s 4402 | letmein1 4403 | silvestre 4404 | qweasdzxc 4405 | ilovedogs 4406 | melany 4407 | blue13 4408 | kahitano 4409 | sexy01 4410 | gwapoako 4411 | oakland 4412 | 19931993 4413 | 111111111 4414 | makulit 4415 | redwings 4416 | marielle 4417 | miguel1 4418 | jonny 4419 | linda1 4420 | savior 4421 | satan666 4422 | mcdonalds 4423 | allyson 4424 | brooks 4425 | thinkpink 4426 | wordlife 4427 | lovebug1 4428 | JASMINE 4429 | groovychick 4430 | pollita 4431 | omarion1 4432 | mysterio 4433 | angel10 4434 | tortuga 4435 | pizza1 4436 | chelsie 4437 | sandoval 4438 | marsha 4439 | nicole2 4440 | eatshit 4441 | lollies 4442 | hibernian 4443 | annie1 4444 | teresita 4445 | monkeys1 4446 | budweiser 4447 | cannabis 4448 | guitarra 4449 | steph1 4450 | courage 4451 | cabrera 4452 | solotu 4453 | Jordan 4454 | antoine 4455 | mifamilia 4456 | godlovesme 4457 | target 4458 | kansas 4459 | lowrider 4460 | marta 4461 | Michelle 4462 | doodles 4463 | nobody 4464 | bobcat 4465 | cool123 4466 | dejavu 4467 | akatsuki 4468 | ferret 4469 | create 4470 | bessie 4471 | boobs 4472 | mommy3 4473 | jomar 4474 | rafaela 4475 | reddog 4476 | avalon 4477 | erwin 4478 | hoover 4479 | brendon 4480 | ilovekyle 4481 | deejay 4482 | mandy1 4483 | sahara 4484 | Nicole 4485 | sexybitch1 4486 | integra 4487 | georgia1 4488 | hello12 4489 | 19851985 4490 | grandpa 4491 | crackers 4492 | mercado 4493 | s123456 4494 | carissa 4495 | catfish 4496 | MONKEY 4497 | semperfi 4498 | alvarado 4499 | angelus 4500 | elisa 4501 | honeyz 4502 | marvel 4503 | keekee 4504 | corbin 4505 | family4 4506 | usher 4507 | subway 4508 | eragon 4509 | search 4510 | pinkish 4511 | newman 4512 | ezekiel 4513 | catch22 4514 | wwwwww 4515 | elisabeth 4516 | mmmmm 4517 | palmtree 4518 | bball 4519 | capslock 4520 | monyet 4521 | friendsforever 4522 | skywalker 4523 | richelle 4524 | labebe 4525 | 000001 4526 | nookie 4527 | sassygirl 4528 | manny 4529 | maricris 4530 | happyfeet 4531 | mariah1 4532 | delgado 4533 | oicu812 4534 | sosexy 4535 | sparks 4536 | momof3 4537 | littlebit 4538 | twiggy 4539 | squall 4540 | estefani 4541 | mongoose 4542 | buffy1 4543 | tanisha 4544 | pisicuta 4545 | counter 4546 | meggie 4547 | elefante 4548 | aquino 4549 | princess123 4550 | qaz123 4551 | bitch69 4552 | labtec 4553 | hello2 4554 | 19941994 4555 | pass123 4556 | belleza 4557 | valery 4558 | sweety1 4559 | 77777777 4560 | matty 4561 | chargers 4562 | corey1 4563 | glasgow 4564 | tenten 4565 | bubulina 4566 | squirrel 4567 | mybabies 4568 | maxpower 4569 | hailey1 4570 | smitty 4571 | louis 4572 | aquamarine 4573 | nineteen 4574 | nicole12 4575 | maricela 4576 | fabolous 4577 | hunnybunny 4578 | nickolas 4579 | negro 4580 | latrice 4581 | poiuytrewq 4582 | snowboard 4583 | chico1 4584 | scream 4585 | alessandra 4586 | maisie 4587 | hondacivic 4588 | bryan1 4589 | magnum 4590 | baybee 4591 | aleja 4592 | carebear1 4593 | mamama 4594 | eloisa 4595 | techno 4596 | independent 4597 | lalito 4598 | volume 4599 | 141516 4600 | luckyme 4601 | metalica 4602 | cancun 4603 | cobain 4604 | southern 4605 | aragorn 4606 | devon 4607 | 1q2w3e4r5t 4608 | rancid 4609 | juanes 4610 | arielle 4611 | shaun 4612 | candie 4613 | volley 4614 | ash123 4615 | priscila 4616 | cheyanne 4617 | bubble1 4618 | elvis1 4619 | hustler 4620 | lilly1 4621 | fairies 4622 | leopard 4623 | bigfoot 4624 | flipflop 4625 | peace1 4626 | minniemouse 4627 | teetee 4628 | notebook 4629 | AMERICA 4630 | bonnie1 4631 | ortega 4632 | cutify 4633 | moose 4634 | bernice 4635 | nicolle 4636 | bluebell 4637 | sierra1 4638 | gilberto 4639 | anarchy 4640 | tasha1 4641 | hilton 4642 | ripcurl 4643 | connor1 4644 | terminator 4645 | onepiece 4646 | dionne 4647 | dorian 4648 | carnell 4649 | sandra1 4650 | florentina 4651 | LOVEME 4652 | chicky 4653 | catdog1 4654 | chronic 4655 | amorsito 4656 | padilla 4657 | lovemom 4658 | snowball1 4659 | pizzas 4660 | chicks 4661 | fossil 4662 | beach 4663 | telefono 4664 | nanita 4665 | kimerald 4666 | wonderland 4667 | fantastic 4668 | josie 4669 | lights 4670 | 987456321 4671 | gordo 4672 | escola 4673 | beebee 4674 | bitches1 4675 | twins 4676 | deandre 4677 | smokie 4678 | chicago1 4679 | splash 4680 | disneyland 4681 | ibrahim 4682 | teddybear1 4683 | lovelygirl 4684 | burberry 4685 | ignacio 4686 | test 4687 | 143444 4688 | paixao 4689 | camelia 4690 | ramiro 4691 | baby07 4692 | jeffrey1 4693 | 456321 4694 | snapple 4695 | asasas 4696 | gracey 4697 | gorillaz 4698 | TWEETY 4699 | hello! 4700 | memyselfandi 4701 | kassie 4702 | venus 4703 | guzman 4704 | pooper 4705 | bluestar 4706 | angel15 4707 | hellothere 4708 | happybunny 4709 | nessa 4710 | booty 4711 | putangina 4712 | toronto 4713 | jamielee 4714 | jehovah 4715 | bunnyboo 4716 | bigmama 4717 | gogogo 4718 | baby11 4719 | crybaby 4720 | joselito 4721 | fresas 4722 | Anthony 4723 | element1 4724 | sexy16 4725 | joselyn 4726 | monkey11 4727 | xtreme 4728 | babygal 4729 | loraine 4730 | kameron 4731 | alonzo 4732 | tomato 4733 | lovehim 4734 | chiquito 4735 | suicide 4736 | minina 4737 | abegail 4738 | 1truelove 4739 | alohomora 4740 | fraser 4741 | diamante 4742 | rasta 4743 | abigail1 4744 | casino 4745 | JOSHUA 4746 | bhabycoh 4747 | tucker1 4748 | pandabear 4749 | tracy 4750 | hellow 4751 | gavin 4752 | nikolas 4753 | computador 4754 | lissette 4755 | vernon 4756 | blanco 4757 | k123456 4758 | wolfpack 4759 | henderson 4760 | a1234567 4761 | baby01 4762 | muneca 4763 | giovanna 4764 | edgardo 4765 | queenbee 4766 | jamila 4767 | jesusislord 4768 | magic1 4769 | candys 4770 | yankees2 4771 | Danielle 4772 | thelma 4773 | anaconda 4774 | roberts 4775 | jarvis 4776 | gerson 4777 | powder 4778 | chuchu 4779 | dixie1 4780 | blink 4781 | hardrock 4782 | damnit 4783 | sexymama1 4784 | sonny 4785 | dottie 4786 | ojitos 4787 | anahi 4788 | Jennifer 4789 | lilkim 4790 | horse1 4791 | lucille 4792 | godsmack 4793 | jazzie 4794 | smith 4795 | JUNIOR 4796 | angel07 4797 | young1 4798 | honest 4799 | 1029384756 4800 | planet 4801 | chinese 4802 | hithere 4803 | lamborghini 4804 | Liverpool 4805 | ESTRELLA 4806 | soccer16 4807 | western 4808 | castle 4809 | class08 4810 | helloo 4811 | smile123 4812 | murder 4813 | loveis 4814 | deleon 4815 | lobster 4816 | 784512 4817 | japanese 4818 | labrador 4819 | yomomma 4820 | seattle 4821 | steve1 4822 | ilovecats 4823 | raymond1 4824 | cutie123 4825 | stephany 4826 | monmon 4827 | escorpio 4828 | balong 4829 | tanner1 4830 | 09876 4831 | picasso 4832 | university 4833 | lloyd 4834 | pacheco 4835 | benjamin1 4836 | foxylady 4837 | julian1 4838 | alex12 4839 | carola 4840 | chandra 4841 | smithy 4842 | stronger 4843 | alfie 4844 | lianne 4845 | sabrina1 4846 | redsox1 4847 | universal 4848 | jerson 4849 | 336699 4850 | kitty123 4851 | wrangler 4852 | 525252 4853 | braveheart 4854 | JESUS 4855 | monserrat 4856 | happyday 4857 | JUSTIN 4858 | shadmoss 4859 | sandro 4860 | disney1 4861 | princess11 4862 | rosalie 4863 | roderick 4864 | 224466 4865 | jerico 4866 | nightwish 4867 | spencer1 4868 | carlito 4869 | 1a2b3c4d 4870 | BRANDON 4871 | cccccc 4872 | 888999 4873 | angie1 4874 | alemania 4875 | angel23 4876 | marques 4877 | loved1 4878 | preety 4879 | celica 4880 | harriet 4881 | kendrick 4882 | januari 4883 | june23 4884 | dolphins1 4885 | campos 4886 | micah 4887 | sexyred 4888 | isaiah1 4889 | amerika 4890 | ...... 4891 | houston1 4892 | tomcat 4893 | crimson 4894 | heavenly 4895 | lacrimosa 4896 | italian 4897 | heyheyhey 4898 | PRINCESA 4899 | rabbits 4900 | lilromeo 4901 | lickme 4902 | noelia 4903 | sausage 4904 | Tigger 4905 | zxcvbnm1 4906 | andre1 4907 | trojans 4908 | apache 4909 | durango 4910 | 6543210 4911 | spongecola 4912 | 123456c 4913 | onelove1 4914 | hotlips 4915 | sandman 4916 | super1 4917 | milano 4918 | andreina 4919 | 456654 4920 | bigboy1 4921 | steelers1 4922 | honeyq 4923 | bangbang 4924 | nigger1 4925 | newpassword 4926 | badboy1 4927 | miller1 4928 | jokers 4929 | teamomiamor 4930 | matilde 4931 | 19841984 4932 | dirtbike 4933 | tigger12 4934 | iuliana 4935 | revolution 4936 | FUCKYOU 4937 | metallica1 4938 | tekieromucho 4939 | jonatan 4940 | stewie 4941 | eugenia 4942 | summer05 4943 | fantasia 4944 | 321456 4945 | wertyu 4946 | jellybeans 4947 | empire 4948 | june28 4949 | 1234554321 4950 | speaker 4951 | natali 4952 | poetry 4953 | thesims2 4954 | bball1 4955 | ventura 4956 | abbie 4957 | sexysexy 4958 | muslim 4959 | rosalinda 4960 | soccer22 4961 | holler 4962 | spotty 4963 | teodora 4964 | bling 4965 | janina 4966 | denis 4967 | chikis 4968 | francisca 4969 | 212224236 4970 | ferguson 4971 | chevy1 4972 | thursday 4973 | rockets 4974 | orlandobloom 4975 | sweetypie 4976 | sagitarius 4977 | dixie 4978 | 2222222 4979 | 2sweet 4980 | bonethugs 4981 | passions 4982 | wiggles 4983 | heidi 4984 | heroes 4985 | jamal 4986 | lingling 4987 | juliocesar 4988 | 10203040 4989 | j12345 4990 | 19881988 4991 | yessica 4992 | lokito 4993 | beetle 4994 | ladybird 4995 | polarbear 4996 | chance1 4997 | newnew 4998 | estrelinha 4999 | 01234567 5000 | twisted 5001 | brianne 5002 | homer 5003 | dreaming 5004 | powell 5005 | 235689 5006 | butterfly2 5007 | sexkitten 5008 | losangeles 5009 | 1234567a 5010 | sexygal 5011 | gidget 5012 | blueblue 5013 | brothers 5014 | 19951995 5015 | koolkat 5016 | nextel 5017 | missie 5018 | maryland 5019 | piscis 5020 | nathaly 5021 | 123456t 5022 | samsung1 5023 | soleil 5024 | dogdog 5025 | starfire 5026 | october1 5027 | crips 5028 | 1babygirl 5029 | bouncer 5030 | 123456b 5031 | jimmie 5032 | westwood 5033 | #1bitch 5034 | rockandroll 5035 | slamdunk 5036 | brenda1 5037 | michell 5038 | lalaland 5039 | hellohello 5040 | edith 5041 | fiona 5042 | gogirl 5043 | derick 5044 | atlantis 5045 | TIGGER 5046 | sirenita 5047 | love33 5048 | phillips 5049 | bollocks 5050 | quiksilver 5051 | keepout 5052 | ihateyou1 5053 | salman 5054 | daryl 5055 | playboy69 5056 | leavemealone 5057 | iloveluke 5058 | 44444444 5059 | oxford 5060 | darkstar 5061 | consuelo 5062 | camilita 5063 | MIGUEL 5064 | limpbizkit 5065 | privacy 5066 | petewentz 5067 | sonic 5068 | inferno 5069 | gusanito 5070 | golfer 5071 | jayjay1 5072 | princess01 5073 | parrot 5074 | ducky 5075 | rasmus 5076 | inlove1 5077 | kookie 5078 | biteme1 5079 | karen1 5080 | fernandes 5081 | zipper 5082 | smoking 5083 | brujita 5084 | toledo 5085 | -------------------------------------------------------------------------------- /trigmap/trigmap.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | 4 | 5 | # trigmap - a wrapper for Nmap 6 | # Copyright © 2019 Leviathan36 7 | 8 | # trigmap is free software: you can redistribute it and/or modify 9 | # it under the terms of the GNU General Public License as published by 10 | # the Free Software Foundation, either version 3 of the License, or 11 | # (at your option) any later version. 12 | 13 | # trigmap is distributed in the hope that it will be useful, 14 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 15 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 16 | # GNU General Public License for more details. 17 | 18 | # You should have received a copy of the GNU General Public License 19 | # along with trigmap. If not, see . 20 | 21 | 22 | 23 | 24 | ############################################## 25 | ### PARAMETERS ### 26 | ############################################## 27 | GENERAL_USER_LIST='general_user_wordlist_short.txt' # << 28 | WIN_USER_LIST='win_user_wordlist_short.txt' # <<< 29 | UNIX_USER_LIST='unix_user_wordlist_short.txt' # <============= 30 | SHORT_PASS_LIST='fasttrack.txt' #<======= CHANGE THESE TO CUSTOMIZE YOUR SCRIPT 31 | LONG_PASS_LIST='passwords.lst' # <============= 32 | # <<< 33 | ############################################## # << 34 | ### NMAP SETTING ### 35 | ############################################## 36 | 37 | # PE (echo req), PP (timestamp-request) 38 | # you can add a port on every ping scan 39 | NMAP_PING='-PE -PS80,443,22,25,110,445 -PU -PP -PA80,443,22,25,110,445' # << 40 | # <<< 41 | NMAP_OTHER='-sV --allports -O --fuzzy --min-hostgroup 256' # <============= 42 | #<======= CHANGE THESE TO CUSTOMIZE YOUR SCRIPT 43 | SCRIPT_VA='(auth or vuln or exploit or http-* and not dos)' # <============= 44 | # <<< 45 | SCRIPT_BRUTE='(auth or vuln or exploit or http-* or brute and not dos)' # << 46 | 47 | SCRIPT_ARGS="userdb=$GENERAL_USER_LIST,passdb=$SHORT_PASS_LIST" 48 | 49 | CUSTOM_SCAN='--max-retries 3 --min-rate 250' # LIKE UNICORNSCAN 50 | 51 | 52 | ############################################## 53 | ### FUNCTIONS ### 54 | ############################################## 55 | 56 | # print functions 57 | print_start_end () { 58 | printf "\033[36;1m[*******************************************************]\033[0m\n" 59 | printf "\033[36;1m[ $1 ]\033[0m\n" 60 | printf "\033[36;1m[*******************************************************]\033[0m\n" 61 | } 62 | 63 | print_std () { 64 | printf "\033[34;1m[*]$1\033[0m\n" 65 | } 66 | 67 | print_failure () { 68 | printf "\033[35;1m[-]$1\033[0m\n" 69 | } 70 | 71 | print_succ () { 72 | printf "\033[32;1m[+]$1\033[0m\n" 73 | } 74 | 75 | print_progress () { 76 | TIME='0' 77 | while true; do 78 | printf "\rWORKING TIME: $TIME minutes [" 79 | for ((i=0;i<10;i++)); do 80 | printf "=" 81 | sleep 6 82 | done 83 | ((TIME++)) 84 | done 85 | } 86 | 87 | 88 | 89 | # print help 90 | print_help () { 91 | echo 'Usage:' 92 | echo ' Interactive mode:' 93 | echo ' trigmap [ENTER] ...and the script does the rest' 94 | echo 95 | echo ' NON-interactive mode:' 96 | echo ' trigmap -h|--host [-tp|--tcp TCP ports] [-up|--udp UDP ports] [-f|--file file path] [-s|--speed time profile] [-n|--nic NIC] [-p|--phase phases]' 97 | echo 98 | echo ' phases:' 99 | echo ' - i == information gathering' 100 | echo ' - v == vulnerability assessment' 101 | echo ' - d == dictionary attack against open services' 102 | echo 103 | echo ' example: iv == information gathering + vulnerability assessment' 104 | echo ' dafult: ALL (ivb)' 105 | echo 106 | echo ' trigmap --help to print this helper' 107 | echo 108 | } 109 | 110 | # sanitize input parameters 111 | sanitize_input () { 112 | 113 | # interactive mode 114 | if [[ "$#" == 0 ]]; then 115 | printf "insert host (nmap syntax):\n>> " 116 | read HOST 117 | 118 | printf "insert the range of TCP ports to scan (default top 1000):\n>> " 119 | read TCP_PORTS 120 | 121 | printf "insert the range of UDP ports to scan (default top 200):\n>> " 122 | read UDP_PORTS 123 | 124 | 125 | echo 'choose the time profile:' 126 | echo ' 0. paranoid (-T 0)' 127 | echo ' 1. sneaky (-T 1)' 128 | echo ' 2. polite (-T 2)' 129 | echo ' 3. normal (-T 3)' 130 | echo ' 4. aggressive (-T 4)' 131 | echo ' 5. insane (-T 5)' 132 | echo ' 6. custom scan (CUSTOM_SCAN)' 133 | read -p '>> ' TIME_PROFILE_CHOICE 134 | 135 | printf "insert NIC:\n>> " 136 | read NIC 137 | 138 | printf "insert path where to save results (without final /):\n>> " 139 | read FILE_PATH 140 | 141 | echo 'choose the phases to perform (default ivd):' 142 | echo ' - Information Gathering (i)' 143 | echo ' - Vulnerability Assessment (v)' 144 | echo ' - Dictionary Attack (d)' 145 | read -p '>> ' PHASE 146 | while [[ ! "$PHASE" == '' && ! "$PHASE" =~ ['ivd'] ]]; do 147 | printf "INVALID PARAMETER\nchoose the phases to perform:\n>> " 148 | read PHASE 149 | done 150 | 151 | printf "shutdown pc at the end of script [YES/NO] (default NO):\n>> " 152 | read SHUTDOWN 153 | 154 | else 155 | 156 | while [[ ! "$#" == 0 ]]; do 157 | case "$1" in 158 | --help ) print_help; exit 0;; 159 | -h | --host ) HOST="$2"; shift 2;; 160 | -tp | --tcp ) TCP_PORTS="$2"; shift 2;; 161 | -up | --udp ) UDP_PORTS="$2"; shift 2;; 162 | -f | --file ) FILE_PATH="$2"; shift 2;; 163 | -s | --speed ) TIME_PROFILE_CHOICE="$2"; shift 2;; 164 | -n | --nic ) NIC="$2"; shift 2;; 165 | -p | --phase ) PHASE="$2"; shift 2;; 166 | * ) print_failure "INVALID PARAMETERS!"; print_help; exit 0;; 167 | esac 168 | done 169 | 170 | fi 171 | 172 | # check input 173 | if [[ ! "$HOST" =~ ['1234567890./,'] && ! "$HOST" == 'localhost' ]]; then 174 | echo "$HOST : THE TARGET IP CONTAINS INVALID CHARACTERS" 175 | exit 1 176 | fi 177 | 178 | if [[ ! "$TCP_PORTS" == '' && ! "$TCP_PORTS" == '-' && ! "$TCP_PORTS" =~ ['1234567890,'] ]]; then 179 | echo "$TCP_PORTS : THE TCP PORTS PARAMETER CONTAINS INVALID CHARACTERS" 180 | exit 2 181 | fi 182 | 183 | if [[ ! "$UDP_PORTS" == '' && ! "$UDP_PORTS" == '-' && ! "$UDP_PORTS" =~ ['1234567890,'] ]]; then 184 | echo "$UDP_PORTS : THE UDP PORTS PARAMETER CONTAINS INVALID CHARACTERS" 185 | exit 3 186 | fi 187 | 188 | if [[ ! "$TIME_PROFILE_CHOICE" =~ ['123456'] && ! "$TIME_PROFILE_CHOICE" == '' ]]; then 189 | echo "$TIME_PROFILE_CHOICE : THE TIME PROFILE PARAMETER CONTAINS INVALID CHARACTERS" 190 | exit 4 191 | fi 192 | 193 | if [[ ! "$NIC" == '' ]]; then 194 | ifconfig "$NIC" &> /dev/null || { echo "$NIC : DEVICE NOT FOUND"; exit 5; } 195 | fi 196 | 197 | if [[ "$FILE_PATH" == '' ]]; then 198 | FILE_PATH="$(pwd)" 199 | elif [[ ! -d "$FILE_PATH" ]]; then 200 | echo "$FILE_PATH : DIRECTORY NOT FOUND" 201 | exit 6 202 | fi 203 | 204 | if [[ "$PHASE" == '' ]]; then 205 | PHASE='ivd' 206 | fi 207 | 208 | } 209 | 210 | # build nmap parameters 211 | make_nmap_parameters () { 212 | 213 | # HOST 214 | NMAP_HOST="$HOST" 215 | 216 | # TCP 217 | if [[ "$TCP_PORTS" == '' ]]; then 218 | NMAP_TCP_PORTS='--top-ports 1000' 219 | elif [[ $(cut -d' ' -f1 <<< $TCP_PORTS) == '--top-ports' ]]; then 220 | NMAP_TCP_PORTS="$TCP_PORTS" 221 | else 222 | NMAP_TCP_PORTS="-p $TCP_PORTS" 223 | fi 224 | 225 | # UDP 226 | if [[ "$UDP_PORTS" == '' ]]; then 227 | NMAP_UDP_PORTS='--top-ports 200' 228 | elif [[ $(cut -d' ' -f1 <<< $UDP_PORTS) == '--top-ports' ]]; then 229 | NMAP_UDP_PORTS="$UDP_PORTS" 230 | else 231 | NMAP_UDP_PORTS="-p $UDP_PORTS" 232 | fi 233 | 234 | # TIME 235 | if [[ "$TIME_PROFILE_CHOICE" == '' ]]; then 236 | NMAP_TIME_PROFILE='' 237 | elif [[ "$TIME_PROFILE_CHOICE" == '6' ]]; then 238 | NMAP_TIME_PROFILE="$CUSTOM_SCAN" 239 | else 240 | NMAP_TIME_PROFILE="-T$TIME_PROFILE_CHOICE" 241 | fi 242 | 243 | # NIC 244 | if [[ "$NIC" == '' ]]; then 245 | NMAP_NIC='' 246 | else 247 | NMAP_NIC="-e $NIC" 248 | fi 249 | 250 | # PATH 251 | mkdir -p "$FILE_PATH/$HOST" 252 | FILE_PATH="$FILE_PATH/$HOST" 253 | 254 | # FILES 255 | SYN_FILE_NAME='script-syn' 256 | UDP_FILE_NAME='script-udp' 257 | NMAP_SYN_FILE_PATH="-oA $FILE_PATH/$SYN_FILE_NAME" 258 | NMAP_UDP_FILE_PATH="-oA $FILE_PATH/$UDP_FILE_NAME" 259 | 260 | # PHASE 261 | case "$PHASE" in 262 | 'i') 263 | NMAP_SCRIPT='' 264 | ;; 265 | 'v') 266 | NMAP_SCRIPT="$SCRIPT_VA" 267 | ;; 268 | *) 269 | NMAP_SCRIPT="$SCRIPT_BRUTE" 270 | ;; 271 | esac 272 | 273 | # SCRIPT ARGS 274 | NMAP_SCRIPT_ARGS="$SCRIPT_ARGS" 275 | 276 | } 277 | 278 | 279 | # the function which calls nmap script 280 | # 281 | #$1 == ping scan 282 | #$2 == scan 283 | #$3 == ports 284 | #$4 == other 285 | #$5 == path 286 | #$6 == script 287 | #$7 == script_args 288 | #$8 == interface 289 | #$9 == time profile 290 | #$10 == hosts 291 | # 292 | nmap_cmd () { 293 | print_progress & 294 | PRINT_PROGRESS_PID="$!" 295 | PARAMETERS="$1 $2 $3 $4 $5 $8 $9" # EXCEPT $6, $7, $10 : script (string), script-args (string), host (last) 296 | read -a array <<< "$PARAMETERS" 297 | #echo "${array[@]}" --script "$6" --script-args "$7" "${10}" #debug 298 | nmap "${array[@]}" --script "$6" --script-args "$7" "${10}" &> /dev/null || { print_failure "NMAP: exit with error code $?"; kill "$PRINT_PROGRESS_PID" &> /dev/null; exit 99; } 299 | kill "$PRINT_PROGRESS_PID" &> /dev/null 300 | echo 301 | } 302 | 303 | # parser for syn-scan 304 | # 305 | # $1 == FILE_TCP 306 | # $2 == PATH 307 | # 308 | parser_tcp () { 309 | NEW_FILE='/dev/null' 310 | while read line; do 311 | if grep -q 'Nmap scan report' <<< "$line"; then 312 | # parsing old files 313 | if [[ ! "$NEW_FILE" == '/dev/null' ]]; then 314 | grep -v '|' "$NEW_FILE-script" > "$NEW_FILE-syn" 315 | fi 316 | # creating new dir and files 317 | NEW_HOST="$(cut -f5 -d' ' <<< "$line")" 318 | mkdir -p "$2/$NEW_HOST" 319 | NEW_FILE="$2/$NEW_HOST/$NEW_HOST" 320 | print_std "new directory: $2/$NEW_HOST/" 321 | # filling the first line of new file 322 | echo "$line" > "$NEW_FILE-script" 323 | else 324 | # filling the others lines of new file 325 | echo "$line" >> "$NEW_FILE-script" 326 | # password found! 327 | grep -q -e '- Valid credentials' <<< "$line" && { print_succ "PASSWORD FOUND $line"; echo "$line" >> "$NEW_FILE-passwords"; } 328 | fi 329 | done < "$2/$1.nmap" 330 | # parsing the last file 331 | grep -v '|' "$NEW_FILE-script" > "$NEW_FILE-syn" 332 | } 333 | 334 | 335 | # parser for udp-scan 336 | # 337 | # $1 == FILE_UDP 338 | # $2 == PATH 339 | # 340 | parser_udp () { 341 | NEW_FILE='/dev/null' 342 | while read line; do 343 | if grep -q 'Nmap scan report' <<< "$line"; then 344 | # creating new dir and files 345 | NEW_HOST="$(cut -f5 -d' ' <<< "$line")" 346 | mkdir -p "$2/$NEW_HOST" 347 | NEW_FILE="$2/$NEW_HOST/$NEW_HOST" 348 | #print_std "new directory: $2/$NEW_HOST/" 349 | # filling the first line of new file 350 | echo "$line" > "$NEW_FILE-udp" 351 | else 352 | # filling the others lines of new file 353 | echo "$line" >> "$NEW_FILE-udp" 354 | fi 355 | done < "$2/$1.nmap" 356 | } 357 | 358 | 359 | 360 | ############################################## 361 | ### MAIN ### 362 | ############################################## 363 | 364 | # take the parameters 365 | sanitize_input "$@" 366 | 367 | # make nmap parameters 368 | make_nmap_parameters 369 | 370 | # start script 371 | print_start_end "START SCRIPT AT `date`" 372 | 373 | # syn-scan 374 | print_std 'start syn-scan...' 375 | nmap_cmd "$NMAP_PING" '-sS' "$NMAP_TCP_PORTS" "$NMAP_OTHER" "$NMAP_SYN_FILE_PATH" "$NMAP_SCRIPT" "$NMAP_SCRIPT_ARGS" "$NMAP_NIC" "$NMAP_TIME_PROFILE" "$NMAP_HOST" 376 | 377 | # udp-scan 378 | print_std 'start udp-scan...'; 379 | nmap_cmd "$NMAP_PING" '-sU' "$NMAP_UDP_PORTS" "$NMAP_OTHER" "$NMAP_UDP_FILE_PATH" "$NMAP_SCRIPT" "$NMAP_SCRIPT_ARGS" "$NMAP_NIC" "$NMAP_TIME_PROFILE" "$NMAP_HOST" 380 | 381 | # parsing 382 | parser_tcp "$SYN_FILE_NAME" "$FILE_PATH" 383 | parser_udp "$UDP_FILE_NAME" "$FILE_PATH" 384 | 385 | # end of script 386 | print_start_end "END SCRIPT AT `date`" 387 | 388 | # shutdown 389 | if [[ "$shutdown" == 'YES' || "$shutdown" == 'yes' ]]; then 390 | print_std 'shutdown system...' 391 | sleep 2 392 | shutdown now 393 | fi 394 | 395 | 396 | 397 | ########### END OF SCRIPT ############## 398 | ############################################## 399 | -------------------------------------------------------------------------------- /trigmap/unix_user_wordlist_short.txt: -------------------------------------------------------------------------------- 1 | root 2 | ftpuser 3 | -------------------------------------------------------------------------------- /trigmap/win_user_wordlist_short.txt: -------------------------------------------------------------------------------- 1 | admin 2 | administrator 3 | guest 4 | -------------------------------------------------------------------------------- /trigmap_images/dir_hierarchy.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/dir_hierarchy.PNG -------------------------------------------------------------------------------- /trigmap_images/screenshots/complete_scan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/complete_scan.png -------------------------------------------------------------------------------- /trigmap_images/screenshots/interactive_mode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/interactive_mode.png -------------------------------------------------------------------------------- /trigmap_images/screenshots/interactive_mode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/interactive_mode_2.png -------------------------------------------------------------------------------- /trigmap_images/screenshots/interactive_mode_2_commented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/interactive_mode_2_commented.png -------------------------------------------------------------------------------- /trigmap_images/screenshots/interactive_mode_commented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/interactive_mode_commented.png -------------------------------------------------------------------------------- /trigmap_images/screenshots/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/screenshots/result.png -------------------------------------------------------------------------------- /trigmap_images/trigmap_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Leviathan36/trigmap/326b57c7b14ae029e1f76025d585c946c11abf06/trigmap_images/trigmap_logo.png --------------------------------------------------------------------------------