-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcampiar_ip_ubuntu.sh
56 lines (51 loc) · 1.96 KB
/
campiar_ip_ubuntu.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# |--------------------------------------------------------------------------------|
# | |
# | Este programa es Software Libre; Puedes distribuirlo y/o |
# | modificarlo bajo los términos de la GNU General Public License |
# | como está publicada por la Free Software Foundation; cualquier |
# | versión 3 de la Licencia, o (opcionalmente) cualquier versión |
# | posterior. http://www.gnu.org/licenses/lgpl.html |
# | |
# | Este programa es distribuido con la esperanza de que sea útil, |
# | pero SIN NINGUNA GARANTÍA. Vea la GNU General Public License |
# | para más detalles. |
#-----------------------------------------------------------------------------------
## Cyberthrone·· ##
## [email protected] ##
## cambiar ip ubuntu ##
#!/bin/bash
$1-
ifconfig
$2-
sudo ifconfig eth0 down
3_
sudo ifconfig eth0 hw ether AA:AA:AA:AA:AA:AA
4_
sudo ifconfig eth0 up
sleep 6
done
ifdown eth0
ifconfig eth0 down
ifconfig eth0 promisc up
mimac=`ifconfig eth0 |grep eth0 |awk {'printf $5'}`
destfile="./macs_"$(echo `date "+%D-%X"` | sed -e "s/\//\./g" -e "s/:/./g")
tcpdump -vvv -i eth0 > ./.tmp 2> /dev/null &
while (true)
do
clear
cat ./.tmp \
| grep "Client-Ethernet-Address" \
| grep -ve "Client-Ethernet-Address $mimac" \
| awk {'print $2'} | sort | uniq |sed s/':'/''/g \
> ./macs_nuevas.txt
echo -e "Capturando MACs en archivo "$destfile" ...\n"
nnmacs=$(cat ./macs_nuevas.txt | wc -l)
echo "Nuevas Direcciones MAC Capturadas: $nnmacs"
if [[ $nnmacs -ne 0 ]]
then
cat ./macs_nuevas.txt
mv ./macs_nuevas.txt $destfile
fi
echo "( Control + C para parar )"
sleep 5
done