diff --git a/lib/core/common.py b/lib/core/common.py
index 5edc4f3ee..55379f7b2 100644
--- a/lib/core/common.py
+++ b/lib/core/common.py
@@ -165,6 +165,7 @@ from lib.core.settings import URI_QUESTION_MARKER
from lib.core.settings import URLENCODE_CHAR_LIMIT
from lib.core.settings import URLENCODE_FAILSAFE_CHARS
from lib.core.settings import USER_AGENT_ALIASES
+from lib.core.settings import VERSION
from lib.core.settings import VERSION_STRING
from lib.core.settings import WEBSCARAB_SPLITTER
from lib.core.threads import getCurrentThreadData
@@ -1165,6 +1166,9 @@ def getHeader(headers, key):
def checkFile(filename, raiseOnError=True):
"""
Checks for file existence and readability
+
+ >>> checkFile(__file__)
+ True
"""
valid = True
@@ -1647,6 +1651,9 @@ def parseUnionPage(page):
def parseFilePaths(page):
"""
Detects (possible) absolute system paths inside the provided page content
+
+ >>> _ = "/var/www/html/index.php"; parseFilePaths("Error occurred at line 207 of: %s
Please contact your administrator" % _); _ in kb.absFilePaths
+ True
"""
if page:
@@ -2039,6 +2046,9 @@ def parseXmlFile(xmlFile, handler):
def getSQLSnippet(dbms, sfile, **variables):
"""
Returns content of SQL snippet located inside 'procs/' directory
+
+ >>> 'RECONFIGURE' in getSQLSnippet(DBMS.MSSQL, "activate_sp_oacreate")
+ True
"""
if sfile.endswith('.sql') and os.path.exists(sfile):
@@ -2078,9 +2088,12 @@ def getSQLSnippet(dbms, sfile, **variables):
return retVal
-def readCachedFileContent(filename, mode='rb'):
+def readCachedFileContent(filename, mode="rb"):
"""
Cached reading of file content (avoiding multiple same file reading)
+
+ >>> "readCachedFileContent" in readCachedFileContent(__file__)
+ True
"""
if filename not in kb.cache.content:
@@ -2137,6 +2150,9 @@ def average(values):
def calculateDeltaSeconds(start):
"""
Returns elapsed time from start till now
+
+ >>> calculateDeltaSeconds(0) > 1151721660
+ True
"""
return time.time() - start
@@ -2144,6 +2160,9 @@ def calculateDeltaSeconds(start):
def initCommonOutputs():
"""
Initializes dictionary containing common output values used by "good samaritan" feature
+
+ >>> initCommonOutputs(); "information_schema" in kb.commonOutputs["Databases"]
+ True
"""
kb.commonOutputs = {}
@@ -3351,6 +3370,9 @@ def unhandledExceptionMessage():
def getLatestRevision():
"""
Retrieves latest revision from the offical repository
+
+ >>> getLatestRevision() == VERSION
+ True
"""
retVal = None
@@ -4149,6 +4171,9 @@ def checkSystemEncoding():
def evaluateCode(code, variables=None):
"""
Executes given python code given in a string form
+
+ >>> _ = {}; evaluateCode("a = 1; b = 2; c = a", _); _["c"]
+ 1
"""
try:
@@ -4202,6 +4227,9 @@ def incrementCounter(technique):
def getCounter(technique):
"""
Returns query counter for a given technique
+
+ >>> resetCounter(PAYLOAD.TECHNIQUE.STACKED); incrementCounter(PAYLOAD.TECHNIQUE.STACKED); getCounter(PAYLOAD.TECHNIQUE.STACKED)
+ 1
"""
return kb.counters.get(technique, 0)
@@ -4441,6 +4469,9 @@ def zeroDepthSearch(expression, value):
"""
Searches occurrences of value inside expression at 0-depth level
regarding the parentheses
+
+ >>> _ = "SELECT (SELECT id FROM users WHERE 2>1) AS result FROM DUAL"; _[zeroDepthSearch(_, "FROM")[0]:]
+ 'FROM DUAL'
"""
retVal = []
@@ -4476,7 +4507,7 @@ def pollProcess(process, suppress_errors=False):
Checks for process status (prints . if still running)
"""
- while True:
+ while process:
dataToStdout(".")
time.sleep(1)
@@ -4701,12 +4732,33 @@ def getSafeExString(ex, encoding=None):
return getUnicode(retVal or "", encoding=encoding).strip()
def safeVariableNaming(value):
+ """
+ Returns escaped safe-representation of a given variable name that can be used in Python evaluated code
+
+ >>> safeVariableNaming("foo bar")
+ 'foo__SAFE__20bar'
+ """
+
return re.sub(r"[^\w]", lambda match: "%s%02x" % (SAFE_VARIABLE_MARKER, ord(match.group(0))), value)
def unsafeVariableNaming(value):
+ """
+ Returns unescaped safe-representation of a given variable name
+
+ >>> unsafeVariableNaming("foo__SAFE__20bar")
+ 'foo bar'
+ """
+
return re.sub(r"%s([0-9a-f]{2})" % SAFE_VARIABLE_MARKER, lambda match: match.group(1).decode("hex"), value)
def firstNotNone(*args):
+ """
+ Returns first not-None value from a given list of arguments
+
+ >>> firstNotNone(None, None, 1, 2, 3)
+ 1
+ """
+
retVal = None
for _ in args:
diff --git a/lib/core/settings.py b/lib/core/settings.py
index 84e2fcf49..60cea7107 100644
--- a/lib/core/settings.py
+++ b/lib/core/settings.py
@@ -19,7 +19,7 @@ from lib.core.enums import DBMS_DIRECTORY_NAME
from lib.core.enums import OS
# sqlmap version (...)
-VERSION = "1.2.9.10"
+VERSION = "1.2.9.11"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
diff --git a/txt/checksum.md5 b/txt/checksum.md5
index b91a5d368..1a646f26a 100644
--- a/txt/checksum.md5
+++ b/txt/checksum.md5
@@ -30,7 +30,7 @@ c7443613a0a2505b1faec931cee2a6ef lib/controller/handler.py
1e5532ede194ac9c083891c2f02bca93 lib/controller/__init__.py
8eb0a5dbd79bd58fedac4c0cc344246b lib/core/agent.py
fd8f239e259afaf5f24bcf34a0ad187f lib/core/bigarray.py
-6e73b39f7c51f75ae64a652dec69ab2f lib/core/common.py
+a69c59bec0b35442139d1c29f1b05797 lib/core/common.py
0d082da16c388b3445e656e0760fb582 lib/core/convert.py
9f87391b6a3395f7f50830b391264f27 lib/core/data.py
72016ea5c994a711a262fd64572a0fcd lib/core/datatype.py
@@ -50,7 +50,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
-021d606c9405fd23d630108bf5c39853 lib/core/settings.py
+e595397f965c89ed29d9b4b89aada743 lib/core/settings.py
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
815d1cf27f0f8738d81531e73149867d lib/core/target.py
diff --git a/txt/smalldict.txt b/txt/smalldict.txt
index 075a14e2c..7e153f7be 100644
--- a/txt/smalldict.txt
+++ b/txt/smalldict.txt
@@ -18,6 +18,7 @@
01011980
01012011
010203
+0123456789
06071992
098765
0987654321
@@ -69,6 +70,7 @@
12345678
123456789
1234567890
+12345678910
123456789a
123456789q
123456a
@@ -86,6 +88,7 @@
123asdf
123go
123qwe
+124578
12axzas21a
12qwaszx
1313
@@ -96,6 +99,7 @@
13579
1412
141414
+142536
1430
147147
147258
@@ -145,6 +149,7 @@
1994
1996
1a2b3c
+1a2b3c4d
1chris
1kitty
1p2o3i
@@ -172,6 +177,7 @@
2252
232323
242424
+246810
252525
256879
2kids
@@ -179,6 +185,7 @@
3112
3141
315475
+321321
333
3333
33333
@@ -198,6 +205,7 @@
444444
4444444
44444444
+456123
456789
4788
4815162342
@@ -228,6 +236,7 @@
6969
696969
69696969
+741852
741852963
753951
7654321
@@ -261,9 +270,11 @@
999999
9999999
99999999
+999999999
a
a12345
a123456
+a1234567
a1b2c3
a1b2c3d4
aa
@@ -280,6 +291,7 @@ abby
abc
abc123
ABC123
+abc12345
abcd
abcd123
abcd1234
@@ -288,6 +300,7 @@ abcdef
Abcdef
abcdefg
Abcdefg
+abcdefgh
abgrtyu
abigail
abm
@@ -330,11 +343,14 @@ agustin
ahl
ahm
airborne
+airforce
airoplane
+airplane
airwolf
ak
akf7d98s2
aki123
+alabama
alaska
albert
alberto
@@ -345,6 +361,7 @@ alex1
alexande
alexander
alexandr
+alexandra
alexis
Alexis
alfaro
@@ -373,18 +390,22 @@ altamira
althea
altima
altima1
+always
alyssa
+amadeus
amanda
amanda1
amateur
amazing
amber
+amelia
amelie
america
american
amigos
amour
ams
+amsterdam
amv
amy
anaconda
@@ -394,18 +415,23 @@ andre
andre1
andrea
andrea1
+andreas
+andres
andrew
andrew!
Andrew
andrew1
andrey
andromed
+andromeda
andy
angel
angel1
angela
angelica
+angelina
angelito
+angelo
angels
angie
angie1
@@ -432,6 +458,7 @@ apollo
apollo13
apple
apple1
+apple123
apple2
applepie
apples
@@ -495,6 +522,7 @@ asp
aspateso19
aspen
ass
+assassin
asshole
assman
assmunch
@@ -502,12 +530,17 @@ ast
asterix
ath
athena
+atlanta
+atlantis
attila
audiouser
+audrey
august
august07
aurelie
+aurora
austin
+australia
autumn
avalon
avatar
@@ -540,6 +573,7 @@ bambam
bambi
bamboo
banana
+bananas
bandit
bar
baraka
@@ -567,6 +601,7 @@ batman
batman1
baxter
bball
+bbbbbb
bc4j
beach
beaches
@@ -593,6 +628,7 @@ becca
beebop
beer
belgium
+believe
belize
bella
belle
@@ -604,8 +640,10 @@ benji
benny
benoit
benson
+bentley
beowulf
berenice
+berlin
bernard
bernardo
bernie
@@ -619,6 +657,7 @@ betito
betsy
betty
bharat
+bianca
bic
bichilora
bichon
@@ -658,6 +697,7 @@ birthday
bis
biscuit
bishop
+bismillah
Bismillah
bisounours
bitch
@@ -668,6 +708,7 @@ bitter
biv
bix
biz
+blabla
black
blackjack
blah
@@ -675,6 +716,7 @@ blahblah
blanche
blazer
blessed
+blessing
blewis
blinds
blink182
@@ -693,6 +735,7 @@ bluebird
blueeyes
bluefish
bluejean
+bluemoon
blues
bluesky
bmw
@@ -734,6 +777,7 @@ boston
Boston
boulder
bourbon
+bowling
boxer
boxers
bozo
@@ -744,9 +788,11 @@ brandi
brandon
brandon1
brandy
+brasil
braves
brazil
brenda
+brendan
brent
brewster
brian
@@ -757,6 +803,7 @@ brio_admin
britain
brittany
Broadway
+broken
broker
bronco
broncos
@@ -764,7 +811,10 @@ bronte
brooke
brooklyn
brother
+brothers
+brownie
bruce
+brucelee
brujita
bruno
brutus
@@ -801,6 +851,7 @@ buster
butch
butler
butter
+buttercup
butterfly
butthead
button
@@ -833,6 +884,7 @@ canada
cancer
candy
canela
+cannabis
cannon
cannondale
canon
@@ -857,18 +909,22 @@ caroline
carolyn
carrie
carrot
+carson
carter
cartman
cascade
casey
+casino
Casio
casper
+cassandra
cassie
castle
cat
catalina
catalog
catch22
+catdog
catfish
catherine
cathy
@@ -885,7 +941,9 @@ cdemoucb
cdouglas
ce
cecile
+cecilia
cedic
+celeste
celica
celine
celtic
@@ -922,6 +980,7 @@ charlie
Charlie
charlie1
charlotte
+charmed
chat
cheese
cheese1
@@ -935,12 +994,15 @@ chester
chester1
chevelle
chevy
+cheyenne
chiara
chicago
+chichi
chicken
chicken1
chico
chiefs
+children
china
chinacat
chinook
@@ -963,6 +1025,8 @@ christ1
christia
christian
christin
+christina
+christine
christmas
christoph
christopher
@@ -976,6 +1040,7 @@ cinder
cindy
cindy1
cinema
+cinnamon
circuit
cirque
cirrus
@@ -995,9 +1060,13 @@ claude
claudel
claudia
clave
+clayton
cleo
+cleopatra
clerk
cliff
+clifford
+clinton
clipper
clock
cloclo
@@ -1011,6 +1080,7 @@ cobra
cocacola
cock
coco
+coconut
codename
codeword
cody
@@ -1019,6 +1089,7 @@ coke
colette
colleen
college
+collins
color
colorado
colors
@@ -1066,9 +1137,11 @@ corvette
corwin
cosmo
cosmos
+cotton
cougar
Cougar
cougars
+counter
country
courier
courtney
@@ -1082,10 +1155,12 @@ craig
crawford
crazy
cream
+creation
creative
Creative
crescent
cricket
+crimson
cristian
cristina
cross
@@ -1146,6 +1221,7 @@ daisy
dakota
dale
dallas
+damien
dammit
damogran
dan
@@ -1156,6 +1232,7 @@ danger
daniel
Daniel
daniel1
+daniela
danielle
danny
dantheman
@@ -1165,6 +1242,7 @@ Darkman
darkness
darkside
darkstar
+darling
darren
darryl
darwin
@@ -1180,6 +1258,7 @@ dawn
daytek
dbsnmp
dbvision
+dddddd
dead
deadhead
dean
@@ -1192,6 +1271,7 @@ deedee
deeznuts
def
default
+defender
delano
delete
deliver
@@ -1214,6 +1294,8 @@ des
des2k
desert
design
+designer
+desire
deskjet
desktop
destiny
@@ -1227,6 +1309,7 @@ dexter
dharma
diablo
diamond
+diamonds
diana
diane
dianne
@@ -1239,6 +1322,8 @@ digital
dilbert
dillweed
dim
+dingdong
+dinosaur
dip
dipper
director
@@ -1246,6 +1331,7 @@ dirk
dirty
disco
discoverer_admin
+discovery
disney
dixie
dixon
@@ -1286,6 +1372,7 @@ doudou
doug
dougie
douglas
+download
downtown
dpfpass
draft
@@ -1299,6 +1386,7 @@ dreams
dreamweaver
driver
drowssap
+drpepper
drummer
dsgateway
dssys
@@ -1345,6 +1433,7 @@ einstein
ejb
ejsadmin
ejsadmin_password
+elaine
electric
element
elephant
@@ -1365,6 +1454,7 @@ e-mail
emerald
emily
eminem
+emmanuel
emmitt
emp
empire
@@ -1372,7 +1462,9 @@ enamorada
energy
eng
engage
+engineer
england
+english
eni
enigma
enjoy
@@ -1384,13 +1476,16 @@ eric1
erin
ernie1
erotic
+escape
escort
escort1
estefania
estelle
+esther
Esther
estore
estrella
+eternity
etoile
eugene
europe
@@ -1428,9 +1523,13 @@ farmer
farout
farside
fatboy
+fatcat
+father
+fatima
faust
fdsa
fearless
+february
feedback
felicidad
felipe
@@ -1446,14 +1545,17 @@ ferris
fiction
fidel
Figaro
+fighter
fii
files
finance
+finger
finprod
fiona
fire
fireball
firebird
+firefly
fireman
firenze
first
@@ -1477,6 +1579,7 @@ flight
flip
flipper
flm
+florence
florida
florida1
flower
@@ -1502,6 +1605,7 @@ ford
forest
forever
forever1
+forget
Fortune
forum
forward
@@ -1530,6 +1634,7 @@ frederic
free
freebird
freedom
+freedom1
freeman
freepass
freeuser
@@ -1554,6 +1659,7 @@ frogs
front242
Front242
frontier
+frosty
fte
ftp
fubar
@@ -1597,6 +1703,7 @@ games
gammaphi
gandalf
Gandalf
+gangster
garcia
garden
garfield
@@ -1605,6 +1712,7 @@ gargoyle
garlic
garnet
garou324
+garrett
garth
gary
gasman
@@ -1626,6 +1734,7 @@ gerald
german
germany
germany1
+geronimo
Geronimo
getout
gfhjkm
@@ -1641,6 +1750,7 @@ gilgamesh
gilles
ginger
Gingers
+giovanni
girl
girls
giselle
@@ -1651,6 +1761,7 @@ gl
glenn
glider1
global
+gloria
gma
gmd
gme
@@ -1666,6 +1777,8 @@ goaway
goblin
goblue
gocougs
+goddess
+godfather
godisgood
godiva
godslove
@@ -1674,9 +1787,11 @@ goethe
gofish
goforit
gold
+goldberg
golden
Golden
goldfish
+goldie
golf
golfer
gollum
@@ -1691,10 +1806,12 @@ google
goose
gopher
gordon
+gorilla
gpfd
gpld
gr
grace
+gracie
graham
gramps
grandma
@@ -1718,10 +1835,12 @@ greta
gretchen
Gretel
gretzky
+griffin
grizzly
groovy
grover
grumpy
+guardian
guess
guest
guido
@@ -1748,12 +1867,16 @@ hamilton
hamlet
hammer
Hammer
+hamster
+handsome
hank
hanna
hannah
+hannibal
hannover23
hansolo
hanson
+happiness
happy
happy1
happy123
@@ -1764,6 +1887,7 @@ harley
Harley
HARLEY
harley1
+harmony
haro
harold
harriet
@@ -1794,6 +1918,7 @@ helen
helena
helene
hell
+hellfire
hello
Hello
hello1
@@ -1810,6 +1935,7 @@ henry
Henry
hentai
herbert
+hercules
herman
hermes
hermosa
@@ -1833,8 +1959,10 @@ hockey
hockey1
hola
holiday
+holland
hollister1
holly
+hollywood
home
home123
homebrew
@@ -1858,6 +1986,7 @@ horse
horses
hosehead
hotdog
+hotmail
hotrod
hottie
house
@@ -1909,6 +2038,7 @@ igi
igs
iguana
igw
+ihateyou
ihavenopass
ikebanaa
iknowyoucanreadthis
@@ -1926,13 +2056,16 @@ imageuser
imagine
imc
imedia
+immortal
impact
impala
+imperial
imt
indian
indiana
indigo
indonesia
+inferno
infinity
info
informix
@@ -1965,6 +2098,7 @@ irmeli
ironman
isaac
isabel
+isabella
isabelle
isc
island
@@ -1998,6 +2132,7 @@ jan
jane
Janet
janice
+january
japan
jared
jasmin
@@ -2027,14 +2162,17 @@ jenny1
jensen
jer
jer2911
+jeremiah
jeremy
jericho
+jerome
jerry
Jersey
jesse
jesse1
jessica
Jessica
+jessica1
jessie
jester
jesus
@@ -2052,6 +2190,7 @@ jimbo
jimbob
jimi
jimmy
+jjjjjj
jkl123
jkm
jl
@@ -2059,6 +2198,7 @@ jmuser
joanie
joanna
Joanna
+joanne
joe
joel
joelle
@@ -2108,10 +2248,12 @@ julie
julie1
julien
juliet
+julius
jumanji
jumbo
jump
junebug
+jungle
junior
juniper
jupiter
@@ -2121,12 +2263,16 @@ justice
justice4
justin
justin1
+justine
juventus
+kaiser
kakaxaqwe
kakka
kalamazo
kali
+kamikaze
kangaroo
+karate
karen
karen1
karin
@@ -2142,6 +2288,7 @@ kathy
katie
Katie
katie1
+katrina
kawasaki
kayla
kcin
@@ -2165,6 +2312,7 @@ ketchup
kevin
kevin1
kevinn
+keyboard
khan
kidder
kids
@@ -2176,7 +2324,9 @@ kimberly
king
kingdom
kingfish
+kingkong
kings
+kingston
kirill
kirk
kissa2
@@ -2198,6 +2348,7 @@ koko
kombat
kramer
kris
+krishna
kristen
kristi
kristin
@@ -2206,6 +2357,7 @@ kristine
kwalker
l2ldemo
lab1
+labrador
labtec
lacrosse
laddie
@@ -2217,6 +2369,8 @@ lalala
lambda
lamer
lance
+lancelot
+lancer
larry
larry1
laser
@@ -2248,6 +2402,8 @@ lemon
leo
leon
leonard
+leonardo
+leopard
leslie
lestat
lester
@@ -2265,6 +2421,7 @@ library
life
lifehack
light
+lightning
lights
lima
lincoln
@@ -2298,6 +2455,7 @@ loki
lol123
lola
lolita
+lollipop
london
lonely
lonestar
@@ -2305,6 +2463,7 @@ longer
longhorn
looney
loren
+lorenzo
lori
lorna
lorraine
@@ -2316,6 +2475,7 @@ lotus
lou
louis
louise
+loulou
love
love123
lovelove
@@ -2327,6 +2487,7 @@ loverboy
lovers
loveyou
loveyou1
+loving
lucas
lucia
lucifer
@@ -2346,15 +2507,18 @@ macross
macse30
maddie
maddog
+madeline
Madeline
madison
madman
madmax
madoka
madonna
+madrid
maggie
magic
magic1
+magnolia
magnum
maiden
mail
@@ -2371,6 +2535,7 @@ mallorca
manag3r
manageme
manager
+manchester
manolito
manprod
manson
@@ -2388,6 +2553,9 @@ maria
maria1
mariah
mariah1
+marian
+mariana
+marianne
marie
marie1
marielle
@@ -2398,10 +2566,12 @@ mariner
marines
marino
mario
+marion
mariposa
mark
mark1
market
+markus
marlboro
marley
mars
@@ -2411,6 +2581,8 @@ martha
martin
martin1
martina
+martinez
+martini
marty
marvin
mary
@@ -2418,6 +2590,7 @@ maryjane
master
Master
master1
+masters
math
matrix
matt
@@ -2465,6 +2638,7 @@ mercedes
mercer
mercury
merde
+meredith
merlin
merlot
Merlot
@@ -2484,6 +2658,7 @@ miamor
michael
Michael
michael1
+michaela
michal
michel
Michel
@@ -2503,6 +2678,7 @@ midori
midvale
midway
migrate
+miguel
miguelangel
mikael
mike
@@ -2543,6 +2719,7 @@ mnbvcxz
mobile
mobydick
modem
+mohammed
moikka
mojo
mokito
@@ -2559,6 +2736,7 @@ money1
money159
mongola
monica
+monika
monique
monisima
monitor
@@ -2579,6 +2757,7 @@ mookie
moomoo
moon
moonbeam
+moonlight
moore
moose
mopar
@@ -2589,10 +2768,12 @@ morgan
moroni
morpheus
morris
+morrison
mort
mortimer
mot_de_passe
mother
+motherfucker
motor
motorola
mountain
@@ -2620,16 +2801,20 @@ munchkin
murphy
murray
muscle
+mushroom
music
mustang
mustang1
mwa
mxagent
+mylove
mypass
mypassword
mypc123
myriam
+myself
myspace1
+mystery
nadia
nadine
naked
@@ -2642,6 +2827,7 @@ napoleon
naruto
nascar
nat
+natalia
nataliag
natalie
natasha
@@ -2667,6 +2853,7 @@ nellie
nelson
nemesis
neotix_sys
+neptune
nermal
nesbit
nesbitt
@@ -2676,6 +2863,7 @@ network
neutrino
new
newaccount
+newcastle
newcourt
newlife
newpass
@@ -2695,11 +2883,13 @@ Nicholas
nichole
nick
nicklaus
+nicolas
nicole
nicole1
nigel
nigger
nigger1
+nightmare
nightshadow
nightwind
nike
@@ -2754,6 +2944,7 @@ oas_public
oatmeal
oaxaca
obiwan
+oblivion
obsession
ocean
ocitest
@@ -2775,6 +2966,7 @@ okb
okc
oke
oki
+oklahoma
oko
okr
oks
@@ -2798,6 +2990,7 @@ open
openspirit
openup
opera
+operator
opi
opus
oracache
@@ -2825,10 +3018,12 @@ ordplugins
ordsys
oregon
oreo
+original
orion
orlando
orville
oscar
+osiris
osm
osp22
ota
@@ -2836,8 +3031,10 @@ otalab
otter
ou812
OU812
+outlaw
outln
overkill
+overlord
owa
owa_public
owf_mgr
@@ -2848,6 +3045,7 @@ ozp
ozs
ozzy
pa
+pa55word
paagal
pacers
pacific
@@ -2865,6 +3063,7 @@ pamela
Pamela
pana
panama
+panasonic
pancake
panda
panda1
@@ -2874,6 +3073,7 @@ pantera
panther
panthers
panties
+panzer
papa
paper
papito
@@ -2894,9 +3094,11 @@ pass
pass1
pass12
pass123
+pass1234
passion
passport
passw0rd
+Passw0rd
passwd
passwo1
passwo2
@@ -2908,13 +3110,16 @@ password.
Password
PASSWORD
password1
+Password1
password12
password123
password2
password3
+passwort
pastor
pat
patches
+patience
patoclero
patricia
patrick
@@ -2937,10 +3142,12 @@ peanuts
Peanuts
pearl
pearljam
+pebbles
pedro
pedro1
peekaboo
peewee
+pegasus
peggy
pekka
pelirroja
@@ -2966,6 +3173,7 @@ perlita
perros
perry
person
+personal
perstat
petalo
pete
@@ -2981,9 +3189,11 @@ phialpha
phil
philip
philips
+phillip
phillips
phish
phishy
+phoebe
phoenix
Phoenix
phoenix1
@@ -3006,6 +3216,8 @@ pigeon
piglet
Piglet
pimpin
+pineapple
+pingpong
pink
pinkfloyd
piolin
@@ -3026,6 +3238,7 @@ play
playboy
player
players
+playstation
please
plex
plus
@@ -3039,6 +3252,7 @@ po8
poa
poetic
poetry
+poison
poiuyt
pokemon
polar
@@ -3083,11 +3297,16 @@ portal_demo
portal_sso_ps
porter
portland
+portugal
pos
+potato
+potter
power
powercartuser
+powers
ppp
PPP
+pppppp
praise
prayer
precious
@@ -3105,8 +3324,10 @@ princess
Princess
princess1
print
+printer
printing
private
+prodigy
prof
prometheus
property
@@ -3133,6 +3354,7 @@ Purple
pussies
pussy
pussy1
+pussycat
pv
pw123
pyramid
@@ -3235,6 +3457,7 @@ razz
re
reality
realmadrid
+reaper
rebecca
Rebecca
red
@@ -3242,6 +3465,7 @@ red123
redcloud
reddog
redfish
+redhead
redman
redrum
redskins
@@ -3252,6 +3476,7 @@ redwood
reed
reggae
reggie
+regina
rejoice
reliant
remember
@@ -3306,24 +3531,29 @@ roberto
roberts
robin
robinhood
+robinson
robocop
robotech
robotics
roche
rock
+rocker
rocket
rocket1
rockie
rocknroll
rockon
+rockstar
rocky
rocky1
rodeo
+rodney
roger
roger1
rogers
roland
rolex
+roller
rolltide
roman
romantico
@@ -3332,6 +3562,7 @@ ronald
ronaldo
roni
ronica
+ronnie
rookie
rooster
root123
@@ -3340,6 +3571,7 @@ rootroot
rosario
rose
rosebud
+rosemary
roses
rosie
rosita
@@ -3385,6 +3617,7 @@ sally
salmon
salou25
salut
+salvador
salvation
sam
samantha
@@ -3401,6 +3634,7 @@ samson
samsung
samuel
samuel22
+samurai
sandi
sandman
sandra
@@ -3425,6 +3659,7 @@ saturn
Saturn
saturn5
savage
+savannah
sbdc
scarecrow
scarface
@@ -3471,6 +3706,7 @@ september
septiembre
serega
serena
+serenity
sergei
sergey
sergio
@@ -3492,6 +3728,7 @@ Shadow
shadow1
shaggy
shalom
+shamrock
shanghai
shannon
shanny
@@ -3513,6 +3750,7 @@ shelley
shelly
shelter
shelves
+sherlock
sherry
ship
shirley
@@ -3520,11 +3758,13 @@ shit
shithead
shoes
shogun
+shopping
shorty
shorty1
shotgun
Sidekick
sidney
+siemens
sierra
Sierra
sigmachi
@@ -3532,9 +3772,11 @@ signal
signature
si_informtn_schema
silver
+silvia
simba
simba1
simon
+simone
simple
simpson
simpsons
@@ -3542,10 +3784,13 @@ simsim
sinatra
sinegra
singer
+single
sirius
+sister
sister12
siteminder
skate
+skater
skeeter
Skeeter
skibum
@@ -3555,6 +3800,7 @@ skip
skipper
skipper1
skippy
+skittles
skull
skunk
skydive
@@ -3607,10 +3853,13 @@ sober1
soccer
soccer1
soccer2
+socrates
softball
+software
soledad
soleil
solomon
+something
sonic
sonics
sonny
@@ -3624,13 +3873,16 @@ soyhermosa
space
spain
spanky
+sparkle
sparks
sparky
Sparky
sparrow
spartan
spazz
+speaker
special
+spectrum
speedo
speedy
Speedy
@@ -3658,6 +3910,7 @@ spurs
sql
sqlexec
squash
+squirrel
squirt
srinivas
ssp
@@ -3666,10 +3919,14 @@ ssssss
stacey
stalker
stan
+standard
stanley
star
star69
starbuck
+starcraft
+stardust
+starfish
stargate
starlight
stars
@@ -3682,6 +3939,7 @@ stealth
steel
steele
steelers
+stefan
stella
steph
steph1
@@ -3689,6 +3947,7 @@ stephani
stephanie
stephen
stephi
+sterling
Sterling
steve
steve1
@@ -3706,6 +3965,7 @@ stinky
stivers
stocks
stone
+stones
storage
storm
stormy
@@ -3714,7 +3974,9 @@ strat
strato
strat_passwd
strawberry
+street
stretch
+strike
strong
stuart
stud
@@ -3731,6 +3993,7 @@ suckme
sudoku
sue
sugar
+sullivan
sultan
summer
Summer
@@ -3776,6 +4039,7 @@ svetlana
swanson
sweden
sweet
+sweetheart
sweetie
sweetpea
sweety
@@ -3789,6 +4053,7 @@ swordfish
swpro
swuser
sydney
+sylvester
sylvia
sylvie
symbol
@@ -3845,6 +4110,7 @@ teflon
tekila
telecom
telefono
+telephone
temp
temp!
temp123
@@ -3858,6 +4124,7 @@ tequiero
tequila
teresa
terminal
+terminator
terry
terry1
test
@@ -3874,6 +4141,7 @@ testpilot
testtest
test_user
texas
+thailand
thankyou
the
theatre
@@ -3884,6 +4152,7 @@ thejudge
theking
thelorax
theman
+theodore
theresa
Theresa
therock
@@ -3934,8 +4203,10 @@ toby
today
tokyo
tom
+tomato
tomcat
tommy
+tomtom
tony
tool
tootsie
@@ -3970,6 +4241,8 @@ trevor
tricia
tricky
trident
+trigger
+trinidad
trinity
trish
tristan
@@ -3977,11 +4250,13 @@ triton
trixie
trojan
trombone
+trooper
trophy
trouble
trout
truck
trucker
+truelove
truman
trumpet
trustno1
@@ -3996,10 +4271,13 @@ turbine
turbo
turbo2
turkey
+turner
turtle
tweety
tweety1
+twilight
twins
+twister
twitter
tybnoq
tyler
@@ -4008,12 +4286,15 @@ ultimate
um_admin
um_client
undead
+undertaker
underworld
unicorn
unicornio
unique
united
unity
+universal
+universe
universidad
unix
unknown
@@ -4038,6 +4319,7 @@ vacation
vader
vagina
val
+valencia
valentin
valentina
valentinchoque
@@ -4088,12 +4370,14 @@ viper
viper1
virago
virgil
+virgin
virginia
virus
viruser
visa
vision
visual
+vivian
vladimir
volcano
volley
@@ -4107,6 +4391,7 @@ waiting
walden
waldo
walker
+wallace
walleye
wally
walter
@@ -4117,6 +4402,7 @@ warner
warren
warrior
warriors
+washington
water
water1
Waterloo
@@ -4134,9 +4420,11 @@ Webster
wedge
weezer
welcome
+welcome1
welcome123
wendy
wendy1
+werewolf
wesley
west
western
@@ -4153,6 +4441,7 @@ whitney
whocares
whoville
wibble
+wicked
wiesenhof
wilbur
wildcat
@@ -4208,12 +4497,14 @@ Woodrow
woody
woofwoof
word
+wordpass
work123
world
World
worship
wps
wrangler
+wrestling
wright
writer
writing