Dragon1932 Posted January 17, 2015 Posted January 17, 2015 hey guys its dragon, just wanted to ask how I could find a MAC address on a computer without taking the computer apart restarting it or logging into the computer
BillieJoe67 Posted January 17, 2015 Posted January 17, 2015 import ossys_net = '/sys/class/net'for dev in os.listdir(sys_net): with open(os.path.join(os.path.join(sys_net, dev), 'address')) as f: print dev, f.read(), Alternatively you could just google
jks101 Posted January 18, 2015 Posted January 18, 2015 just ipconfig??? billie just flexing his kiddie code skillz
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now