forked from TheKingOfDuck/fuzzDicts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvars.txt
21939 lines (21938 loc) · 256 KB
/
vars.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
action
zbloglang
zblogstep
hasMysql
hasSqlite
hasPgsql
isInstallFlag
cts
servers
hasError
CheckResult
pv
info
pdo
v
networkTest
s
o
sql
mem
guid
cate
t
a
option
key
q
miscType
die
disableResult
hint
install
strXML
strSingle
strAll
array
arrayaskey
w
article
description
mt_excerpt
mt_text_more
xml
post
b
catename
upload
f
xmlstring
fpreturn
method
username
password
blogtitle
tagid
tag
memberid
member
admin_action_add
admin_function
tz
ispage
idElement
cateid
p
modid
mod
islock
ishide
GLOBALSasn
n
iswarning
errno
isstrict
isdisable
islogerror
zbe
error
_zbe
_isdisable
error_id
error_file
error_line
errarray
name
fpsignal
aFile
sData
result
lowerErrorReason
errorId
errorMessage
moreHelp
zbpvers
throwException
m
u
un
ps
sd
sdt
addinfo
token
secure
articles
count
auth
date
tags
search
list
at
category
arysubcate
author
datetime
datetitle
ta
select
order
listask
uri_array
_GET
_REQUEST
url
rss2
page
pagebar
i
realurl
r
fpargs
type
articles_top
template
cateId
isrewrite
authId
dateregex_ymd
dateregex_ym
datetime_txt
tagId
articles_top_notorder
limit
id
alias
object
enableRewrite
comments
rootid
comments2
floorid
comment
pre_author
pre_tag
pre_category
pre_istop
pre_status
orig_id
pre_arrayTag
now_arrayTag
pre_array
now_array
del_array
add_array
del_string
add_string
tagnamestring
value
c
taskey
d
isAjax
returnJson
returnCommentWhiteList
replyid
cmt
commentHtml
ischecking
orig_check
childArray
arrayasi
childArrayasi
parentid
data
editableField
uploads
fn
_FILESaskey
temp_arr
file_ext
d1
d2
app
arrayhas
apps
dependList
depend
oldtheme
s1
s2
s3
s4
s5
_POSTaskey
usePC
l
Punycode
lang
addplus
delplus
varname
allplus
chkplus
plus
num
articleid
member_Articles
member_Pages
member_Comments
member_Uploads
level
webServer
className
fileName
handle
isOutput
rt
ajax
system_environment
default
g
host
x
y
z
cookiesPath
dirs
dir
file
files
sortname
status
codes
md5
etag
queries
perms
pl
apl
strError
para
source
class
html
opentags
closetags
len_opened
sc
ot
ret
str_length
temp_str
ascnum
j
charset
timezones
obj
time
wt
args
sha
flag
fieldName
methods
referer
ids
defaultCSP
defaultCSPaskey
sbin
len
objects
flags
new_url
keys
strip
parsed_string
mtime
xfl
os
headerlen
extralen
extra
filenamelen
filename
commentlen
headercrc
calccrc
datacrc
isize
bodylen
body
array1askey
all_comments
xmlrpc_address
current_member
current_version
all_articles
all_pages
all_categories
all_views
all_tags
all_members
current_theme
current_style
match
pi
ca
caaskey
badfilter
badfilteraskey
valueaskey2
pu
aaskey
topmenus
leftmenus
strTarget
strId
strTitle
AdminTopMenuCount
tmp
strLiId
AdminLeftMenuCount
testRegExp
tzaskey
echoStatistic
or
op
tables
tableths
tabletds
tableHeaders
allthemes
sm
um
tm
pm
allplugins
plugins
decodedBlogHost
zbp
varask
var
_POST
op_users
file_base
aps
SubCategories
SubCategorys
ChildrenCategories
backAttr
path
content
appver
ext
ae
e
ad
ac
db
dbclass
where
selectaskey
_explort_db
comma
keyvalueask
_prev
_next
toptype
_avatar
_isgod
am
wt_id
day
table
datainfo
kvdata
itemName
kv
Rules
Url
PreUrl
MakeReplace
IsIndex
categoryLayer
fullcategory
extList
Metas
classname
hasmetas
id_field
field_table
field_name
keyvalue
id_name
IsThrow
FloorID
parentComment
List
Ready
fdate
ldate
arraydate
fullDate
urls
maxli
arraydateaskey
meta
baskey
array2
authors
allinfo
all_artiles
all_categorys
_zbp
version
langpacklist
cookiespath
currenturl
fullcurrenturl
usersdir
verifyCodeUrl
validcodeurl
feedurl
searchurl
ajaxurl
xmlrpcurl
members
membersbyname
categorys
categories
categorysbyorder
categoriesbyorder
modules
modulesbyfilename
configs
tagsbyname
posts
title
subname
theme
themeinfo
style
user
cache
posttype
actions
isinitialized
isconnected
isload
issession
ismanage
isGzip
isHttps
socialcomment
header
footer
activedapps
managecount
pagebarcount
searchcount
displaycount
commentdisplaycount
csrfExpiration
newtype
oldZone
oldLang
parsedHost
valueask2
prvConfigList
onlysystemoption
cache_hash
new_hash
md5pw
originalpw
lv0
lv1
lv2
lv3
filesassortname
allThemes
allPlugins
ap
languagePath
languageRegEx
languageList
language
languagePtr
defaultLanguageList
onlycheck
forcebuild
readtags
hasType
whereaskey
key2
value2
tagstring
objectaskey
val
cacheObject
attr
arrayask
like
email
articles_top_notorder_idarray
nowkey
nowkey2
userString
tokenString
_vc
verifyCode
original
typetype
signal
hint1
hint2
hint3
hint4
hint5
line
errorCode
errorText
host2
categoryType
tagType
urlRule
typeId
ps_path_hash
xss
m_AllowAttr
m_AllowTag
AllowTag
nodeList
node
link
href
networktype
network_list
curl
fsockopen
file_get_contents
_network
extension
network
Count
PageBarCount
PageCount
PageAll
PageNow
PageFirst
PageLast
PagePrevious
PageNext
UrlRule
buttons
prevbutton
nextbutton
Buttons
PrevButton
NextButton
isIndex
entryPage
uncompiledCodeStore
templates
compiledTemplates
templateTags
staticTags
sidebar
sidebar2
sidebar3
sidebar4
sidebar5
verify
matches
ifexp
exp
code
ak
av
sask
ms
k
optionask
checkedkey
checked
nameid
namevalue
nameclass
namecheckboxstyle
change
onchange
height
encodeTable
decodeTable
encoding
input
parts
length
part
output
codePoints
bias
delta
h
out
pos
outputLength
inputLength
oldi
digit
char
fingerprint
useFingerprint
textColor
backgroundColor
contents
phrase
distortion
maxFrontLines
maxBehindLines
maxAngle
maxOffset
interpolation
ignoreAllEffects
codelen
width
fontsize
interpolate
_len
tcol
Xa
Ya
Xb
Yb
size
box
textWidth
textHeight
col
angle
offset
image
bg
color
square
effects
X
Y
phase
scale
Vx
Vy
Vn
Vn2
nX
nY
quality
cx
cy
m0
m1
L
H
_data
dataaskey
dbpre
dbname
db_link
query
results
row
seq
dbengine
myver
results2
explain
options
readyState
responseBody
responseStream
responseText
responseXML
statusText
responseVersion
postdata
httpheader
responseHeader
parsed_url
timeout
errstr
isgzip
maxredirs
canreinit
__isBinary
__boundary
bstrUser
bstrPassword
varBody
socket
append
mime
return
finfo
boundary
dechunk
chunkLenHex
chunkLen
hex
dec
ch
header_size
entity
bstrUrl
http_response_header
_sql
columns
join
orderBy
groupBy
having
index
methodKeyword
selectFunctionKeyword
otherKeyword
param
upperKeyword
arguaskey
arg
lowerKeyword
nums
orderaskey
callableMethod
tableData
tableasindex
selectStr
originalWhere
whereKeyword
whereData
whereasindex
eq
sqlArray
valueasx
searchCount
sqlSearch
symbol
sqlMeta
orderByData
groupByData
updateData
escapedValue
keyData
valueData
sqlAll
idname
dbnameANDTABLE_NAME
engine
myengtype
indexname
indexfield
indexfieldaskey
createData
cpLogin
cpVrs
post_data
aFileasiInt
iInt
fileContent
commentsaskey
numberOfDays
dayOfWeek
lastDayOfWeek
dayOfWeekColspan
lastDayOfWeekColspan
weekCounter
Totoro
act
functionName
score
regex
string
type_valueasname
config_name
type_name
utf8_gb2312
utf8_big5
str_return
single
temp
ary
config_array
sv
config_save
config_value
black_list
tmp_list
low_name
func
build
replace_str
replace_list
badword_list
replace_reg
ip
ip_str
ip_begin
ip_end
FILTERIP
logid
cmtid
foundComment
str
urltarget
str_sbc
str_ori
ary_hxw
ary_ori
level_max
LEVEL_MINUS
SV
percent
checkbegin
nowxml
full
newversion
nowbuild
newbuild
newcrc32
md5_r
md5_n
ar
appcentre_verified
last
postdate
http_post
shopun
shopps
appid
pu_key
encrypted
throwerror
verifyHash
cookies
userAgent
rsaPublicKey
aesKey
aesIv
encryptedAesKey
licensePath
stringifierData
encryptedText
sendData
returnData
hash
encryptedData
decryptedText
textLength
padding
items
mt
ft
app2
check
testhttps
crc
AppCentre_dirs
AppCentre_files
tmp_name
ua
ur
default_tab
upload_dir
upload_path
output_js
array_config
array_configaskey
base64
config
up
item
upload_allow
max_size
CONFIG
stateMap
dirname
base64Data
img
imgUrl
heads
fileType
context
format
oriName
randNum
1center
1markers
1zoom
en
strlayout
strBodyBg
strHdBg
strColor
aryBodyBg
aryHdBg
aryColor
strBodyBgsize
strHdBgsize
sLeft
sRight
strContent
sbg
shg
strl
strb
strh
strc
Pad_List
UA
percolors
app_status
iframe
cache_var
controller
filepath
mypath
identification
SEO
_userid
member_db
memberinfo
steps
step
siteurl
mode
license
PHP_GD
PHP_JSON
PHP_FSOCKOPEN
PHP_DNS
is_right
selectmod
testdata
install_phpsso
needmod
reg_sso_status
reg_sso_succ
sso_url
phpsso_auth_key
remote_url
remote_var
returnid
reg_sso
chmod_file
selectmods
filesas_k
is_dir
cname
write_able
is_writable
no_writablefile
database
PHP_SELF
rootpath
module
cookie_pre
auth_key
sys_config
db_config
dbfile
password_arr
encrypt
ssourl
sso_tablepre
sys_sso_config
sso_config
sso_db_config
applist
install_module
default_db
dbcharset
tablepre
server_info
chars
s_tablepre
sqls
r_tablepre
queriesarray
str1
writeable
fp