Commit Graph

144 Commits

Author SHA1 Message Date
William Kelly d14879487b Merge remote-tracking branch 'upstream/master' into FREEBSD
Conflicts:
	src/Makefile
2013-10-17 02:44:09 -05:00
William Kelly 833c781d94 FreeBSD port initial checkin. This is based on 5cd6f3294c,
September 9, 2013, before CMake changes. Includes proto_headers.h.
Most or all of __FREEBSD__ changes should, IMHO, be merged back into Linux version.
This should build on Linux with __FREEBSD__ defined.
2013-10-16 22:12:11 -05:00
David Adrian f30c8df9e5 Remove extranneous printf 2013-10-16 17:36:40 -04:00
David Adrian 0e03d170e6 Fix bug where only 16 bits of entropy was used
Always use aesrand_getword() & 0xFFFFFFFF not 0xFFFF. This was causing
the groups used over multiple runs of ZMap to have identical generators
too often.
2013-10-16 17:26:34 -04:00
Zakir Durumeric d8a592a401 use whitelist 2013-10-15 10:22:23 -04:00
David Adrian 48154339e0 Delete whitelist
File from testing snuck into version control.
2013-10-14 18:21:17 -04:00
David Adrian 4eac51fdca Merge in changes to allow filtering received packets
Merge branch 'output-filter'

Conflicts:
	src/zmap.c
2013-10-12 12:54:56 -04:00
David Adrian d1f6d4c182 Fix minor styling errors 2013-10-12 12:52:15 -04:00
David Adrian f483288e5a Improved filter validator
- Can no longer do "stringfield = INTEGER" or "intfield = string"
- Print slightly more sane error messages
2013-10-12 12:47:23 -04:00
David Adrian a01a99e239 Fix casing error in #include 2013-10-12 12:05:30 -04:00
Zakir Durumeric e49e442535 working redis string connections 2013-10-11 23:15:59 -04:00
David Adrian 84318c2cf0 Revert "Untested iterative implementation of evaluate"
This reverts commit f2ba9d7621.
2013-10-11 17:10:20 -04:00
David Adrian 8f19fb2cac Revert "Switch to the iterative evaluator"
This reverts commit eeb5ddcf0c.
2013-10-11 17:10:05 -04:00
David Adrian eeb5ddcf0c Switch to the iterative evaluator 2013-10-11 12:38:22 -04:00
David Adrian f2ba9d7621 Untested iterative implementation of evaluate 2013-10-11 12:13:42 -04:00
David Adrian 2453404604 Move stack.h and stack.c to lib 2013-10-11 11:04:04 -04:00
David Adrian bc516445ef Remove debug printf calls 2013-10-11 10:25:45 -04:00
David Adrian 4af98e9951 Working filtering, still needs cleanup and optimization 2013-10-11 10:19:53 -04:00
Zakir Durumeric 76f848bf79 removing deprecated references to extended_file and simple_file. 2013-10-09 17:07:29 -04:00
Zakir Durumeric b5f6a278bb help to show selected output module name before printing help text 2013-10-09 17:07:00 -04:00
Zakir Durumeric 8fd1491680 adding null help text place holders 2013-10-09 17:06:15 -04:00
Zakir Durumeric 0410a99d18 adding support for help text to output modules 2013-10-09 17:05:44 -04:00
Zakir Durumeric 13ca18479a compiling redis support 2013-10-09 15:11:23 -04:00
David Adrian af834fe2e2 Update build to -Werror, #pragma to ignore in lexer.l 2013-10-09 12:49:58 -04:00
Zakir Durumeric 277f49457d adding ability to scan specific CIDR blocks or addresses. 2013-10-08 22:42:17 -04:00
David Adrian 45918feced Fix JSON build errors
Updated module_json.c to use field_t.value as a union, not as
a pointer.
2013-10-04 12:00:32 -04:00
David Adrian f6ea0a79a8 Build filter using CMake 2013-10-04 10:53:03 -04:00
Eric 6cf931b541 portable 64-bit output type 2013-10-03 22:03:55 -04:00
Eric ae07374bb9 Use a union in fieldset->value
Instead of unreliably casting uint64_t's to (void *)
2013-10-03 21:53:42 -04:00
David Adrian 9df8f678a3 Drop packets that don't pass the filter in recv 2013-10-03 14:29:46 -04:00
David Adrian 29c291c562 Incredibly hacky evaluate implementation 2013-10-03 14:29:46 -04:00
David Adrian f7939bfbcb Add support for holding an index instead of fieldname 2013-10-03 14:29:38 -04:00
David Adrian 8db9f260f2 Mildly working build process with argument parsing 2013-10-03 14:29:38 -04:00
David Adrian 8607c2574b Move filter files into src/
- Makefile still needs work, is not compiling
2013-10-03 14:29:22 -04:00
David Adrian 21fa755c13 Finish moving zmap to CMake
- Generalize libjson support in CMakeLists
- Remove zopt.h, zopt.c from the repository
2013-10-03 12:14:36 -04:00
Justin Lecher 154fb01525 Convert plain Makefile into cmake
The package can be configured with 4 different options:

-DWITH_REDIS=ON

Enable support for Redis DB

-DWITH_JSON=ON

Enable support for JSON based output

-DENABLE_DEVELOPMENT=ON

Enable all warnings and make them fatal

-DENABLE_HARDENING=ON

Compile and link with some hardening

Use the new system by creating a build directory and change into that.
And then call the following

cmake -DWITH_REDIS=OFF -DWITH_JSON=ON -DENABLE_DEVELOPMENT=ON -DENABLE_HARDENING=ON /path/to/source/dir/
make
make DESTDIR="/..." install

Signed-off-by: Justin Lecher <jlec@gentoo.org>

Merged by David Adrian
- Remove src/Makefile
- Updated .gitignore for CMake
2013-10-03 11:38:48 -04:00
Zakir Durumeric 4a37dba56f Merge branch 'fast-whitelist' of github.com:zmap/zmap 2013-10-03 10:59:21 -04:00
Eric 19c4a04932 demote spurious log_infos to log_debug 2013-10-03 04:17:03 -04:00
Eric ec1b761489 Support multiple cyclic groups for smaller subnets
We will choose the first one in the list that is large enough to support
the number of hosts chosen. This speeds up scanning small networks considerably:
e.g. /16s can be scanned in <200ms (+ cooldown)
2013-10-03 03:50:12 -04:00
Eric d2112701b0 have cyclic use blacklist_lookup_index 2013-10-03 02:49:50 -04:00
Eric 6c74ce6837 Update man page to include fields
and also update file paths
2013-09-03 16:02:27 -04:00
Eric 2198295c71 Adding icmp unreachable strings (udp_unreach_str) 2013-09-02 19:00:22 -04:00
Eric 754e2dc1f7 Add icmp_responder to UDP fieldset
icmp_responder is the source address of the DEST_UNREACH ICMP
packet, which is not necessarily the same as the saddr (e.g.
NETWORK_UNREACH)
2013-09-02 18:14:58 -04:00
Eric d694fe69a6 UDP probe module updates saddr fieldset
ICMP responses (e.g. DEST_UNREACH) to UDP probes (generally)
contain the IP/UDP packet that ellicited the response, though
they do not have to come from the host we sent them to (e.g.
NETWORK_UNREACH). We will "correct" this by switching the saddr
fieldset to be the host we WOULD have received a response from
2013-09-02 17:58:20 -04:00
Eric ee9593938b Move make_ip_str to probe_modules/packet.c
This is a utility function, mostly useful for probe modules
2013-09-02 17:57:32 -04:00
Eric e458982892 Add fs_modify_word to fieldset
You may modify an existing word to be a different value;
useful in UDP module for ICMP unreachable responses, so
we can update the "source" address
2013-09-02 17:55:06 -04:00
Zakir Durumeric 1d8911ebb7 changing size of udp output fields len 2013-09-02 17:13:17 -04:00
Zakir Durumeric 8c8049dd66 adding data to udp probe module 2013-09-02 17:06:47 -04:00
Zakir Durumeric 51da87c605 removing accidental referal to data in udp module 2013-09-02 15:58:53 -04:00
Zakir Durumeric 3406f10271 Merge branch 'master' of github.com:zmap/zmap 2013-09-02 15:57:51 -04:00