Advertisement
puggan

rickroll_http.py

Oct 3rd, 2018
716
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.88 KB | None | 0 0
  1. import time
  2. import BaseHTTPServer
  3. PORT_NUMBER = 114
  4. URL = 'https://www.latlmes.com/music/http-is-insecure-1'
  5. URL_IMAGE = 'https://www.dailydot.com/wp-content/uploads/e0f/b5/794db6eb765355fe14eda1d24c314b18.jpg'
  6.  
  7. class MyHandler(BaseHTTPServer.BaseHTTPRequestHandler):
  8.  
  9.     def do_HEAD(s):
  10.         s.redirect()
  11.         return
  12.  
  13.     def do_GET(s):
  14.         s.guess_type()
  15.         return
  16.  
  17.     def do_POST(s):
  18.         s.guess_type()
  19.         return
  20.  
  21.     def guess_type(s):
  22.         if s.path.endswith('.js'):
  23.             s.handle_js()
  24.             return
  25.         if s.path.endswith('.png'):
  26.             s.redirect_image()
  27.             return
  28.         if s.path.endswith('.gif'):
  29.             s.redirect_image()
  30.             return
  31.         if s.path.endswith('.jpeg'):
  32.             s.redirect_image()
  33.             return
  34.         if s.path.endswith('.jpg'):
  35.             s.redirect_image()
  36.             return
  37.         if s.path.endswith('.svg'):
  38.             s.redirect_image()
  39.             return
  40.         s.redirect()
  41.         return
  42.  
  43.     def redirect(s):
  44.         s.send_response(301)
  45.         s.send_header("Location", URL)
  46.         s.end_headers()
  47.         return
  48.  
  49.     def redirect_image(s):
  50.         s.send_response(301)
  51.         s.send_header("Location", URL_IMAGE)
  52.         s.end_headers()
  53.         return
  54.  
  55.     def handle_js(s):
  56.         s.send_response(200)
  57.         s.send_header("Content-type", "text/javascript")
  58.         s.end_headers()
  59.         s.wfile.write("window.location.href = '" + URL + "';\n")
  60.         return
  61.  
  62. if __name__ == '__main__':
  63.     server_class = BaseHTTPServer.HTTPServer
  64.     httpd = server_class(('', PORT_NUMBER), MyHandler)
  65.     print time.asctime(), "Server Starts - %s" % (PORT_NUMBER)
  66.     try:
  67.         httpd.serve_forever()
  68.     except KeyboardInterrupt:
  69.         pass
  70.     httpd.server_close()
  71.     print time.asctime(), "Server Stops - %s" % (PORT_NUMBER)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement