fork download
  1. #****************************************************
  2. # *
  3. # HTTP PROXY *
  4. # Version: 1.0 *
  5. # Author: Luu Gia Thuy *
  6. # Modified by Febru Wasono*
  7. #****************************************************
  8.  
  9. import os,sys,thread,socket
  10.  
  11. #********* CONSTANT VARIABLES *********
  12. BACKLOG = 50 # how many pending connections queue will hold
  13. MAX_DATA_RECV = 4096 # max number of bytes we receive at once
  14. DEBUG = False # set to True to see the debug msgs
  15.  
  16. #**************************************
  17. #********* MAIN PROGRAM ***************
  18. #**************************************
  19. def main():
  20.  
  21. # check the length of command running
  22. if (len(sys.argv)<2):
  23. print "usage: proxy <port>"
  24. return sys.stdout
  25.  
  26. # host and port info.
  27. host = '' # blank for localhost
  28. port = int(sys.argv[1]) # port from argument
  29.  
  30. try:
  31. # create a socket
  32. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  33.  
  34. # associate the socket to host and port
  35. s.bind((host, port))
  36.  
  37. # listenning
  38. s.listen(BACKLOG)
  39.  
  40. except socket.error, (value, message):
  41. if s:
  42. s.close()
  43. print "Could not open socket:", message
  44. sys.exit(1)
  45.  
  46. # get the connection from client
  47. while 1:
  48. conn, client_addr = s.accept()
  49.  
  50. # create a thread to handle request
  51. thread.start_new_thread(proxy_thread, (conn, client_addr))
  52.  
  53. s.close()
  54. #************** END MAIN PROGRAM ***************
  55.  
  56.  
  57. #*******************************************
  58. #********* PROXY_THREAD FUNC ***************
  59. # A thread to handle request from browser
  60. #*******************************************
  61. def proxy_thread(conn, client_addr):
  62.  
  63. # get the request from browser
  64. request = conn.recv(MAX_DATA_RECV)
  65.  
  66. if (request.find('\n')!=-1 or request.find(' ')!=-1):
  67. # parse the first line
  68. first_line = request.split('\n')[0]
  69. # get url
  70. url = first_line.split(' ')[1]
  71. print request
  72. else:
  73. first_line= url = ''
  74. if (DEBUG):
  75. print first_line
  76. print "request", unicode(request)
  77. print "URL:",url
  78. print
  79.  
  80. # find the webserver and port
  81. http_pos = url.find("://") # find pos of ://
  82. if (http_pos==-1):
  83. temp = url
  84. else:
  85. temp = url[(http_pos+3):] # get the rest of url
  86.  
  87. port_pos = temp.find(":") # find the port pos (if any)
  88.  
  89. # find end of web server
  90. webserver_pos = temp.find("/")
  91. if webserver_pos == -1:
  92. webserver_pos = len(temp)
  93.  
  94. webserver = "10.1.89.130" # << the victims here please mas bro
  95. port = 8000 # the port of victims di sini ya...
  96. # port = -1
  97. # if (port_pos==-1 or webserver_pos < port_pos): # default port
  98. # port = 80
  99. # webserver = temp[:webserver_pos]
  100. # else: # specific port
  101. # port = int((temp[(port_pos+1):])[:webserver_pos-port_pos-1])
  102. # webserver = temp[:port_pos]
  103.  
  104. print "Connect to:", webserver, port
  105. #request.replace('CONNECT', 'GET')
  106. fake_request = """
  107. DELETE ads·telkomsel·com:80 HTTP/1.1
  108. User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:25.0) Gecko/20100101 Firefox/25.0
  109. Proxy-Connection: keep-alive
  110. Connection: keep-alive
  111. Host: ads·telkomsel·com \r\r"""
  112. try:
  113. # create a socket to connect to the web server
  114. s = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
  115. s.connect((webserver, port))
  116. s.send(fake_request)
  117. s.send(request) # send request to webserver
  118.  
  119. while 1:
  120. # receive data from web server
  121. data = s.recv(MAX_DATA_RECV)
  122.  
  123. if (len(data) > 0):
  124. # send to browser
  125. conn.send(data)
  126. else:
  127. break
  128. s.close()
  129. conn.close()
  130. except socket.error, (value, message):
  131. if s:
  132. s.close()
  133. if conn:
  134. conn.close()
  135. print "Runtime Error:", message
  136. sys.exit(1)
  137. #********** END PROXY_THREAD ***********
  138.  
  139. if __name__ == '__main__':
  140. main()
  141.  
  142.  
  143.  
Success #stdin #stdout #stderr 0.01s 5288KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Error: near line 9: near "import": syntax error