Jump to content

magic_smoke

Active Members
  • Posts

    6
  • Joined

  • Last visited

Posts posted by magic_smoke

  1. Couldn't resist following Darren up on this one.

    # s3checker.py
    # Finds open AWS S3 buckets
    
    import urllib2 
    
    base_url = "http://s3.amazonaws.com/"
    word_list = open("words.txt")
    results = open("results.txt", "a")
    
    print "Checking... please wait."
    
    for word in word_list:
        try:
            urllib2.urlopen(base_url + word) 
    	results.write(word)
        except urllib2.HTTPError, urllib2.URLError:
            pass
    
    results.close()
    word_list.close()
    
    print "Finished. Results written to", results.name
    

  2. Darren mentioned adding DIP switches to the teensy for selection of payloads which I thought was an excellent idea (and probably something to build into the payload framework). I managed to solder up a DIP switch unit to the teensy and got it working just connecting an INPUT_PULLUP switch to ground. Question is, under what circumstances do I need to connect to the 5V VCC?

    Also: what have you guys got working/planned on the hardware side of things?

×
×
  • Create New...