Skip to content

Commit

Permalink
XMap 1.1.3 Minor Release
Browse files Browse the repository at this point in the history
XMap 1.1.3 Minor Release.
* Fix Bugs:
  * Fix the source port checking issue of DNS modules
  • Loading branch information
idealeer committed Apr 8, 2023
1 parent e675f77 commit 4a6c1b1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,8 @@
* XMap 1.1.2 Minor Release.
* Fix Bugs:
* Fix the print issue of DNS modules

# 1.1.3 2023-04-08
* XMap 1.1.3 Minor Release.
* Fix Bugs:
* Fix the source port checking issue of DNS modules
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ XMap is a fast network scanner designed for performing Internet-wide IPv6 & IPv4

XMap is reimplemented and improved thoroughly from ZMap and is fully compatible with ZMap, armed with the "5 minutes" probing speed and novel scanning techniques. XMap is capable of scanning the 32-bits address space in under 45 minutes. With a 10 gigE connection and [PF_RING](http://www.ntop.org/products/packet-capture/pf_ring/), XMap can scan the 32-bits address space in under 5 minutes. Moreover, leveraging the novel IPv6 scanning approach, XMap can discover the IPv6 Network Periphery fast. Furthermore, XMap can scan the network space randomly with any length and at any position, such as 2001:db8::/32-64 and 192.168.0.1/16-20. Besides, XMap can probe multiple ports simultaneously.

XMap operates on GNU/Linux, Mac OS, and BSD. XMap currently has implemented probe modules for ICMP Echo scans, TCP SYN scans, [UDP probes](https://github.com/idealeer/xmap/blob/master/examples/udp-probes/README), and **DNS scans (stateless, stateful, or address-spoofing)**.
XMap operates on GNU/Linux, macOS, and BSD. XMap currently has implemented probe modules for ICMP Echo scans, TCP SYN scans, [UDP probes](https://github.com/idealeer/xmap/blob/master/examples/udp-probes/README), and **DNS scans (stateless, stateful, or address-spoofing)**.

With banner grab and TLS handshake tool, [ZGrab2](https://github.com/zmap/zgrab2), more involved scans could be performed.

Installation
------------

The latest stable release of XMap is version 1.1.2 and supports Linux, macOS, and BSD. We recommend installing XMap from HEAD rather than using a distro package manager (not supported yet).
The latest stable release of XMap is version 1.1.3 and supports Linux, macOS, and BSD. We recommend installing XMap from HEAD rather than using a distro package manager (not supported yet).

**Instructions on building XMap from source** can be found in [INSTALL](https://github.com/idealeer/xmap/blob/master/INSTALL.md).

Expand Down Expand Up @@ -50,7 +50,7 @@ Watch the description video at [Pentester Academy TV](https://www.youtube.com/wa
License and Copyright
---------------------

XMap Copyright 2021 Xiang Li from Network and Information Security Lab Tsinghua University
XMap Copyright 2021-2023 Xiang Li from Network and Information Security Lab Tsinghua University

Licensed under the Apache License, Version 2.0 (the "License"); you may not use
this file except in compliance with the License. You may obtain a copy of the
Expand Down
2 changes: 1 addition & 1 deletion src/probe_modules/packet.h
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,7 @@ __attribute__((unused)) static inline int
int32_t min =
((((uint16_t) validation[0]) << 8u) + validation[1]) % num_ports;
int32_t max = ((((uint16_t) validation[0]) << 8u) + validation[1] +
xconf.target_index_num - 1) %
xconf.packet_streams - 1) %
num_ports;

return (((max - min) % num_ports) >= ((to_validate - min) % num_ports));
Expand Down

0 comments on commit 4a6c1b1

Please sign in to comment.