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
###################### | |
### DESIGN CHANGES ### | |
###################### | |
# panes | |
set -g pane-border-fg black | |
set -g pane-active-border-fg brightred | |
## Status bar design | |
# status line |
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
" Notes to make this all work | |
" --------------------------- | |
" | |
" 1) vim-plug - follow the directions at https://github.com/junegunn/vim-plug | |
" 2) a powerline patched font, I recommend this one https://github.com/ryanoasis/nerd-fonts/tree/master/patched-fonts/Meslo/M-DZ/complete | |
" the OTF file will be fine, you don't need all the files in that dir, just choose one | |
" 3) a truecolour capable terminal like iTerm or Terminator ... or remove the | |
" settings $NVIM_TUI_ENABLE_TRUE_COLOR and set termguicolors below | |
" 4) to install all the plugins below once this file is in place run :PlugUpdate |
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
# from http://www.proxmark.org/forum/viewtopic.php?pid=5415#p5415 | |
0000 0010 0000 0000 01xx xxxx xxxx xxxx xxxx xxxx xxxx 26-bit | |
0000 0010 0000 0000 1xxx xxxx xxxx xxxx xxxx xxxx xxxx 27-bit | |
0000 0010 0000 0001 xxxx xxxx xxxx xxxx xxxx xxxx xxxx 28-bit | |
0000 0010 0000 001x xxxx xxxx xxxx xxxx xxxx xxxx xxxx 29-bit | |
0000 0010 0000 01xx xxxx xxxx xxxx xxxx xxxx xxxx xxxx 30-bit | |
0000 0010 0000 1xxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx 31-bit | |
0000 0010 0001 xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx 32-bit | |
0000 0010 001x xxxx xxxx xxxx xxxx xxxx xxxx xxxx xxxx 33-bit |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
from __future__ import print_function, unicode_literals | |
from prompt_toolkit.completion import Completer, Completion | |
class PwnCompleter(Completer): | |
cmds = {'quit': None, | |
'exit': None, | |
'use': ['/foo/bar', '/herp/derp', '/baz/qux'], |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="refresh" content="10; url=welcome.php" /> | |
<meta charset="utf-8"> | |
<title>Password Error</title> | |
<style> | |
::-moz-selection { | |
background: #b3d4fc; | |
text-shadow: none; |
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
require 'lib_smb' | |
require 'thread' | |
require 'timeout' | |
require 'logger' | |
require 'open3' | |
class Poet | |
include Utils | |
# Error classes for account issues |
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
local http = require "http" | |
local shortport = require "shortport" | |
local stdnse = require "stdnse" | |
description = [[ | |
Uses an HTTP PUT request to VMware's SOAP API in order to elicit a server response that contains ESX version information. | |
]] | |
--- | |
--@usage |
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/python2 | |
# | |
# requires SPI kernel module (sudo modprobe spi_bcm2708) | |
# requires spi.so from https://github.com/lthiery/SPI-Py | |
# | |
from __future__ import print_function | |
import spi | |
import os | |
from random import randint |