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
| #!/usr/bin/php | |
| <?php | |
| /** | |
| * PHP script that perform a find and replace in a database dump (tested with | |
| * MySQL) with adjustments of the PHP serialize founded. | |
| * | |
| * Don't forget to escape your "special characters": | |
| * "a$b" -> "a\$b" | |
| * "a"b" -> "a\"b" | |
| * "a`b" -> "a\`b" |
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/bash | |
| # video demo at: http://www.youtube.com/watch?v=90xoathBYfk | |
| # written by "mhwombat": https://bbs.archlinux.org/viewtopic.php?id=71938&p=2 | |
| # Based on "snippy" by "sessy" | |
| # (https://bbs.archlinux.org/viewtopic.php?id=71938) | |
| # | |
| # You will also need "dmenu", "xsel" and "xdotool". Get them from your linux | |
| # distro in the usual way. | |
| # |
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
| var row=''; | |
| var pm = PasswordManager.getInstance(); | |
| var model = pm.savedPasswordsList_.dataModel; | |
| var pl = pm.savedPasswordsList_; | |
| for(i=0;i<model.length;i++){ | |
| PasswordManager.requestShowPassword(i); | |
| }; | |
| setTimeout(function(){ | |
| row += 'url,username,password,extra,name,grouping,fav'; | |
| for(i=0; i<model.length; i++) { |
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
| #!/usr/bin/perl -w | |
| use strict; | |
| use IO::Socket::INET; | |
| use IO::Socket::SSL; | |
| use Getopt::Long; | |
| use Config; | |
| #./ddos.pl -dns ip -port 80 -num 500 | |
| $SIG{'PIPE'} = 'IGNORE'; #Ignore broken pipe errors | |
| print <<EOTEXT; |
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
| <script> | |
| // A simple function to copy a string to clipboard. See https://github.com/lgarron/clipboard.js for a full solution. | |
| var copyToClipboard = (function() { | |
| var _dataString = null; | |
| document.addEventListener("copy", function(e){ | |
| if (_dataString !== null) { | |
| try { | |
| e.clipboardData.setData("text/plain", _dataString); | |
| e.preventDefault(); |
NewerOlder