- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有人可以帮助我使用命令行检查具有特定 IP 地址范围的端口扫描器吗?我怎样才能确保使用该 IP 范围进行端口扫描。
args[0] 和 args[1] 用于 IP 地址范围,而 args[2] 和 args[3] 用于端口扫描器。
例如我运行“java Test 1.1.1.1 5 0 10”该程序将检查端口 0 - 10 上从 1.1.1.1 到 1.1.1.5 的 IP
这是我的代码:
import java.util.concurrent.*;
import java.util.*;
import java.net.*;
// source http://stackoverflow.com/questions/11547082/fastest-way-to-scan-ports-with-java
public class Test
{
public static void main(String [] args) throws Exception
{
final ExecutorService es = Executors.newFixedThreadPool(20);
int bRange = 0; //Declare String called bRange with initial value of 0.
int eRange = 0; //Declare String called eRange with initial value of 0.
final int timeout = 200;
//byte[] ipAddr = InetAddress.getByName(args[0]).getAddress();
//byte[] ipAddr1 = InetAddress.getByName(args[1]).getAddress();
String ipAddr = args[0];
String ipAddr1 = args[1];
if (args.length != 3)
{
try
{
bRange = Integer.parseInt(args[2]); //Assign value of second argument to bRange.
eRange = Integer.parseInt(args[3]); //Assign value of third argument to eRange.
}
catch(NumberFormatException E) //If user enter invalid data.
{
System.out.println("You did not enter a valid number for arguments 2 and 3. Please try again with valid Integers.");
System.exit(0);
}
boolean fcheck = true; //DEBUG ONLY CAN DELETE
final List<Future<Boolean>> futures = new ArrayList<>();
ArrayList<Integer> portRange = new ArrayList<Integer>((eRange - bRange)); //Declare an ArrayList of Integer values called portRange and set its initial size.
//For loop to randomize scans.
for(int port = bRange; port <= eRange; port++)
{
portRange.add(port);
//Use ArrayList of portRange and shuffle to go through each port number once.
Collections.shuffle(portRange); //Shuffle portRange.
int size = portRange.size(); //Declare Integer called size and assign value of portRange ArrayList size value.
int randPort = portRange.get(size-1); //Assign the last index of portRange ArrayList to Integer variable randPort.
System.out.println(randPort); //Show all the ports
//int randTimeout = randInt(30, 2000); //Assign random value to randTimeout by running method randInt(). PartD
futures.add(portIsOpen(es, ipAddr, randPort, timeout));
portRange.remove(size - 1); //Remove last element in portRange ArrayList.
}
es.shutdown(); //Tell the executor service that it can't accept new tasks, but the already submitted tasks continue to run.
int openPorts = 0; //Declare Integer called openPorts and assign value of 0.
for(final Future<Boolean> f : futures)
{
if(f.get())
{
openPorts++;
}
}
System.out.println("There are " + openPorts + " open ports on host " + ipAddr + " to " + ipAddr1 + " probed with a timeout of " + timeout + "ms");
//Print statement show how many ports open based on the particular IP Address and the timeout.
}
else
{
System.out.println("Wrong number of arguments");
System.out.println("Please try again");
}
}
public static Future<Boolean> portIsOpen(final ExecutorService es, final String ipAddr, final int port, final int timeout)
{
return es.submit(new Callable<Boolean>()
{
@Override public Boolean call()
{
try //Try block, each time the For loop increments the Try block gets invoked.
{
Socket socket = new Socket(); //The Try block creates an instance of the Socket Class.
socket.connect(new InetSocketAddress(ipAddr, port), timeout); //Create a stream socket and connects it to specified port number at the specified IP Address.
socket.close(); //Close the socket connection.
System.out.println("open port found " + port); //Result show how many ports are open.
return true;
}
catch (Exception ex)
{
return false;
}
}
});
}
}
最佳答案
我想,使用通常的 CIDR 会好得多确定 ip 地址范围的符号。在这种情况下,您只需要使用一个附加参数,如 1.1.1.1/29
,这意味着 ip 地址范围从 1.1.1.1 到 1.1.1.6,而 1.1.1.7 是广播地址.您可以使用 Apache Commons Net 类 SubnetUtils确定范围并获取所有包含的地址:
public static void main(String[] args) {
String subnet = "1.1.1.1/29";
SubnetUtils utils = new SubnetUtils(subnet);
String[] addresses = utils.getInfo().getAllAddresses();
for (String ip : addresses) {
System.out.println(ip);
}
}
但现在看来,您的示例仅检查指定范围的第一个地址,因为您没有提供任何逻辑来迭代您提供的地址范围。
因此,如果您仍然希望按照以前的方式设置范围,则需要将范围表示法转换为具体地址列表,然后在此列表上添加一个额外的循环,并将其包含在端口上的循环中。
要获取此列表,您可以使用 getIpList
方法中的逻辑,只需要提供异常处理等:
public static List<String> getIpList(String startIp, int number) {
List<String> result = new ArrayList<>();
String currentIp = startIp;
for (int i = 0; i < number; i++) {
String nextIp = nextIpAddress(currentIp);
result.add(nextIp);
currentIp = nextIp;
}
return result;
}
public static final String nextIpAddress(final String input) {
final String[] tokens = input.split("\\.");
if (tokens.length != 4)
throw new IllegalArgumentException();
for (int i = tokens.length - 1; i >= 0; i--) {
final int item = Integer.parseInt(tokens[i]);
if (item < 255) {
tokens[i] = String.valueOf(item + 1);
for (int j = i + 1; j < 4; j++) {
tokens[j] = "0";
}
break;
}
}
return new StringBuilder()
.append(tokens[0]).append('.')
.append(tokens[1]).append('.')
.append(tokens[2]).append('.')
.append(tokens[3])
.toString();
}
然后就可以得到范围内的IP列表,加一个循环:
List<String> ipRange = getIpList(ipAddr, ipAddr1);
for(String ipaddr : ipRange) {
for (int port = bRange; port <= eRange; port++) {
portRange.add(port);
//Use ArrayList of portRange and shuffle to go through each port number once.
Collections.shuffle(portRange); //Shuffle portRange.
int size = portRange.size(); //Declare Integer called size and assign value of portRange ArrayList size value.
int randPort = portRange.get(size - 1); //Assign the last index of portRange ArrayList to Integer variable randPort.
System.out.println(randPort); //Show all the ports
//int randTimeout = randInt(30, 2000); //Assign random value to randTimeout by running method randInt(). PartD
futures.add(portIsOpen(es, ipaddr, randPort, timeout));
portRange.remove(size - 1); //Remove last element in portRange ArrayList.
}
}
关于java - IP 范围和端口扫描器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32941762/
我想知道两者都可以 UnicastRemoteObject.exportObject(Remote,portNo) & LocateRegistry.createRegistry(portNo); p
我有一个运行 tomcat 8.0.23 和 apache httpd 服务器的 vps。在 tomcat 中我有 3 个项目让我们用下面的名字来调用它们: /firstpro /secondpro
我试图将非 SSL 端口 8080 上的流量重定向到 SSL 端口 8443(在 Jboss 4.2.3.GA 版本上),但它不起作用。当我在此端口上访问我的 web 应用程序时,它会停留在该端口上并
跟进: Possible to query the native inbox of a mobile from J2ME? 我怎么知道Kannel将 SMS 发送到 native 收件箱端口(我想是端
我想用 python 开发一个代码,它将在本地主机中打开一个端口并将日志发送到该端口。日志只是 python 文件的命令输出。 喜欢: hello.py i = 0 while True:
我的 tomcat 在我的 linux 机器上独立运行在端口 7778 上。我已经将 apache 配置为在端口 443 上的 ssl 上运行。 我的 httpd.conf 如下: Liste
我正在使用 React Native 作为我想要部署到 iOS 和 Android 的头像生成器。我正在为我的服务器使用 Express,它使用 localhost:3000,react native
我正在使用主板(MSI Gaming主板)和两个支持NIC卡的e1000e驱动程序构建自定义操作系统。我想使用NIC卡中的端口而不是板载端口。 为了禁用板载端口,我尝试使用 70-persistanc
我目前使用的是xampp 1.7.0,我的php版本是5.2.8 我将我的 php.ini 文件更改为: [mail function] ; For Win32 only. SMTP = smtp.g
我有以下代码来配置 Jetty 服务器: @Configuration public class RedirectHttpToHttpsOnJetty2Config { @Bean p
我使用 Ubuntu 使用 Certbot 生成了一个 SSL。这已经自动更新了我的 Nginx 配置文件并添加了一个额外的监听端口。我担心我是否只需要监听一个端口(80 或 443)而不是两个端口,
我被困在一个点,我必须调用 pentaho API 来验证来自 reactJS 应用程序的用户。两者都在我的本地机器上。到目前为止我尝试过的事情: a) 在 reactJS 配置文件 - packag
我的 native 项目在 android 模拟器上运行 但是每当我尝试将我的项目与我的 android 设备连接时,就会出现上述错误。 注意:我的手机和笔记本电脑使用相同的 wifi 连接。 请帮我
我正在运行 Elasticsearch 服务器。除了 9200/9300 端口外,Elasticsearch 还开放了很多端口,如下所示。 elasticsearch-service-x64.exe
<portType> 元素是最重要的 WSDL 元素 <portType>可描述一个 web service、可被执行的操作,以及相关的消息 我们可以把 <portT
Stack Overflow 的其他地方有一个关于让 Icecast 出现在端口 80 上的问题,我已经阅读了该问题,但仍然无法让我的服务器在端口 80 上工作。 我的 icecast.xml 有这些
如果这是一个简单的问题,我很抱歉,我对这种事情不熟悉。 我正在尝试确定我的代理服务器 ip 和端口号,以便使用 google 日历同步程序。我使用谷歌浏览器下载了 proxy.pac 文件。最后一行是
我想知道 cassnadra 是否对所有 JMX 连接/节点间通信使用 7199 端口?与早期版本一样,7199 仅用于初始握手,但后来它使用随机选择 1024-65355 端口之间的任何端口。 谢谢
在docker hub中,有一个容器,该容器在启动时会默认打开9000端口。可以通过传递环境变量server__port来覆盖该端口。 我正在尝试在dockerfile中传递Heroku $ PORT
我已经在互联网上公开的虚拟机中安装了 docker。我已经在 VM 的 docker 容器中安装了 mongodb。Mongodb 正在监听 27017港口。 我已经使用以下步骤安装 docker
我是一名优秀的程序员,十分优秀!