forked from sqlmapproject/sqlmap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommon-tables.txt
3368 lines (3353 loc) · 41 KB
/
common-tables.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
# Copyright (c) 2006-2013 sqlmap developers (http://sqlmap.org/)
# See the file 'doc/COPYING' for copying permission
users
customer
user
orders
employee
x_world
category
project
account
customers
country
config
groups
inventory
department
categories
messages
person
comments
sessions
student
items
employees
language
accounts
product
CUSTOMER
faculty
location
item
authors
parts
members
countries
status
menu
dependent
modules
role
products
page
chart
task
posts
DEPT
Person
user_role
ORDERS
emp
album
EMP
log
INVENTORY
payments
part
permission
contact
borrower
report
color
admin
SALGRADE
PRODUCT
vendor
tax
branch
projects
data
course
jobs
watchlist
shipment_line
CATEGORY
categoryNames
attributeCategory
db
PS_DMK
study
event
invoice
order_source
topics
students
order_line
regions
CPG_config
news
dept
permissions
events
shipment
sections
ITEM
hosts
form_definition_version
alias
people
role_permission
applications
CPG_usergroups
image
organization
courses
loan
form_definition
configuration
hibernate_unique_key
order
form_error
payment
Author
history
task_param
movies
dept_locations
track
services
EMPLOYEE
works_on
patient
Student
form_data
setting
PUBLISHER
partsgroup
languages
depositor
CPG_categories
book
Orders
job_history
metadata
exchangerate
shipto
rcpt
team
address
tasks
queue_info
subscribers
city
field_options
locations
statename
BOOK
zuseserver
ap
ar
Employees
USER
userInfo
telephone
session
User
video
LOCATION
tf_links
ACCOUNT
artist
property
the
request
acc_trans
lending
postaladdress
Customers
xmldocument
jiveID
domain
promotion
CPG_filetypes
assembly
business
orderitems
locale
gl
links
located
identities
sizes
companies
payload
Organization
protocol
transfers
encompasses
borders
profiles
salesorder
mailbox
contacts
tables_priv
admin_logs
text
phpbb_config
plugin
stores
host
Book
gifi
user_groups
term
internetaddress
tf_settings
region
poll
makemodel
partstax
catalog
question
vendors
departments
notes
delivery_quality
queries
identification
friends
vcd_Screenshots
PERSON
course_section
vcd_PornCategories
pma_history
jiveRemoteServerConf
channels
object
chip_layout
osc_products_options_values_to_products_options
login
user_newtalk
vcd_MetaDataTypes
entrants
Device
imageInfo
developers
div_experiment
items_template
defaults
osc_products
vcd_MetaData
mucRoomProp
QRTZ_JOB_DETAILS
settings
pma_bookmark
DEPENDENT
imageCategoryList
islandIn
mobile_menu_text
jiveUserProp
osc_products_options_values
wp_posts
package
mucRoom
vendortax
vcd_Comments
attrs
config_seq
company
register
checksum_results
ENROLLMENT
operation
primarytest
vcd_CoverTypes
binaries
COURSE_SECTION
Students
func
enrollment
pma_table_coords
readers
action_element
vcd_VcdToPornstars
osc_categories_description
friend_statuses
Domain
servers
UserFields
revision
meals
resources
mixins
sys_options_cats
licenses
pma_relation
SIGNON
clients
Apply
vcd_CoversAllowedOnMediatypes
ThumbnailKeyword
form_definition_text
vcd_Log
system
jiveOffline
tickers
BANNERDATA
mucAffiliation
fk_test_has_pk
rooms
objectcache
collection_item_count
div_stock_parent
jiveRoster
Volume
lookup
investigator
math
jivePrivate
vcd_UserWishList
osc_manufacturers_info
primarytest2
PROFILE
categories_posts
Flight
Gallery
scripts
AUTHOR
physician
client
cv_country_synonyms
osc_categories
interwiki
logtest
archive
members_networks
vcd_MovieCategories
language_text
UserType
friend
div_annotation_type
osc_products_description
osc_products_to_categories
QRTZ_PAUSED_TRIGGER_GRPS
article
recentchanges
vcd_UserLoans
media
vcd_SourceSites
conducts
sales
CurrentUsers
Country
vcd_IMDB
vcd_Borrowers
querycache
Publication
Pilot
div_stock
Regions
DEPT_LOCATIONS
vcd_Users
master_table
vcd_VcdToUsers
funny_jokes
jos_vm_payment_method
vcd_UserProperties
osc_products_images
specialty
pma_pdf_pages
visits
div_allele_assay
vcd_MediaTypes
ipblocks
WidgetPrices
form_definition_version_text
experiment
Publisher
control
protocol_action
jivePrivacyList
vcd_VcdToPornStudios
subImageInfo
plugin_sid
message_statuses
state
GalleryThumb
hitcounter
vcd_Pornstars
QRTZ_BLOB_TRIGGERS
div_generation
jiveGroupProp
ingredients
community_item_count
jiveExtComponentConf
SEQUENCE
Continent
rights
div_statistic_type
Path
osc_manufacturers
logging
colnametests
QRTZ_FIRED_TRIGGERS
div_locality
sailors
Description
warehouse
DEPARTMENT
legacy_things
jiveVCard
agent
CPG_bridge
CUSTOMERS
jiveProperty
app_user
keyboards
div_unit_of_measure
categorylinks
grants
Action
div_trait
div_trait_uom
WidgetReferences
product_type
developers_projects
userAttribute
vcd_Sessions
form_data_archive
vcd_PornStudios
action_attribute
Thumbnail
jiveGroupUser
computers
QRTZ_LOCKS
vcd_PropertiesToUser
customertax
sector
networks
columns_priv
globals
div_obs_unit_sample
Widgets
TERM
salgrade
div_passport
vcd_UserRoles
mucMember
imagelinks
exchange
Status
WORKS_ON
lines
booleantests
QRTZ_SIMPLE_TRIGGERS
mobile_menu
staff
vcd_VcdToPornCategories
tblusers
hashes
partner
Product
personnel
ads
vcd_Covers
osc_specials
Keyword
supplier
agent_specialty
pokes
profile_pictures
oldimage
div_poly_type
osc_products_attributes_download
div_allele
isMember
vcd_Images
userImageRating
detail_table
osc_products_attributes
pma_table_info
officer
div_obs_unit
vcd_Settings
COURSE
Time
locatedOn
medicalprocedure
fk_test_has_fk
mergesWith
author
UserFieldsInfo
Employee
oe
QRTZ_TRIGGERS
insurance
SUPPLIER
div_aa_annotation
song
imageAttribute
views_track
extremes
vcd_VcdToSources
jiveRosterGroups
webcal_config
phpbb_ranks
triggers_template
appVersions
vcd_RssFeeds
DUMMY
ROLE
activity
study_text
osc_products_options
City
QRTZ_SCHEDULER_STATE
osc_reviews
edge
questions
partof
blobs
QRTZ_CRON_TRIGGERS
tag
userSession
vcd
pma_column_info
auto_id_tests
job
site_stats
mucConversationLog
sequence
madewith
OperationStatus
SPJ
turizmi_ge
zutat_cocktail
DWE_Internal_WF_Attributes
zipcodes
insertids
ChemList
product_category
foreigntest2
hero
cmContentVersionDigitalAsset
reports
devel_logsql
f_sequence
MEMBER
ClassificationScheme
ez_webstats_conf
credential
utilise
cmDigitalAsset
ACL_table
service_request_log
feedback
vars
tblblogentriescategories
assignment
CUST_HIST
ew_menu
time_zone_transition_type
child_configs
LIBRARY_BRANCH
Company
Component
webcal_entry_log
transactions
webcal_entry_ext_user
dept_location
ConsultantsTable
phonelist
sys_acl_actions
participate
population
dtb_order
files_config
PropColumnMap
result
pma_designer_coords
triggers
audittrail
f_attributedependencies
organization_type_package_map
DWE_Corr_Sets
userlist
backgroundJob_table
sf_guard_user_permission
my_lake
DWE_Corr_Tokens
sampleData
qrtz_blob_triggers
reciprocal_partnersites
rss_categories
ADMIN
site_map_ge
Factory_Output
geo_Estuary
phpbb_themes
forum
ClientsTable
mushroom_trainset
rating_track
iplinks
maxcodevento
reciprocal_admin
ew_moduli
CheckType
cmLanguage
phpbb_points_config
guava_sysmodules
querycachetwo
soc_da_polit_ge
BOOK_AUTHORS
records
reciprocal_config
newsletter_queue
passwds
phpbb_posts_text
biosample
connectorassocs
BOOK_COPIES
jos_sections
vote
SCRIPT
THOT_CATEGORY
artifact
object_types
pages
usuario
CE_table
phpbb_forums
tbl_country
Products
dtb_bat_order_daily
site_wtype
geo_mountain
expression
Simple_Response
photoo
photos
child_config_traffic_selector
version_data
allocation
dtb_category_total_count
habilidad
PREFIX_group_lang
work_orders
SELLER
cv_soil
taxon
bkp_ItemResource
ezcontentobject_trash
webcal_view
pagecontent
Collection
maxcodcurso
self_government_ge
phpbb_user_group
InstanceStringTable
bldg_types
t1
mailaddresses
section
m_type
configlist
cmRepositoryContentTypeDefinition
trade
Parameter
jforum_privmsgs
tbl_works_categories
help_category
bkp_String
Class_Display_Sequence
EPIXEIRISI
sounds
phpbb_groups
dtb_campaign
produit
adblocks
vendor_seq
guava_theme_modules
dtb_pagelayout
bookings
cmPublicationDetail
writes
writer
distance
DWE_Resource_Attributes
jforum_groups
Polynomial
river
GROUP
sea
IDIOTIS
cmPublication
last
UsageParameter
phpbb_topics
t_peep
PREFIX_group
dtb_delivfee
equipment_type_seq
wp_users
news_category
SchemaInfo
WidgetDescriptions
dtb_category_count
sidebar
R1Weights
humanitaruli_ge
cmTransactionHistory
facets
jforum_roles
samedicino_ge
qrtz_job_listeners
geo_Lake
religion
nuke_gallery_media_class
cia
DatabaseInfo
R2TF
THOT_THEME
R1Length
cmContentRelation
S2ODTMAP
enrolled
liste_domaines
DEMO_PROJECTS
ORDERSTATUS
site_iwis
MountainOnIsland
bkp_ItemReference
Category
Mountain
INSTITUTE
POINT
forum_vote
THOT_TYPE
cmts_track
bkp_ItemReplication
hostbenchmarks
filearchive
f_spatialcontext
UM_ROLE_ATTRIBUTES
SCALE
maclinks
books
DWE_Predecessors
interactions
graphs_items
stars
BID
enrolls
site_environment
user_types
Severity
partscustomer
wp_pod_types
River
marital_status
PZ
PN
email
CustomerCards
mtb_zip
Campus
R1Size
hardware
dtb_other_deliv
pricegroup
commissionEmployees
cv_pests_diseases
tbl_tech
macswitches
cc_config
audit
colour
command
audio
egresado
aggtest
transport
zusti_da_sabuneb_ge
div_scoring_tech_type
R2Weights
schedule
routers
zips
DWE_Delay_Timers
Descriptions
software
wh_der_children
delivery
placex
cv_crops
problem
Station_Data
account_transaction
time_zone_name
numedia
THOT_DEEP
ZENTRACK_VARFIELD_IDX
roads_endpoints
Propdesc_table
general_log
peer_configs
hot_prop
phones
ServiceBinding
emailinfo
dtb_member
cmSiteNode
nodes
sbreciprocal_cats
rss_read
DWE_Workflow_Documents
bombing
tblblogtrackbacks
fragment
dtb_review
tblblogsearchstats
datasources
CPG_users
vrls_partners
guava_roles
webcal_user_layers
ANSWER_GROUP_DETAIL
tbl_clients
dtb_kiyaku
EmailAddress
Sea
powers
QRTZ_CALENDARS
reserve
LINEITEM
project_user_xref
Agent
idioma
dtb_campaign_detail
jos_components
user_rights
tf_messages
Class_Def_Table
geo_lake
copytest
tissue
ligneDeFacture
PZ_Data
tf_cookies
archtypes
cmts
photo
dtb_bloc
user_preferences
music_ge
D_Abbreviation
data_set_association
site_location
jforum_posts
Property
pg_ts_dict
badspy
gearing
credenziali
abstract
evidence
files
test
intUsers
div_treatment
tblblogentries
cocktail_person
cdv_curated_allele
REORDER
Religion
turns
MetadataValue
curso
redirect
accountuser
qrtz_cron_triggers
StateType
forum_user_stat
Descriptions_Languages
m_users_profile
Booked_On
not_null_with_default_test
tblblogroles
organizations
topic
economy
DWE_Org_Resources
Model
maxcodcorreo
RATING
Transactions
Chemicals
m_data
USER_GROUP
equipment_type
geo_Island
sysmaps
ezin_roles
phpbb_themes_name
dtb_send_history
dtb_send_customer
cart
size
pg_ts_cfgmap
LimitTest2
QUESTION
DC_Data
webcal_group_user
telefono
builds
tbluserroles
webcal_site_extras
solde
document
m_users_acct
vendor_types
fruit
DWE_Resources
Service
PART
cell_line
dtb_bat_order_daily_age
images
apartments
THOT_ALPHA
ippaths
area
SYNALLAGI
sysmaps_hosts
tbl_works
statuses
webcal_user
customurl
THOT_YEAR
DWE_Subscriptions
correo
kultura_ge
Factory_Master
inv_lines_seq
certificates
webcal_asst
ostypes
POINT_SET
R2IDF
forum_flag
bugs
taxonomy
UM_ROLES
div_synonym
payer
tf_log
job_title
ask
wp_options
forum_user_activity
trackbacks
wp_pod_fields
cmAvailableServiceBindingSiteNodeTypeDefinition
translation
cdv_passport_group
User_
Users
access_control
my_county
zoph_people
account_permissions
ORDERLINES
ganatlebe_ge
wp_term_relationships
pictures
product_font
Departure
mushroom_test_results
routerbenchmarks
bkp_Item
Channel_Data
realtable
mushroom_NBC_class
odetails
user_type_link
eco_da_biz_ge
belong
ezin_users
time_zone_transition
ew_tabelle
ezsearch_return_count_new
cmSystemUserRole
m_users
div_accession_collecting
Economy
tbl_works_clients
qrtz_locks
geo_Mountain
dtb_category
tmp
reservation
geo_Desert
dtb_payment
forum_topic
ezsearch_search_phrase_new
jforum_attach
sazog_urtiertoba_ge
Equipment