Skip to main content

Posts

Showing posts from October, 2018

How to stop MAC address from changing after disconnecting? linux

Network-Manager will reset your mac address during the wifi scanning. To permanently change your mac address: Edit your  /etc/NetworkManager/NetworkManager.conf  as follows: [main] plugins=ifupdown,keyfile [ifupdown] managed=false [device] wifi.scan-rand-mac-address=no [keyfile] Edit your  /etc/network/interfaces  by adding the following line: pre-up ifconfig wlp68s0b1 hw ether xx:xx:xx:yy:yy:yy The  xx:xx:xx:yy:yy:yy  is the new mac address obtained from the output of  macchanger -A wlp68s0b1   sources: click here

Changing Your MAC Address/Linux ,Powerful Metod

Changing Your MAC Address/Linux Jump to navigation Jump to search Under GNU/Linux, the MAC address of a network interface card (NIC) can be changed by following the procedures below. NOTE: MAC addresses used within this article are provided for example only. Substitute according to your requirements. NOTE: Commands below MUST be executed with root privileges (e.g. prepended with "sudo "), in order for things to work! /etc/init.d/networking stop ifconfig eth0 hw ether 02:01:02:03:04:08 /etc/init.d/networking start Execute " ifconfig eth0 " to confirm. The above should work on   Debian ,   Ubuntu , and similar distributions. Alternatively, under   RHEL / Fedora   and possibly other GNU/Linux distributions (incl.   CentOS   and   Scientific Linux ), to disable and restart networking, one must stop and start   /etc/init.d/network , instead of   /etc/init.d/networking . If you have iproute2 utilities installed, you may prefer to use the " ip " co

How To Change Mac Address | Mac Spoofing in Kali / linux

there are mainly two ways to change your mac Method 1: kali@root# ifconfig {Nework Interface} down kali@root# macchanger {options} {network Interface} kali@root# ifconfig {Nework Interface} up kali@root# service network-manager restart     example:         kali@root# ifconfig wlan0 down         kali@root# macchanger -r wlan0         kali@root# ifconfig wlan0} up         kali@root# service network-manager restart Method 2: kali@root# /etc/init.d/networking stop kali@root# ifconfig {Network Interface} down kali@root# ifconfig {Network Interface} hw ether {any new mac} kali@root# /etc/init.d/networking start     example:         kali@root# /etc/init.d/networking stop         kali@root# ifconfig wlan0 down         kali@root# ifconfig wlan0 hw ether h0:38:99:25:6h:02         kali@root# /etc/init.d/networking start that's it.. to conform ,kali@root#macchanger -s wlan0

Wifi Connected But Not Working In Kali/Linux, Solve

follow below simple steps to make net works step1:     kali@root# nano /etc/NetworkManager/NetworkManager.con             [main]             plugins = ifupdown,keyfile             [ifupdown]             managed = true   step2:            kali@root# service network-manager restart step3:             kali@root# rm -rf /etc/resolv.conf step4:             kali@root# echo "nameserver 8.8.8.8" > resolv.conf step5:            kali@root# service network-manager restart note: use sudo in every command if you're not root user hope this work for you  

Kali Linux Unable to Update

How To Fix  Update Problem In Kali Linux After Accidentally Deleting Some Files/Folders from  etc/atp/ ? i remember when i accidentally deleted some files/folders from etc/atp/ and then got in very bad trouble. i search many times on google but didn't find what i needed. then after spending some hours on google search i found a solution. And that solution is very helpful for me. now i am sharing that solution with you. hope this will definitely work for you. open type following commands in terminal ------------------------------------------------------------------------------ su cat << EOF > /etc/apt/sources.list deb http://http.kali.org/kali kali-rolling main non-free contrib EOF apt-get update apt-get dist-upgrade reboot ------------------------------------------------------------------------------------- Sources ==> Click Here  

Random Posts