Анонимность Linux tools to increase anonymity

Crissy

Заглянувший
Заглянувший
C

Crissy

Заглянувший
Заглянувший
Сообщения
1
Реакции
0
Hello :)
I would like to share with you some tools, that might help you guys increasing the anonymity in linux.

as you all know, every network interface wether it's wlan0 or eth0 has a mac address, afte the release of android pie, google has implented the option to randomize mac, but who's trusting google anyway.

here's how you change your mac address on linux

tested on kali, (kali is based on debian so debian as well), and ubuntu.
Then open terminal

if you're on root user, u dont have to type sudo or su -
anyways:

sudo apt install macchange

if you dont have net-tools, go ahead and install them by typing sudo apt install net-tools because it will allow us using the ifconfig command, otherwise yiou'll get "command not found:"

ifconfig

and you'll see 2 or three interfaces, probably wlan0 if u have wifi connection, eth0 if you have ethernet cable, and some lo interface.

now we need to shut down the interface we need to change,

if you're changing the wlan0 or eth0 it depends on your connection interface.

sudo ifconfig wlan0 down

or sudo ifconfig eth0 down

now we gonna change the mac address by typing
sudo macchanger -r wlan0
or sudo macchanger -r eth0

the -r is for randomize

then we need to activate the interface again by typing:
sudo ifconfig wlan0 up
or sudo ifconfig eth0 up

check if it works by typing ifconfig and you'll see the new mac address ;)

enjoy.
 

Сверху Снизу