Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/usr/bin/env python
- __author__="bi0os.blogspot.com"
- __date__ ="$Jan 20, 2013 5:12:10 PM$"
- __version__="0.1"
- import sys
- """
- This little script born because I was get in trouble to see the real url from the filmeja.com.
- He give me the url in a reverse mode. Eg: ?url=azxj06z3/ot.lu//:ptth filmeja badBoy!
- But with this in python trick, We see the real url and we obtain the movie we want ;)
- Bye!
- [::-1] -> http://goo.gl/GfDqB
- """
- try:
- url = sys.argv[1]
- def parse(url):
- lclean = url.replace('?url=', '')
- lclean = lclean[::-1]
- print "The real url is: ",lclean
- parse(url)
- except IndexError:
- print"Usage: ", sys.argv[0], "'url to discover'\n"
Advertisement
Add Comment
Please, Sign In to add comment