This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title>Decode LastPass Dump XML</title> | |
| </head> | |
| <body> | |
| <h4>Instructions</h4> | |
| <ol> | |
| <li>Run the JS code snippet below in the developer console for a LastPass extension vault tab.</li> | |
| <li>Copy the results to the clipboard.</li> | |
| <li>Paste the contents into the Encoded XML text area below.</li> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // **************************************************************************************************************************** | |
| // Abstract: | |
| // This script is just a quick hack to export the owners and members of a team as a CSV file without administrator permissions. | |
| // | |
| // Usage: | |
| // 1. Open your team | |
| // 2. Select "Manage team" from its menu | |
| // 3. Select the "Members" tab | |
| // 4. Expand the "Owners" and "Members and guests" sections | |
| // 5. Make sure to scroll down to the end of the owners and members lists to include all of them in your export (As the members are loaded on demand) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # start helium server on android device - see http://www.clockworkmod.com/carbon for more details | |
| # set -x | |
| # try normal system locations before the local binary | |
| unset adb | |
| for i in /usr/bin /usr/local/bin "$(/usr/bin/dirname $0)" | |
| do | |
| i="$i/adb" | |
| if [ -f "$i" -a -x "$i" ] |