This file contains 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 | |
SCRIPT="./sqlmap/sqlmap.py" | |
echo "SQLMap wizard script\n====================" | |
while true; do | |
read -p "Execute through the TOR (Y/n, default: [Y]es)? " TOR | |
TOR=${TOR:-Y} | |
case $TOR in |
This file contains 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
console.log('%c' + 'Hello Console!', '\ | |
font-size: 2em; \ | |
background: red url("http://a.im9.eu/blonde-milf-hardcore-fucking-big-boobs.gif") no-repeat center center; \ | |
background-size: 100% 100%; \ | |
font-weight: bold; \ | |
color: white; \ | |
text-shadow: 0 0 1px black; \ | |
padding: 0 10% 25%; \ | |
border: .1em solid rgba(0,0,0,.4); \ | |
border-radius: 1em; \ |
This file contains 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 StringStyler () { | |
function add (color, value) { | |
String.prototype.__defineGetter__(color, function(){ | |
return "\u001b[" + value[0] + "m" + this + "\u001b[" + value[1] + "m"; | |
}); | |
} | |
var codes = { | |
reset: [0, 0], | |
bold: [1, 22], |
This file contains 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
/** | |
* Attach LESS file: less.attach(url) | |
* Detach LESS file: less.detach(url) | |
*/ | |
(new function(){ | |
if (typeof less == "undefined") less = {sheets:[], refresh:function(){}}; | |
function extractId (href) { | |
return href.replace(/^[a-z]+:\/\/?[^\/]+/, '' ) // Remove protocol & domain | |
.replace(/^\//, '' ) // Remove root / |
This file contains 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
(new function(that){ | |
var TRUE = !0, FALSE = !1, NULL = null, UNDEFINED = undefined, NAN = NaN, INFINITY = Infinity, PINFINITY = +Infinity, NINFINITY = -Infinity; | |
var _OBJECT_ = that._OBJECT_ = "object", | |
_STRING_ = that._STRING_ = "string", | |
_NUMBER_ = that._NUMBER_ = "number", | |
_BOOLEAN_ = that._BOOLEAN_ = "boolean", | |
_FUNCTION_ = that._FUNCTION_ = "function", | |
_UNDEFINED_ = that._UNDEFINED_ = "undefined", | |
_EMAIL_ = that._EMAIL_ = "email", |
This file contains 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 parseVideo (url) { | |
// - Supported YouTube URL formats: | |
// - http://www.youtube.com/watch?v=My2FRPA3Gf8 | |
// - http://youtu.be/My2FRPA3Gf8 | |
// - http://y2u.be/huKvjPQ-Xm4 | |
// - https://youtube.googleapis.com/v/My2FRPA3Gf8 | |
// - http://www.youtube.com/embed/Ab25nviakcw | |
// - http://www.youtube-nocookie.com/v/Ab25nviakcw?version=3&hl=en_US | |
// - http://www.youtube.com/watch?feature=player_embedded&v=Ab25nviakcw# | |
// - Supported Vimeo URL formats: |
This file contains 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
/*! | |
* angular-translate - v2.10.0 - 2016-02-28 | |
* | |
* Copyright (c) 2016 The angular-translate team, Pascal Precht; Licensed MIT | |
*/ | |
(function (root, factory) { | |
if (typeof define === 'function' && define.amd) { | |
// AMD. Register as an anonymous module unless amdModuleId is set | |
define([], function () { | |
return (factory()); |
This file contains 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
* { | |
image-rendering: -webkit-optimize-contrast; | |
image-rendering: -moz-crisp-edges; | |
image-rendering: -o-crisp-edges; | |
image-rendering: crisp-edges; | |
-ms-interpolation-mode: nearest-neighbor; | |
} |
This file contains 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
<head> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.3/ace.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/ace/1.2.3/ext-language_tools.js"></script> | |
</head> | |
<body> | |
<style> | |
body{ | |
margin: 0; | |
} | |
iframe, |
This file contains 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
/* Lightweight ultrafast and powerful EventEmitter that built on the native JavaScript emitter. | |
* | |
* @param this (Object) An optional parameter that allows to extend any object | |
* @returns Object (EventBus|this) | |
*/ | |
function EventBus (that) { | |
var that = that || this, | |
id = (new Date).getTime() + "" + Math.random(), | |
node = document.createElement("EventBus"), | |
recent = {}; |
OlderNewer