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
jQuery.noConflict = function() { return $; }; | |
var h = document.getElementsByTagName('head').item(0); | |
h.appendChild = function(w) { | |
return function(obj) { | |
if (obj.src && !obj.src.match(/jquery-\d\.\d\.\d\.min\.js/gi)) { | |
w.apply(this, arguments); | |
} | |
} | |
}(h.appendChild); |
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
}); | |
// Expose jQuery to the global object | |
//window.jQuery = window.$ = jQuery; | |
window.$your_var = jQuery; | |
})(window); |
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
beef: | |
module: | |
coldfusion_dir_traversal_exploit: | |
enable: true | |
autorun: false | |
category: "Network" | |
name: "ColdFusion Directory Traversal Exploit" | |
description: "ColdFusion 9.0, 8.0.1, 9.0 and 9.0.1 are vulnerable to directory traversal that leads to arbitrary file retrieval from the ColdFusion server (CVE-2010-2861)" | |
references: ["http://www.example.com/exploit", "http://www.google.com"] | |
authors: |
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
svn status | cut -c 2- | egrep -v "configuration|tmp" | xargs svn commit -m "my commit message" |
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
grep --exclude-dir=*.svn -irc '[KEYWORD]' `cat [LIST_OF_FILES]` > out && awk -F : '{total += $2} END { print "Total:", total }' [OUTPUT_FILE] |
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
IFS=$'\n'; for line in `cat [LIST_OF_FILES]`; do php -l $line; 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
svn status | grep '?' | sed 's/^.* /svn add /' | bash |
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
svn revert -R * && svn status | grep '?' | sed 's/^.* /rm -r /' | bash |
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
svn diff -r REVNO:HEAD --summarize |
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
svn diff -r REVO:HEAD --summarize | cut -c 9- | xargs zip -9 [FILENAME].zip |
OlderNewer