dnmap--client/server

来源:互联网 发布:php手机租车网站源码 编辑:程序博客网 时间:2024/05/17 16:55

dnmap(distributed nmap)是一款基于nmap的分布式扫描工具,它能够用一个集群来对另外一个大型集群网络进行扫描。

root@kali:~# dnmap_client 
+----------------------------------------------------------------------+
| dnmap Client Version 0.6                                             |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 2 of the License, or    |
| (at your option) any later version.                                  |
|                                                                      |
| Author: Garcia Sebastian, eldraco@gmail.com                          |
| www.mateslab.com.ar                                                  |
+----------------------------------------------------------------------+

usage: /usr/bin/dnmap_client <options>
options:
  -s, --server-ip        IP address of dnmap server.
服务器ip  
  -p, --server-port      Port of dnmap server. Dnmap port defaults to 46001 服务器端口 ,默认46001
  -a, --alias      Your name alias so we can give credit to you for your help. Optional
  -d, --debug      Debuging. 调试
  -m, --max-rate      Force nmaps commands to use at most this rate. Useful to slow nmap down. Adds the --max-rate parameter. 强制命令nmap最多使用最大速率,有助于降低nmap速率--max-rate参数很管用

root@kali:~# echo "nmap -F 192.168.1.0/24 -v -n -oA sub1" >> dnmap.txt
root@kali:~# echo "nmap -F 192.168.0.0/24 -v -n -oA sub0" >> dnmap.txt
root@kali:~# dnmap_server -f dnmap.txt
root@kali:~# dnmap_server 
+----------------------------------------------------------------------+
| dnmap_server Version 0.6                                             |
| This program is free software; you can redistribute it and/or modify |
| it under the terms of the GNU General Public License as published by |
| the Free Software Foundation; either version 2 of the License, or    |
| (at your option) any later version.                                  |
|                                                                      |
| Author: Garcia Sebastian, eldraco@gmail.com                          |
| www.mateslab.com.ar                                                  |
+----------------------------------------------------------------------+


usage: /usr/bin/dnmap_server <options>
options:
  -f, --nmap-commands        Nmap commands file Nmap命令文件
  -p, --port        TCP port where we listen for connections. 我们监听连接的TCP端口。
  -L, --log-file        Log file. Defaults to /var/log/dnmap_server.conf. 日志文件。默认为/var/log/dnmap_server.conf。
  -l, --log-level       Log level. Defaults to info.日志级别。默认信息。
  -v, --verbose_level         Verbose level. Give a number between 1 and 5. Defaults to 1. Level 0 means be quiet.

详细的水平。给出1到5之间的数字。默认为1。0级意味着安静。
  -t, --client-timeout         How many time should we wait before marking a client Offline. We still remember its values just in case it cames back.

我们要等多长时间才能在线下标记一个客户。我们仍然记得它的价值,以防它回来。客服端超时时间
  -s, --sort         Field to sort the statical value. You can choose from: Alias, #Commands, UpTime, RunCmdXMin, AvrCmdXMin, Status

段来对静态值进行排序。你可以选择:别名
  -P, --pem-file         pem file to use for TLS connection. By default we use the server.pem file provided with the server in the current directory.

用于TLS连接的pem文件。默认情况下,我们使用服务器。在当前目录中提供的pem文件。
dnmap_server uses a '<nmap-commands-file-name>.dnmaptrace' file to know where it must continue reading the nmap commands file. If you want to start over again,
just delete the '<nmap-commands-file-name>.dnmaptrace' file
dnmap_server使用“< nmap-commands-file-name >。dnmaptrace的文件,知道它必须在哪里继续读取nmap命令文件。如果你想重新开始,

只要删除' < nmap-commands-file-name >。dnmaptrace”文件


root@kali:~# dnmap_client -s 192.168.1.15 -a dnmap-client1



原创粉丝点击