English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Soluzione per dimenticare la password di accesso al backend di PHPCMS

What is PHPCMS?

PHPCMS is a website management software. The software adopts modular development, supports various classification methods, and can easily realize the design, development and maintenance of personalized websites with it. It supports a variety of program combinations, can easily realize the migration of the website platform, and can meet the needs of websites of various scales. It has high reliability and is an excellent website management software with many functions such as articles, downloads, pictures, classified information, movies and TV, mall, collection, finance, etc., which is powerful, easy to use, and extensible.

Solution to forget the PHPCMS background password, this article mainly solves it from a technical perspective, please read the text carefully.

1. If you forget the password, you need to find the encryption method first

1.1 The password of PHPCMS can only be retried 8 times, and you have to wait for 1 hour before you can log in again after exceeding the number of retries

1.2 The encryption method is to encrypt the plain text password MD5+encrypt again with MD5. Encrypt is randomly generated when creating the user, which can be seen in the admin table

3. In this way, you can generate a new password and then use it

password=md5(md5(trim($password)).$r['encrypt'])

Modify, and that's it. Those who are interested can test it themselves.

In short, it is better to remember the password less, make good notes, and reduce unnecessary troubles. At the same time, also do a good job in password protection.

Declaration: The content of this article is from the network, the copyright belongs to the original author, the content is contributed and uploaded by internet users spontaneously, this website does not own the copyright, does not edit the content artificially, and does not assume any relevant legal liability. If you find any content suspected of copyright infringement, please send an email to: notice#oldtoolbag.com (when sending an email, please replace # with @) to report, and provide relevant evidence. Once verified, this site will immediately delete the content suspected of infringement.

Ti potrebbe interessare