如何编写bash脚本来搜索文件中的IP并将其写入另一个文件?

发布于 2024-08-13 00:00:23 字数 513 浏览 13 评论 0原文

我需要编写一个 bash 脚本,该脚本将采用一个可 grepable nmap 输出文件,该文件显示端口 80 打开的 IP 地址,并将端口 80 打开的 IP 复制到另一个文本文件。输出看起来与此类似:

# Nmap 4.76 scan initiated Thu Dec  3 13:36:29 2009 as: nmap -iL ip.txt -p  80 -r -R -PN --open -oA output
Host: 192.168.1.100 () Status: Up
Host: 192.168.1.100 () Ports: 80/open/tcp//http///
Host: 192.168.1.100 () Status: Up
# Nmap done at Thu Dec  3 13:36:29 2009 -- 3 IP addresses (3 hosts up) scanned in 0.28 seconds

我对 bash 脚本相当陌生,所以我不知道从哪里开始。如果您能帮助我完成这个脚本,我将不胜感激。

I need to write a bash script that will take a grepable nmap output file that displays IP addresses with port 80 open and copy the IPs that have port 80 open to another text file. The output looks similar to this:

# Nmap 4.76 scan initiated Thu Dec  3 13:36:29 2009 as: nmap -iL ip.txt -p  80 -r -R -PN --open -oA output
Host: 192.168.1.100 () Status: Up
Host: 192.168.1.100 () Ports: 80/open/tcp//http///
Host: 192.168.1.100 () Status: Up
# Nmap done at Thu Dec  3 13:36:29 2009 -- 3 IP addresses (3 hosts up) scanned in 0.28 seconds

I am fairly new to bash scripting so I am not sure where to start with this. If you can help me with this script it would be much appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

鹤舞 2024-08-20 00:00:23

这可以简化为 awk 调用:

awk '/80\/open/{print $2}' infile > iplist_port_80

this can be reduced to an awk call:

awk '/80\/open/{print $2}' infile > iplist_port_80
会发光的星星闪亮亮i 2024-08-20 00:00:23

使用 grep 和 sed/awk

grep -e '80/open/tcp' infile | awk '{print $2}' | sort -u > outfile

将是我的第一次尝试。

Use grep and sed/awk

grep -e '80/open/tcp' infile | awk '{print $2}' | sort -u > outfile

would be my first attempt.

困倦 2024-08-20 00:00:23

不熟悉 nmap 调用和输出格式,但这仍然应该有效:

nmap | grep -e 'Ports:.80\/' |sed 's/Host:.//;s/.(.*//'|sort -u > out

not being familiar with nmap invocation and output format, but still, this should work:

nmap | grep -e 'Ports:.80\/' |sed 's/Host:.//;s/.(.*//'|sort -u > out
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文