Experimental network scanner
Go to file
Přemysl Eric Janouch c0ff71e9be Fix BSD build 2015-08-06 01:15:11 +02:00
http-parser@0b43367131 Implement the HTTP plugin 2014-09-21 01:02:16 +02:00
liberty@8c6d18757d Bump liberty 2015-03-29 04:03:16 +02:00
plugins Aborting units -> stopping units 2015-05-13 06:57:06 +02:00
.gitignore Miscellaneous little changes 2015-02-26 22:58:00 +01:00
.gitmodules Move to liberty 2015-02-28 21:57:57 +01:00
.travis.yml Travis CI: Change IRC notification address 2015-04-03 00:03:36 +02:00
CMakeLists.txt Fix BSD build 2015-08-06 01:15:11 +02:00
LICENSE Get rid of "All rights reserved" 2015-05-13 06:10:44 +02:00
README Miscellaneous little changes 2015-02-26 22:58:00 +01:00
config.h.in Rewrite to use CMake 2015-01-17 16:10:12 +01:00
plugin-api.h Aborting units -> stopping units 2015-05-13 06:57:06 +02:00
ponymap.c Hide the indicator while printing info messages 2015-06-27 22:07:52 +02:00

README

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 you're 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.

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

 $ git clone https://github.com/pjanouch/ponymap.git
 $ git submodule init
 $ git submodule update
 $ mkdir build
 $ cd build
 $ cmake .. -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Debug -DWITH_LUA=NO
 $ 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

Note that for versions of CMake before 2.8.9, you need to prefix cpack with
`fakeroot' or file ownership will end up wrong.

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

Author's 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.

License
-------
`ponymap' is written by Přemysl Janouch <p.janouch@gmail.com>.

You may use the software under the terms of the ISC license, the text of which
is included within the package, or, at your option, you may relicense the work
under the MIT or the Modified BSD License, as listed at the following site:

http://www.gnu.org/licenses/license-list.html