bazju Posted April 21, 2012 Share Posted April 21, 2012 (edited) Changed directions... Edited January 20, 2013 by bazju Quote Link to comment Share on other sites More sharing options...
bazju Posted April 24, 2012 Author Share Posted April 24, 2012 (edited) Changed.. Edited January 20, 2013 by bazju Quote Link to comment Share on other sites More sharing options...
bazju Posted April 25, 2012 Author Share Posted April 25, 2012 (edited) Google API is very simple in it's basic form. The code to pull results form google is below. import urllib2 import json key = raw_input('Enter Authorization Key: ') url = 'https://www.googleapis.com/customsearch/v1?key=' cse = '&cx=002552950702745516136:2s9vh3zvyni&q=' search = raw_input("Search word: ") data = urllib2.urlopen(url+key+cse+search) data = json.load(data) for result in data['items']: print result['snippet'] print result['link'] #There are many other things you can choose to print as well from the dictionary. print linx You need to have a google account and create a Google API key to use the search. cse can be any custom search engine that you want. '&cx=YOUR SEARCH ENGINE&q=' Edited April 25, 2012 by bazju Quote Link to comment Share on other sites More sharing options...
Trcx Posted April 25, 2012 Share Posted April 25, 2012 You might want to look at the Common User Password Profiler (CUPP)sounds similar to what you're looking for http://www.darknet.org.uk/2010/09/cupp-common-user-passwords-profiler-automated-password-profiling-tool/ Quote Link to comment Share on other sites More sharing options...
bazju Posted April 25, 2012 Author Share Posted April 25, 2012 Yea looks like something similar to it has been done. I'm hoping to add some extra features. Either way I'm mostly doing this as practice to get better at Python. Still looking for ideas if anyone has noticed something missing from the current options in this area. Quote Link to comment Share on other sites More sharing options...
bazju Posted April 29, 2012 Author Share Posted April 29, 2012 (edited) read below. Edited June 2, 2012 by bazju Quote Link to comment Share on other sites More sharing options...
bazju Posted June 17, 2012 Author Share Posted June 17, 2012 (edited) Changed... Edited January 20, 2013 by bazju Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.