wie kann ich ein Passwort eines Users einsehen? Ich finde in der MySQL Datenbank immer nur einen verschlüsselten Code - Kann ich den irgendwie sichtbar entschlüsseln?
Bedanke mich für Hilfe im Vorraus!
Code: Alles auswählen
##############################################################
## MOD Title: md5 Passwortverschlüsselung deaktivieren
## MOD Author: fanrpg < webmaster[at]fanrpg.de > (Alexander Schumacher) www.fanrpg.de
## MOD Description: Entfernt die Passwortverschlüsselung des phpBB's und
## die Passwörter werden im Klartext in der DB gespeichert
## MOD Version: 0.0.1
##
## Installation Level: Easy
## Installation Time: 5
## Files To Edit: 3
## includes/usercp_register.php
## includes/usercp_sendpasswd.php
## login.php
## Included Files: n/a
##############################################################
## For Security Purposes, Please Check: http://www.phpbb.com/mods/downloads/ for the
## latest version of this MOD. Downloading this MOD from other sites could cause malicious code
## to enter into your phpBB Forum. As such, phpBB will not offer support for MODs not offered
## in our MOD-Database, located at: http://www.phpbb.com/mods/downloads/
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
login.php
#
#-----[ FIND ]------------------------------------------
#
if( md5($password) == $row['user_password'] && $row['user_active'] )
#
#-----[ REPLACE WITH ]------------------------------------------
#
if( $password == $row['user_password'] && $row['user_active'] )
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_sendpasswd.php
#
#-----[ FIND ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
SET user_newpasswd = '" . md5($user_password) . "', user_actkey = '$user_actkey'
WHERE user_id = " . $row['user_id'];
#
#-----[ REPLACE WITH ]------------------------------------------
#
$sql = "UPDATE " . USERS_TABLE . "
SET user_newpasswd = '" . $user_password . "', user_actkey = '$user_actkey'
WHERE user_id = " . $row['user_id'];
#
#-----[ OPEN ]------------------------------------------
#
includes/usercp_register.php
#
#-----[ FIND ]------------------------------------------
#
if ( $row['user_password'] != md5($cur_password) )
#
#-----[ REPLACE WITH ]------------------------------------------
#
if ( $row['user_password'] != $cur_password )
#
#-----[ FIND ]------------------------------------------
#
$new_password = md5($new_password);
#
#-----[ REPLACE WITH ]------------------------------------------
#
//$new_password = $new_password;
#
#-----[ FIND ]------------------------------------------
#
if ( $row['user_password'] != md5($cur_password) )
#
#-----[ REPLACE WITH ]------------------------------------------
#
if ( $row['user_password'] != $cur_password )
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM
#Du bist genialMarkus67 hat geschrieben:Hi ...
dann lese das gleich auch noch ... http://www.phpbb.de/viewtopic.php?t=85898
ansonsten ... ohne Worte![]()
Markus