Experimental network scanner
Go to file
Přemysl Eric Janouch 462280fd2f
Update .gitignore
2021-10-30 03:28:13 +02:00
http-parser@0b43367131 Implement the HTTP plugin 2014-09-21 01:02:16 +02:00
liberty@d71c47f8ce Bump minimum CMake version and termo 2020-10-29 16:48:00 +01:00
plugins Name change 2020-09-28 04:55:23 +02:00
.clang-format Add clang-format configuration 2021-10-30 03:02:16 +02:00
.gitignore Update .gitignore 2021-10-30 03:28:13 +02:00
.gitmodules Bump liberty 2018-06-24 05:10:23 +02:00
CMakeLists.txt Bump minimum CMake version and termo 2020-10-29 16:48:00 +01:00
LICENSE Name change 2020-09-28 04:55:23 +02:00
README.adoc Bump minimum CMake version and termo 2020-10-29 16:48:00 +01:00
config.h.in Bump minimum CMake version and termo 2020-10-29 16:48:00 +01:00
plugin-api.h Name change 2020-09-28 04:55:23 +02:00
ponymap.c Set an upper limit on concurrent FDs 2021-07-06 17:25:54 +02:00

README.adoc

ponymap

ponymap is an experimental network scanner, of alpha quality so far.

Replacing nmap is not the goal, even though it would be rather very nice to have a serious network scanner with a permissive license.

The ultimate purpose of this scanner is bruteforcing hosts and ports in search of running services of a kind. It should be simple and straight-forward to either write your own service detection plugins, provided that youre familiar with writing asynchronous code, or to make changes to the existing ones.

So far there are some problems with reliability, and some clever algorithm to avoid overloading the network is needed. Until then, you can use ulimit to cap the maximum number of concurrent connections.

Packages

Regular releases are sporadic. git master should be stable enough. You can get a package with the latest development version from Archlinuxs AUR.

Building and Usage

Build dependencies: CMake >= 3.0, pkg-config, help2man
Runtime dependenices: curses, openssl, Jansson, lua >= 5.3 (optional)

$ git clone --recursive https://git.janouch.name/p/ponymap.git
$ mkdir ponymap/build
$ cd ponymap/build
$ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug
$ make

To install the application, you can do either the usual:

# make install

Or you can try telling CMake to make a package for you. For Debian it is:

$ cpack -G DEB
# dpkg -i ponymap-*.deb

Having the program installed, simply run it with no arguments to retrieve a usage text. Have fun scanning.

Authors Notes

This was quite an interesting project to write and it has taught me a lot about event loops. It would be relatively simple to plug in libuv if more robustness and portability is needed, though.

Contributing and Support

Use https://git.janouch.name/p/ponymap to report any bugs, request features, or submit pull requests. git send-email is tolerated. If you want to discuss the project, feel free to join me at ircs://irc.janouch.name, channel #dev.

Bitcoin donations are accepted at: 12r5uEWEgcHC46xd64tt3hHt9EUvYYDHe9

License

This software is released under the terms of the 0BSD license, the text of which is included within the package along with the list of authors.