Skip to content

Commit

Permalink
XMap 1.1.4 Minor Release
Browse files Browse the repository at this point in the history
* XMap 1.1.4 Minor Release.
* New feature:
  * increase the field number to store results
  • Loading branch information
idealeer committed Jun 28, 2023
1 parent 196cbcf commit aec14f4
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
21 changes: 13 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,39 +1,44 @@
# 1.0.0 2021-04-02
# 1.0.0 04/02/2021
* Initial public release

# 1.0.1 2021-12-03
# 1.0.1 12/03/2021
* XMap 1.0.1 Minor Release
* Fix Bugs:
* Fix the memory leakage issue
* New Features:
* Increase the batch number

# 1.0.2 2021-12-06
# 1.0.2 12/06/2021
* XMap 1.0.2 Minor Release.
* Fix Bugs:
* Prevent multiple definitions of global variable IID when GCC >= 10 (thanks for @juergenhoetzel)

# 1.0.3 2021-12-29
# 1.0.3 12/29/2021
* XMap 1.0.3 Minor Release.
* Fix Bugs:
* Fix multiple port scanning modules, enabling `-p 0-65535`

# 1.1.0 2022-09-10
# 1.1.0 09/10/2022
* XMap 1.1.0 Major Release.
* New Features:
* DNS scan modules enabled (base module: `-M dnsx`, query for software version: `-M dnsv`, spoofing source address: `-M dnsf`, and so on)

# 1.1.1 2022-09-22
# 1.1.1 09/22/2022
* XMap 1.1.1 Minor Release.
* Fix Bugs:
* Fix the memory leakage issue

# 1.1.2 2022-09-23
# 1.1.2 09/23/2022
* XMap 1.1.2 Minor Release.
* Fix Bugs:
* Fix the print issue of DNS modules

# 1.1.3 2023-04-08
# 1.1.3 04/08/2023
* XMap 1.1.3 Minor Release.
* Fix Bugs:
* Fix the source port checking issue of DNS modules

# 1.1.4 06/28/2023
* XMap 1.1.4 Minor Release.
* New feature:
* increase the field number to store results
3 changes: 2 additions & 1 deletion src/fieldset.c
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ fieldset_t *fs_new_repeated_fieldset(void) {
static inline void fs_add_word(fieldset_t *fs, const char *name, int type,
int free_, size_t len, field_val_t value) {
if (fs->len + 1 >= MAX_FIELDS) {
log_fatal("fieldset", "out of room in fieldset");
log_warn("fieldset", "out of room in fieldset");
return;
}
if (fs->type == FS_REPEATED && fs->inner_type != type) {
log_fatal("fieldset",
Expand Down
2 changes: 1 addition & 1 deletion src/fieldset.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include <stdlib.h>

// maximum number of records that can be stored in a fieldset
#define MAX_FIELDS 512
#define MAX_FIELDS 1024
#define MAX_LIST_LENGTH 255

// types of data that can be stored in a field
Expand Down

0 comments on commit aec14f4

Please sign in to comment.