forked from aflgo/aflgo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3fe0493
commit dc8088e
Showing
8 changed files
with
131 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
# | ||
|
||
PROGNAME = afl | ||
VERSION = 1.78b | ||
VERSION = 1.79b | ||
|
||
PREFIX ?= /usr/local | ||
BIN_PATH = $(PREFIX)/bin | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,12 @@ | |
# Modeled based on SQLite documentation, contains some number of SQLite | ||
# extensions. Other dialects of SQL may benefit from customized dictionaries. | ||
# | ||
# If you append @1 to the file name when loading this dictionary, afl-fuzz | ||
# will also additionally load a selection of pragma keywords that are very | ||
# specific to SQLite (and are probably less interesting from the security | ||
# standpoint, because they are usually not allowed in non-privileged | ||
# contexts). | ||
# | ||
# Created by Michal Zalewski <[email protected]> | ||
# | ||
|
||
|
@@ -212,3 +218,65 @@ snippet_string_pair=" \"a\",\"b\"" | |
string_dbl_q=" \"a\"" | ||
string_escaped_q=" 'a''b'" | ||
string_single_q=" 'a'" | ||
|
||
pragma_application_id@1=" application_id" | ||
pragma_auto_vacuum@1=" auto_vacuum" | ||
pragma_automatic_index@1=" automatic_index" | ||
pragma_busy_timeout@1=" busy_timeout" | ||
pragma_cache_size@1=" cache_size" | ||
pragma_cache_spill@1=" cache_spill" | ||
pragma_case_sensitive_like@1=" case_sensitive_like" | ||
pragma_checkpoint_fullfsync@1=" checkpoint_fullfsync" | ||
pragma_collation_list@1=" collation_list" | ||
pragma_compile_options@1=" compile_options" | ||
pragma_count_changes@1=" count_changes" | ||
pragma_data_store_directory@1=" data_store_directory" | ||
pragma_database_list@1=" database_list" | ||
pragma_default_cache_size@1=" default_cache_size" | ||
pragma_defer_foreign_keys@1=" defer_foreign_keys" | ||
pragma_empty_result_callbacks@1=" empty_result_callbacks" | ||
pragma_encoding@1=" encoding" | ||
pragma_foreign_key_check@1=" foreign_key_check" | ||
pragma_foreign_key_list@1=" foreign_key_list" | ||
pragma_foreign_keys@1=" foreign_keys" | ||
pragma_freelist_count@1=" freelist_count" | ||
pragma_full_column_names@1=" full_column_names" | ||
pragma_fullfsync@1=" fullfsync" | ||
pragma_ignore_check_constraints@1=" ignore_check_constraints" | ||
pragma_incremental_vacuum@1=" incremental_vacuum" | ||
pragma_index_info@1=" index_info" | ||
pragma_index_list@1=" index_list" | ||
pragma_integrity_check@1=" integrity_check" | ||
pragma_journal_mode@1=" journal_mode" | ||
pragma_journal_size_limit@1=" journal_size_limit" | ||
pragma_legacy_file_format@1=" legacy_file_format" | ||
pragma_locking_mode@1=" locking_mode" | ||
pragma_max_page_count@1=" max_page_count" | ||
pragma_mmap_size@1=" mmap_size" | ||
pragma_page_count@1=" page_count" | ||
pragma_page_size@1=" page_size" | ||
pragma_parser_trace@1=" parser_trace" | ||
pragma_query_only@1=" query_only" | ||
pragma_quick_check@1=" quick_check" | ||
pragma_read_uncommitted@1=" read_uncommitted" | ||
pragma_recursive_triggers@1=" recursive_triggers" | ||
pragma_reverse_unordered_selects@1=" reverse_unordered_selects" | ||
pragma_schema_version@1=" schema_version" | ||
pragma_secure_delete@1=" secure_delete" | ||
pragma_short_column_names@1=" short_column_names" | ||
pragma_shrink_memory@1=" shrink_memory" | ||
pragma_soft_heap_limit@1=" soft_heap_limit" | ||
pragma_stats@1=" stats" | ||
pragma_synchronous@1=" synchronous" | ||
pragma_table_info@1=" table_info" | ||
pragma_temp_store@1=" temp_store" | ||
pragma_temp_store_directory@1=" temp_store_directory" | ||
pragma_threads@1=" threads" | ||
pragma_user_version@1=" user_version" | ||
pragma_vdbe_addoptrace@1=" vdbe_addoptrace" | ||
pragma_vdbe_debug@1=" vdbe_debug" | ||
pragma_vdbe_listing@1=" vdbe_listing" | ||
pragma_vdbe_trace@1=" vdbe_trace" | ||
pragma_wal_autocheckpoint@1=" wal_autocheckpoint" | ||
pragma_wal_checkpoint@1=" wal_checkpoint" | ||
pragma_writable_schema@1=" writable_schema" |
This file was deleted.
Oops, something went wrong.