Jump to content

Trip

Dedicated Members
  • Posts

    767
  • Joined

  • Last visited

  • Days Won

    3

Posts posted by Trip

  1. Running great on my Mac but wine causes a crash when launching. What wine version are you using and what distro are you on? I am running Ubuntu 11.04 (alternative CD)

    Yeah via wine i wouldnt bother tho its pretty poop .... very laggy ! (and not much fun)

    im just reinstalling on windows :)

  2. Now that TF2 is free to play on steam i think we should arrange a hak5 gaming night.

    Let me know your opinions.

    Starting next thursday hopefully ...

    + is there a hak5 steam group ?

    ==============================================

    im currently verifying if you can play tf2 under linux via wine

    will let u know later ;0)

  3. 15. Run a weekly check for viruses and malware MBAM is pretty much AWESOME

    16. Remove temporary/cookies + cahced files you dont need to keep ;)

    17. Check your startup registry entries that there's no crap in there u dont need to run/load

  4. I got bored and was reading these instructions whilst making a tea made me laugh so much i thought i'd post them

    the instructions are for a soldering gun :)

    failinstructions_bba3popj_thumb.jpg

    i presume some translation software was used to produce this

    quickly spelt quichly

    guarantee spelt garanty

    dont these amateurs know what a spell checker is .... the grammar is diabolical

    im sorry for posting this i laughed so hard when i read it.

  5. The backtrack background has been skewed the wrong way, the image on the monitor says the monitor is facing left, but the monitor is actually facing right.

    i see what u mean i think its an optical illusion i didnt skew the screen i just slanted it but i see what u mean ;)

  6. great thread btw ... my dads pc kept crashing @ his office (old machine win 3.11) i decided to take a look inside and could not believe the pc hadn't set on fire or blown up there was an incredible amount of crap in there .... so much so it was causing the hardware to fail ... i cleaned it up powered it back on and hey presto all was good :)

    next time i get a wrong en ill take some pics :D

  7. Ah, kind of a weird issue. But I have seen that 00:00:00:00:00 pop up with airdrop and airodump a few times as well, never really figured out why.

    But hey whatever gets the job done! Hope it helped, Good luck.

    hehe wanna feel leet dude ??? ....

    def getmac():
    	""" returns the MAC address of the current interface """
    	global IFACE
    
    	proc_mac = subprocess.Popen(['ifconfig',IFACE], stdout=subprocess.PIPE, stderr=open(os.devnull, 'w'))
    	proc_mac.wait()
    	lines = proc_mac.communicate()[0]
    	if lines == None:
    		return 'NO MAC'
    
    	for line in lines:
    		line = lines.split('\n')[0]
    		line=line[line.find('HWaddr ')+7:]
    		if line.find('-') != -1:
    			macnum=line.split('-')
    			mac=''
    			for i in xrange(0, len(macnum)):
    				mac=mac+macnum[i]
    				if i < 5:
    					mac=mac+':'
    				else:
    					break
    			return mac
    		else:
    			return line.strip()

    look at the mess that is in wifite LOL omg even my code is better hehe yours is uber ROTFL

    yo dude check this out ... http://code.google.com/p/wifite/issues/detail?id=48

  8. nice dude ill check them out in 2mins ...

    check this out ... :D

    import commands
    def getmac(iface):
        words = commands.getoutput("ifconfig " + iface).split()	
        for x in range(0,len(words)):
            if words[x].strip() == "HWaddr":
                mac = words[x+1].strip()
                break
        if len(mac) == 0:
            mac = 'Mac not found'
        mac = mac[:17]
        return mac
    

    much better :D

    just checked yours ... this would be better

    import commands
    def getmac(iface):
        ifconfig = commands.getoutput("ifconfig " + iface + "| grep HWaddr | awk '{ print $5 }'").strip() #<< added strip to remove leading / trailing spaces
    
        if len(ifconfig) == 0:
            mac = 'Mac not found'
        else:
            mac = ifconfig[:17] #<< return the left 17 characters
        return mac
    

    sometimes aircrack messes up my mac address

    rather than 00:22:77:33:66:44

    it shows up as ...

    00:22:77:33:66:44:00:00:00:00:00:00

    thats why i added the left 17 thing ;)

    just tested it ... works beautifully

    import commands
    def getmac(iface):
        ifconfig = commands.getoutput("ifconfig " + iface + "| grep HWaddr | awk '{ print $5 }'").strip()
        if len(ifconfig) == 0:
            mac = 'Mac not found'
        else:
            mac = ifconfig[:17]
        return mac
    print getmac('wlan0')
    

×
×
  • Create New...