append to file instead

This commit is contained in:
vulpine 2020-08-31 21:21:40 -04:00
parent 2b5a5d6e50
commit 936b3d5703
8 changed files with 8 additions and 8 deletions

View File

@ -1,4 +1,4 @@
</div>
<br>
<a href="https://xfnw.ttm.sh/git/huntnw">source</a>
<a href="https://tildegit.org/xfnw/shoxf">source</a>

2
scan
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -A -T4 --script ssl-cert $fn | tee "index/$fn.txt"
nmap -A -T4 --script ssl-cert $fn | tee -a "index/$fn.txt"
done

2
scan1
View File

@ -1,4 +1,4 @@
#!/bin/bash
nmap -A -T4 --script ssl-cert $@ | tee "index/$1.txt"
nmap -A -T4 --script ssl-cert $@ | tee -a "index/$1.txt"

2
scan4
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -T5 --script ssl-cert -p 443 $fn | tee "index/$fn.txt"
nmap -T5 --script ssl-cert -p 443 $fn | tee -a "index/$fn.txt"
done

2
scan6
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -6 -A -T4 --script ssl-cert $fn | tee "index/$fn.txt"
nmap -6 -A -T4 --script ssl-cert $fn | tee -a "index/$fn.txt"
done

2
scan8
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -p 10084 -A -T4 --script ssl-cert $fn | tee "index/$fn.txt"
nmap -p 10084 -A -T4 --script ssl-cert $fn | tee -a "index/$fn.txt"
done

2
scanap
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -p 10799 -T5 --script ssl-cert $fn | tee "index/$fn.txt"
nmap -p 10799 -T5 --script ssl-cert $fn | tee -a "index/$fn.txt"
done

2
scann
View File

@ -2,6 +2,6 @@
for fn in $@; do
echo "scanning $fn"
nmap -A -T4 --script ssl-cert $fn -Pn | tee "index/$fn.txt"
nmap -A -T4 --script ssl-cert $fn -Pn | tee -a "index/$fn.txt"
done