PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Tuesday, July 26, 2022

[FIXED] how to decrypt Dreamweaver site passwords?

 July 26, 2022     dreamweaver     No comments   

Issue

When I set a site on the Dreamweaver and configure a server ftp for the site, many times I forgot the passwords so that I want to find a way to recover it.


Solution

The Dreamweaver just gives you the option to export the site manager data.

Site=>Manage Sites=>select the site=>export

this will save on your computer a readable xml file with extension .ste

Just open it in word-pad or any other application to read the xml and search for the needed server password and get the value of the attribute pw in the tag server

Then use this javascript function to decrypte the password from this value

function decodeDreamWaverPass(hash){
    var pass = '';
    for (var i=0 ; i<hash.length ; i+=2){
        pass+=String.fromCharCode(parseInt(hash[i]+''+hash[i+1],16)-(i/2)); 
    }
    return pass;
}

Hope that it will be helpful for you...



Answered By - George SEDRA
Answer Checked By - David Goodson (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing