Proper Way to Generate MD5 Hash for XCache Administration Password with md5sum or PHP سليم سيلة لتوليد MD5 تجزئة لXCache إدارة كلمة المرور أو مع md5sum [فب]
XCache is a PHP opcode cacher, more commonly known as PHP accelerator that speeds up PHP-based web pages serving and reduces web server load. XCache هو [فب] شفرة تشغيل cacher ، المعروفة أكثر باسم [فب] التسريع أن يسرع [فب] القائم على صفحات الويب التي تخدم ويقلل من خادم الويب تحميل. XCache comes with a web-based administration page (admin-page) user interface that allows administrators or webmasters to monitor and operate the PHP opcode cache in the memory with the performance statistics. XCache يأتي مع الإدارة المستندة إلى ويب الصفحة (المشرف صفحة) واجهة المستخدم أن يسمح للمسؤولين أو أصحاب المواقع لمراقبة وتشغيل شفرة تشغيل [فب] مخبأ في الذاكرة مع إحصائيات الأداء. To use this admin-page, an user ID and password have to be defined in PHP.INI configuration file under xcache.admin.user and xcache.admin.pass parameter to authenticate the http-auth process. لاستخدام هذه مشرف صفحة ، وهو اسم المستخدم وكلمة المرور يجب أن تكون محددة في ملف php.ini التكوين تحت xcache.admin.user والمعلمة xcache.admin.pass لمصادقة المتشعب عملية المصادقة.
For security purpose, password value entered in xcache.admin.pass has to be the MD5 hash. لأغراض الأمن ، وكلمة السر التي تم إدخالها في القيمة xcache.admin.pass لابد من تجزئة MD5. When user go to XCache admin-page, the http-auth will prompt to ask for user name and password credential. عندما تذهب إلى المستخدم XCache مشرف صفحة ، والمتشعب - المصادقة سيدفع لطلب اسم المستخدم وكلمة السر الاعتماد. If the MD5 hash value for the password that user wants to use and assumed to be correct, is in fact a wrong one, then user will unable to login to the admin-page. إذا كانت قيمة تجزئة MD5 لكلمة المرور التي يريد المستخدم لاستخدام ويفترض أن يكون صحيحا ، هو في الواقع خطأ واحد ، ثم لن يتمكن المستخدم من الدخول إلى مشرف صفحة.
To إلى generate the MD5 hashes توليد التجزئة MD5 for your desired password for XCache admin-page in PHP.INI, there are plenty of methods. لكلمة السر التي تريدها لXCache مشرف صفحة في php.ini ، وهناك الكثير من الطرق. The following two ways are some of the simplest way to get the password's MD5 value without compromising security by transmitting password across network or Internet in plain text. طريقتين التالية هي بعض من أبسط طريقة للحصول على كلمة السر لMD5 قيمة دون الإخلال بالأمن عن طريق بث كلمة المرور عبر شبكة الانترنت أو في نص عادي.
PHP Script [فب] سيناريو
Create a new PHP script page on the webserver, and place the file within a website or virtual directory accessible from Internet: إنشاء لجنة جديدة [فب] النصي صفحة على الشبكة العالمية ، ووضع الملف في غضون الدليل الظاهري أو موقع يمكن الوصول إليها من الإنترنت :
<?php <؟ [فب]
echo md5(”password”); صدى md5 ( "كلمة السر") ؛
?> ؟>
After saving the file with any name, request it from web browser using your domain name and get the MD5 hash value for your password, and update PHP.INI with the value. بعد حفظ الملف مع أي اسم ، أنه طلب من متصفح الإنترنت باستخدام اسم المجال الخاص بك والحصول على قيمة التجزئة MD5 لكلمة السر الخاصة بك ، وتحديث php.ini مع القيمة.
md5sum md5sum
md5sum is a computer program which calculates and verifies MD5 hashes, and is installed by default in most Unix, Linux, and Unix-like operating systems or compatibility layers, including CentOS, the popular operating system for web hosts. md5sum هو برنامج الكمبيوتر الذي يحسب ويتحقق من التجزئة MD5 ، ويتم تثبيت افتراضيا في معظم يونكس ، لينكس ، ويونيكس مثل أنظمة التشغيل أو طبقات التوافق ، بما في ذلك CentOS ، وشعبية نظام التشغيل لالمضيفين على الشبكة.
To generate MD5 hash value for the password using md5sum, the correct syntax is as follow: لتوليد قيمة تجزئة MD5 لكلمة المرور باستخدام md5sum ، بناء الجملة الصحيح هو كما يلي :
echo -n “password” | md5sum بالصدى ن "كلمة السر" | md5sum
SSH to the server and run above command, the enter the value generate into PHP.INI. سه إلى الخادم وتشغيل الأوامر أعلاه ، وأدخل القيمة تولد في php.ini.
In both cases, restart Apache web server after editing PHP.INI to make the changes effective. في كلتا الحالتين ، استئناف اباتشي خادم الويب بعد تحرير php.ini لإجراء التغييرات فعالة.
IMPORTANT : The page is machine translated and provided "as is" without warranty. هام : الصفحة هو آلة تترجم وتقدم "كما هي" دون ضمان. Machine translation may be difficult to understand. الترجمة الآلية قد يكون من الصعب فهم. Please refer to يرجى الرجوع إلى original English article المادة الانكليزية الأصلية whenever possible. كلما كان ذلك ممكنا.
Related Articles مواد متصلة
- How to Calculate and Generate MD5 Hash Value in Linux and Unix with md5sum كيفية حساب وانتج MD5 قيمة التجزئة في لينكس ويونيكس مع md5sum
- Install XCache PHP Accelerator in Linux by Compiling from Source تثبيت XCache [فب] مسرع في لينكس عن طريق تجميع من المصدر
- Run WordPress at Top Fast Speed by Putting Objects and Variables into XCache or eAccelerator Cache Memory (Plugin) تشغيل وورد في الأعلى سريعة السرعة من خلال وضع الأجسام ومتغيرات في XCache أو eAccelerator ذاكرة التخزين المؤقت (المساعد)
- Hash Calculator to Get, Compute and Calculate MD5 and SHA1 File Checksum or Hash Value حاسبة لاحصل على البعثرة ، واحسب حساب MD5 وSHA1 تدقيق ملف أو تجزئة القيمة
- Keep Your Password Safely With MyPadlock Password Manager تبقي كلمة السر الخاصة بك بأمان مع MyPadlock إدارة كلمة المرور
- Remove The Automatic Appearance of Your Password In The Password Box إزالة والمظهر التلقائي للكلمة السر الخاصة بك في المربع كلمة المرور
- Trick to Enable and Allow Windows XP and Vista Remote Desktop Login Without Password (or With Blank Null Password) خدعة لتمكين والسماح ويندوز إكس بي وفيستا سطح المكتب البعيد تسجيل الدخول دون كلمة سر (أو فارغة وخالية كلمة السر)
- Forgot Windows Administrator Password? نسيت ويندوز مدير البرنامج كلمة السر؟ Ways to Recover and Reset Password in Vista/XP/2003/2K/NT طرق لاسترداد واعادة ضبط كلمة السر في Vista/XP/2003/2K/NT
- Check File Integrity By Comparing Hash Value with FileVerifier فحص ملف النزاهة من خلال مقارنة مع قيمة التجزئة FileVerifier
- Apple iPhone Root Password and Mobile User Password ابل اي فون جذر كلمة السر وموبايل المستخدم كلمة السر










































December 10th, 2008 02:26 December 10th ، 2008 02:26
[...] servers powered by cPanel or Plesk, where administrators or webmasters have to commonly generate MD5 hash for the password used in PHP scripts or other web [...] [...]ملقمات مدعوم من وحة التحكم أو Plesk ، حيث مدراء أو المواقع التي عادة ما تولد لتجزئة MD5 لكلمة السر المستخدمة في بي النصية على شبكة الإنترنت أو غيرها من [...]
April 24th, 2008 10:24 April 24th ، 2008 10:24
i found many sites that give md5 coding and decoding like لقد وجدت العديد من المواقع التي تعطي md5 مثل فك التشفير والترميز
http://www.joomlaaa.com/md5-coding-decoding http://www.joomlaaa.com/md5-coding-decoding
i do not know how they can decode md5 لا أدري كيف يمكن فك شفرة md5
anyone know a script to decode md5? أحد يعرف نصي لفك md5؟
April 22nd, 2008 19:54 April 22nd ، 2008 19:54
The correct script is السيناريو هو الصحيح
Without “” in (). دون "" في ().