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
set ai | |
set expandtab | |
set shiftwidth=4 | |
set tabstop=4 | |
colorscheme elflord | |
syntax enable | |
set showmatch | |
set mat=2 | |
set ignorecase | |
set history=300 |
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
escape ^aa | |
vbell on # default: off | |
vbell_msg " -- Ring, Ring!! -- " # default: "Wuff,Wuff!!" | |
autodetach on # default: on | |
startup_message off # default: on | |
crlf off # default: off | |
multiuser on | |
deflog on | |
defscrollback 1000 # default: 100 | |
silencewait 15 # default: 30 |
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/env python | |
# encoding: utf-8 | |
""" | |
Adapted from spi_test.py by Sean Nelson on 2009-10-14. | |
Modified by Don C. Weber (cutaway) and InGuardians, Inc. 20141015 | |
This file is part of pyBusPirate. | |
pyBusPirate is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by |
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/env python | |
# encoding: utf-8 | |
""" | |
Adapted from i2c-test.py from Peter Huewe by Jean-Michel Picod | |
Modified by Don C. Weber (cutaway) and InGuardians, Inc. 20141015 | |
This file is part of pyBusPirate. | |
pyBusPirate is free software: you can redistribute it and/or modify | |
it under the terms of the GNU General Public License as published by |
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/env python | |
""" | |
A pure Python "ping" implementation, based on a rewrite by Johannes Meyer, | |
of a script originally by Matthew Dixon Cowles. Which in turn was derived | |
from "ping.c", distributed in Linux's netkit. The version this was forked | |
out of can be found here: https://gist.github.com/pklaus/856268 | |
The versions this script derived from are licensed under GPL v2, this makes | |
mandatory that this is licensed under the same terms as well. If it were up |
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 | |
################ | |
# setup_wpe.sh | |
# Author: Don C. Weber (@cutaway) | |
# Purpose: Setup interfaces for hostapd-wpe. This will enable dnsmesq so that the interfaces are ready to serve up an Internet | |
# connection for any clients that maintain a connection to the system. Additional configuration of dnsmasq and | |
# hostapd-wpe required. | |
# | |
################ |
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
# | |
# hostapd-wpe.conf | |
# Brad Antoniewicz (@brad_anton) - Foundstone | |
# ------------------------------------------------ | |
# Updated to provide additional WPA2 configuration control | |
# Don C. Weber (@cutaway) - InGuardians, Inc. | |
# ------------------------------------------------ | |
# | |
# Configuration file for hostapd-wpe | |
# |
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 | |
########################################################################### | |
# ics_startup.sh - This shell script is designed to help setup Internet | |
# sharing between to interfaces. It will generate | |
# the appropriate iptable rules, implement them, | |
# and start the DHCP server. It will also reset | |
# the system. | |
# | |
# Copyright (c) 2012, InGuardians, Inc. <[email protected]> | |
# |
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/env python | |
""" | |
Name: extract_java_server_faces_viewstate | |
Purpose: Extract and parse the Java Server Faces viewstate | |
Date: 20150620 | |
Author: Don C. Weber (@cutaway) of InGuardians, Inc. | |
Resources: | |
http://wiki.apache.org/myfaces/Secure_Your_Application |
OlderNewer