Skip to content

Commit cceda39

Browse files
committed
Minor update of common outputs
1 parent f95b851 commit cceda39

File tree

3 files changed

+62
-3
lines changed

3 files changed

+62
-3
lines changed

data/txt/common-outputs.txt

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -488,6 +488,44 @@ pma_relation
488488
pma_table_coords
489489
pma_table_info
490490

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+
491529
# PostgreSQL
492530
pg_aggregate
493531
pg_am
@@ -501,6 +539,8 @@ pg_cast
501539
pg_class
502540
pg_constraint
503541
pg_conversion
542+
pg_cron_job
543+
pg_cron_job_run_detail
504544
pg_database
505545
pg_depend
506546
pg_description
@@ -522,6 +562,7 @@ pg_rewrite
522562
pg_shdepend
523563
pg_shdescription
524564
pg_statistic
565+
pg_stat_statements
525566
pg_tablespace
526567
pg_trigger
527568
pg_ts_config
@@ -1194,3 +1235,21 @@ smallint
11941235
text
11951236
time
11961237
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

data/txt/sha256sums.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ f2648a0cb4d5922d58b8aa6600f786b32324b9ac91e3a57e4ff212e901ffe151 data/shell/sta
2424
84b431647a2c13e72b2c9c9242a578349d1b8eef596166128e08f1056d7e4ac8 data/shell/stagers/stager.php_
2525
26e2a6d6154cbcef1410a6826169463129380f70a840f848dce4236b686efb23 data/txt/common-columns.txt
2626
22cda9937e1801f15370e7cb784797f06c9c86ad8a97db19e732ae76671c7f37 data/txt/common-files.txt
27-
a166b1958937364968a25e4bc64074c1ac12358443e58b1bf2ac3d8d88b48a30 data/txt/common-outputs.txt
27+
30b3eecf7beb4ebbfdb3aadbd7d7d2ad2a477f07753e5ed1de940693c8b145dc data/txt/common-outputs.txt
2828
7953f5967da237115739ee0f0fe8b0ecec7cdac4830770acb8238e6570422a28 data/txt/common-tables.txt
2929
b023d7207e5e96a27696ec7ea1d32f9de59f1a269fde7672a8509cb3f0909cd3 data/txt/keywords.txt
3030
29a0a6a2c2d94e44899e867590bae865bdf97ba17484c649002d1d8faaf3e127 data/txt/smalldict.txt
@@ -188,7 +188,7 @@ c4bfb493a03caf84dd362aec7c248097841de804b7413d0e1ecb8a90c8550bc0 lib/core/readl
188188
d1bd70c1a55858495c727fbec91e30af267459c8f64d50fabf9e4ee2c007e920 lib/core/replication.py
189189
1d0f80b0193ac5204527bfab4bde1a7aee0f693fd008e86b4b29f606d1ef94f3 lib/core/revision.py
190190
d2eb8e4b05ac93551272b3d4abfaf5b9f2d3ac92499a7704c16ed0b4f200db38 lib/core/session.py
191-
b314c20d254d3bda3bab247b9b2c35dbac4f4f37eda09d030ad1b84c845b543e lib/core/settings.py
191+
7dc87552cef805e1b88e13cf595814a2011bbb020b82cc0d1fc2a1fa3c79c989 lib/core/settings.py
192192
1c5eab9494eb969bc9ce118a2ea6954690c6851cbe54c18373c723b99734bf09 lib/core/shell.py
193193
4eea6dcf023e41e3c64b210cb5c2efc7ca893b727f5e49d9c924f076bb224053 lib/core/subprocessng.py
194194
cdd352e1331c6b535e780f6edea79465cb55af53aa2114dcea0e8bf382e56d1a lib/core/target.py

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from thirdparty import six
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.9.8.10"
22+
VERSION = "1.9.9.0"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)