File tree Expand file tree Collapse file tree 3 files changed +62
-3
lines changed Expand file tree Collapse file tree 3 files changed +62
-3
lines changed Original file line number Diff line number Diff line change @@ -488,6 +488,44 @@ pma_relation
488
488
pma_table_coords
489
489
pma_table_info
490
490
491
+ # Wordpress
492
+ wp_users
493
+ wp_posts
494
+ wp_comments
495
+ wp_options
496
+ wp_postmeta
497
+ wp_terms
498
+ wp_term_taxonomy
499
+ wp_term_relationships
500
+ wp_links
501
+ wp_commentmeta
502
+
503
+ # WooCommerce
504
+ wp_woocommerce_sessions
505
+ wp_woocommerce_api_keys
506
+ wp_woocommerce_attribute_taxonomies
507
+
508
+ # Magento
509
+ catalog_product_entity
510
+ sales_order
511
+ sales_order_item
512
+ customer_entity
513
+ quote
514
+
515
+ # Drupal
516
+ node
517
+ users
518
+ field_data_body
519
+ field_revision_body
520
+ taxonomy_term_data
521
+ taxonomy_vocabulary
522
+
523
+ # Joomla
524
+ joomla_users
525
+ joomla_content
526
+ joomla_categories
527
+ joomla_modules
528
+
491
529
# PostgreSQL
492
530
pg_aggregate
493
531
pg_am
@@ -501,6 +539,8 @@ pg_cast
501
539
pg_class
502
540
pg_constraint
503
541
pg_conversion
542
+ pg_cron_job
543
+ pg_cron_job_run_detail
504
544
pg_database
505
545
pg_depend
506
546
pg_description
@@ -522,6 +562,7 @@ pg_rewrite
522
562
pg_shdepend
523
563
pg_shdescription
524
564
pg_statistic
565
+ pg_stat_statements
525
566
pg_tablespace
526
567
pg_trigger
527
568
pg_ts_config
@@ -1194,3 +1235,21 @@ smallint
1194
1235
text
1195
1236
time
1196
1237
timestamp
1238
+
1239
+ # common columns
1240
+ created_at
1241
+ updated_at
1242
+ deleted_at
1243
+ created_on
1244
+ modified_on
1245
+ timestamp
1246
+ is_active
1247
+ is_deleted
1248
+ is_published
1249
+ status
1250
+ enabled
1251
+ user_id
1252
+ product_id
1253
+ category_id
1254
+ order_id
1255
+ customer_id
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ f2648a0cb4d5922d58b8aa6600f786b32324b9ac91e3a57e4ff212e901ffe151 data/shell/sta
24
24
84b431647a2c13e72b2c9c9242a578349d1b8eef596166128e08f1056d7e4ac8 data/shell/stagers/stager.php_
25
25
26e2a6d6154cbcef1410a6826169463129380f70a840f848dce4236b686efb23 data/txt/common-columns.txt
26
26
22cda9937e1801f15370e7cb784797f06c9c86ad8a97db19e732ae76671c7f37 data/txt/common-files.txt
27
- a166b1958937364968a25e4bc64074c1ac12358443e58b1bf2ac3d8d88b48a30 data/txt/common-outputs.txt
27
+ 30b3eecf7beb4ebbfdb3aadbd7d7d2ad2a477f07753e5ed1de940693c8b145dc data/txt/common-outputs.txt
28
28
7953f5967da237115739ee0f0fe8b0ecec7cdac4830770acb8238e6570422a28 data/txt/common-tables.txt
29
29
b023d7207e5e96a27696ec7ea1d32f9de59f1a269fde7672a8509cb3f0909cd3 data/txt/keywords.txt
30
30
29a0a6a2c2d94e44899e867590bae865bdf97ba17484c649002d1d8faaf3e127 data/txt/smalldict.txt
@@ -188,7 +188,7 @@ c4bfb493a03caf84dd362aec7c248097841de804b7413d0e1ecb8a90c8550bc0 lib/core/readl
188
188
d1bd70c1a55858495c727fbec91e30af267459c8f64d50fabf9e4ee2c007e920 lib/core/replication.py
189
189
1d0f80b0193ac5204527bfab4bde1a7aee0f693fd008e86b4b29f606d1ef94f3 lib/core/revision.py
190
190
d2eb8e4b05ac93551272b3d4abfaf5b9f2d3ac92499a7704c16ed0b4f200db38 lib/core/session.py
191
- b314c20d254d3bda3bab247b9b2c35dbac4f4f37eda09d030ad1b84c845b543e lib/core/settings.py
191
+ 7dc87552cef805e1b88e13cf595814a2011bbb020b82cc0d1fc2a1fa3c79c989 lib/core/settings.py
192
192
1c5eab9494eb969bc9ce118a2ea6954690c6851cbe54c18373c723b99734bf09 lib/core/shell.py
193
193
4eea6dcf023e41e3c64b210cb5c2efc7ca893b727f5e49d9c924f076bb224053 lib/core/subprocessng.py
194
194
cdd352e1331c6b535e780f6edea79465cb55af53aa2114dcea0e8bf382e56d1a lib/core/target.py
Original file line number Diff line number Diff line change 19
19
from thirdparty import six
20
20
21
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
- VERSION = "1.9.8.10 "
22
+ VERSION = "1.9.9.0 "
23
23
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
24
24
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
25
25
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments