Db Main Mdb Asp Nuke Passwords R Better !full! π Deluxe
' Old vulnerable way ' If userPass = rs("password") Then ...
It sounds like you're asking for a report or explanation comparing security practices related to , Microsoft Access (MDB) , ASP (Classic ASP) , and nuke (likely referring to older CMS platforms like PHP-Nuke ), with a focus on passwords βspecifically why some methods are better than others. db main mdb asp nuke passwords r better
Microsoft Access allows you to set a database-level password. Without it, anyone who manages to download the main.mdb file can open it instantly in MS Access and view every record. ' Old vulnerable way ' If userPass = rs("password") Then
' Pseudo-code for a "Better" password function in ASP Function BetterHash(password, salt) Dim combined, i combined = salt & password For i = 1 To 1000 combined = MD5(combined) ' In reality, use SHA256 via CAPICOM Next BetterHash = combined End Function Without it, anyone who manages to download the main