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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Blue Component</key> | |
| <real>0.078821629285812378</real> | |
| <key>Green Component</key> | |
| <real>0.07883714884519577</real> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>Ansi 0 Color</key> | |
| <dict> | |
| <key>Blue Component</key> | |
| <real>0.1098039299249649</real> | |
| <key>Green Component</key> | |
| <real>0.1098039299249649</real> |
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
| /** | |
| * Reads RSS feeds from kuler and extracts the hexadecimal representation of each five element theme, writing those | |
| * values to a file. | |
| */ | |
| def feeds = [ | |
| new URL("http://kuler-api.adobe.com/feeds/rss/get.cfm?itemsPerPage=100&listType=rating"), | |
| new URL("http://kuler-api.adobe.com/feeds/rss/get.cfm?itemsPerPage=100&listType=popular") | |
| ] | |
| def mappedThemes = [:] | |
| def slurp = {rssXML, themes -> |
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
| import groovy.swing.* | |
| import java.awt.* | |
| import javax.swing.* | |
| /** | |
| * Reads in a map of color themes, each with five hex color values, and displays them in a Swing component. | |
| */ | |
| assert args.size() == 1, 'The name or path to a file containing a themeMap script variable must be supplied on the command line' | |
| def themeMapFileName = args[0] |
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
| import groovy.xml.StreamingMarkupBuilder | |
| import groovy.xml.XmlUtil | |
| import java.awt.Color | |
| /** | |
| * Reads in a map of color themes, each with five hex color values, and maps them to an iterm color preset plist file. | |
| */ | |
| assert args.size() == 1, 'The name or path to a file containing a themeMap script variable must be supplied on the command line' | |
| def themeMapFileName = args[0] |
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 to help solve http://www.pentesteracademy.com/video?id=153 | |
| #This script can be run from the multi-line scripting shell of IronWASP v0.9.7.2 and above | |
| #Make sure the scripting shell language is selected as Python before executing | |
| #The log id value here is one 1. The id value must point to the log containing the login request | |
| r = Request.FromProxyLog(1) | |
| r.Query.Set("email", "jack@pentesteracademy.com") | |
| bf = BruteForcer("xyz", 5,5) | |
| while bf.HasMore(): |
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 to help solve http://www.pentesteracademy.com/video?id=153 | |
| #This script can be run from the multi-line scripting shell of IronWASP v0.9.7.2 and above | |
| #Make sure the scripting shell language is selected as Ruby before executing | |
| #The log id value here is one 1. The id value must point to the log containing the login request | |
| r = Request.from_proxy_log(1) | |
| r.query.set("email", "jack@pentesteracademy.com") | |
| bf = BruteForcer.new("xyz", 5,5) | |
| while bf.has_more |
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 | |
| /** | |
| * @file | |
| * Definition of the 'bootstrap_style' panels style plugin. | |
| */ | |
| $plugin = array( | |
| 'title' => t('Example Parent Style'), | |
| 'description' => t('Example style providing substyles'), |
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
| -- In Safari, this copies the Title and URL of the current tab to the clipboard. | |
| -- Save the script in ~/Library/Scripts/Applications/Safari | |
| -- Using QuickSilver, I assign a trigger to this script using the hotkey ⌥-C (option c), with the scope of the trigger limited to Safari. | |
| -- Inspired by CopyURL + (http://copyurlplus.mozdev.org/) | |
| -- Christopher R. Murphy | |
| tell application "Safari" | |
| set theURL to URL of front document | |
| set theTitle to name of front document | |
| set the clipboard to theTitle & return & theURL as string |