Notedpad++ NppFTP plugin retrieval of passwords [closed]
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
开发者_JAVA技巧 Improve this questionIs there a way we can retrieve passwords saved for FTP accounts under NppFTP plugin with Notepad++?
Thank you. Jae
There is one way but you must put some effort:
- Download Wireshark http://www.wireshark.org/ (program for network monitoring)
- After installation, open it as administrator
- Click: Capture->Interfaces
- Choose interface which has some packets (you will see them if you wait on this screen for a while) and click Start
- Open Notepad++ and connect to FTP of your choice
- Go back to the wireshark and click stop (4th button on the left)
- Inside filter field type: ftp
- Your password will be listed among other stuff about this FTP connection (check out the Info column for Request: PASS)
It's not an easy solution but it's good for every FTP program not only Npp
It is in %APPDATA%\Notepad++\plugins\Config\NppFTP\NppFTP.xml
however the passwords are hashed somehow.
精彩评论