This is some coded I designed specifically for a friend that couldn't access certain websites.
Yes I am aware their are thousands of ways to bypass website filters.
I just thought it was fun to exploit the allowed website lists.
Code:# Program uses google translate as a proxy # Used it at work and at school to access # various things. # # Enjoy; # LogicKills (9.1.08) from Tkinter import * import webbrowser root = Tk() root.title('::gProxy::') fram = Frame(root) Label(fram,text='Website:').pack(side=LEFT) edit = Entry(fram) edit.pack(side=LEFT, fill=BOTH, expand=1) edit.focus_set() butt = Button(fram, text='Connect') butt.pack(side=RIGHT) fram.pack(side=TOP) def find(): s = edit.get() url_goog = 'http://www.google.com/translate?u=' trans = '&hl=en&ie=UTF-8&sl=es&tl=en' url_add1 = '' s = '+'.join((s.split(' '))) webbrowser.open(url_goog+s+trans) butt.config(command=find) root.mainloop()


LinkBack URL
About LinkBacks





Reply With Quote






Bookmarks
Algorithms and Data Structures
Java tutorials
Algorithms Forum