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
| ''' | |
| .-') _ .-') _ ('-. _ .-') .-') _ ('-. .-') _ .-') ('-. .-') _ | |
| ( OO ) ( OO) ) _( OO( \( -O ) ( OO ) _( OO)( OO) ) ( OO ). ( OO ).-. ( OO ) ) | |
| ,-.-'),--./ ,--,'/ '.(,------,------.,--./ ,--,(,------/ '._ (_)---\_) .-----. / . --. ,--./ ,--,' | |
| | |OO| \ | |\|'--...__| .---| /`. | \ | |\| .---|'--...__) / _ | ' .--./ | \-. \| \ | |\ | |
| | | | \| | '--. .--| | | / | | \| | | | '--. .--' \ :` `. | |('-.-'-' | | \| | ) | |
| | |(_| . |/ | | (| '--.| |_.' | . |(| '--. | | '..`''.)/_) |OO \| |_.' | . |/ | |
| ,| |_.| |\ | | | | .--'| . '.| |\ | | .--' | | .-._) \|| |`-'| | .-. | |\ | | |
| (_| | | | \ | | | | `---| |\ \| | \ | | `---. | | \ (_' '--'\ | | | | | \ | |
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 pxssh | |
| import optparse | |
| import time | |
| from threading import * | |
| max_connections = 5 | |
| connection_lock = BoundedSemaphore(value=max_connections) | |
| Found = False | |
| Fails = 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
| ''' | |
| Anonymous FTP Scanner - with GUI | |
| ''' | |
| try: | |
| from Tkinter import * | |
| except ImportError: | |
| from tkinter import * |
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 pygeoip | |
| import optparse | |
| def printRecord(tgt): | |
| gi = pygeoip.GeoIP('GeoLiteCity.dat') | |
| try: | |
| rec = gi.record_by_addr(tgt) | |
| except: | |
| rec = gi.record_by_name(tgt) |
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
| """ | |
| Wifi Sniffer | |
| """ | |
| import os | |
| from scapy.all import * | |
| if len(sys.argv) == 2: | |
| iface = str(sys.argv[1]) | |
| else: |
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 argparse | |
| from multiprocessing import Process | |
| import logging | |
| logging.getLogger("scapy.runtime").setLevel(logging.ERROR) | |
| from scapy.all import * | |
| import signal | |
| import threading | |
| from sys import platform | |
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 | |
| namespace Craft; | |
| class TestPlugin extends BasePlugin | |
| { | |
| function getName() | |
| { | |
| return Craft::t('Test Plugin'); | |
| } |
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 | |
| namespace Craft; | |
| class TestVariable | |
| { | |
| public function p($data = array() ){ | |
| echo '<pre>'.print_r($data, true).'</pre>'; | |
| } | |
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 gulp = require('gulp'); | |
| var concat = require('gulp-concat'); | |
| var uglify = require('gulp-uglify'); | |
| gulp.task('scripts', function() { | |
| return gulp.src([ | |
| 'assets/bower_components/jquery/dist/jquery.js', | |
| 'assets/bower_components/bootstrap/dist/js/bootstrap.js', | |
| 'assets/bower_components/headhesive/dist/headhesive.js', | |
| 'assets/js/lib/particle-system.js', |