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
import socket | |
ALL = "0.0.0.0" | |
LLMNR_ADDR = "224.0.0.252" | |
LLMNR_PORT = 5355 | |
def hexPretty(firstB, lastB): | |
return ''.join('%02x' % b for b in data[firstB:lastB]) | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) |
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
import socket | |
import struct | |
import datetime | |
ALL = "0.0.0.0" | |
LLMNR_ADDR = "224.0.0.252" | |
LLMNR_PORT = 5355 | |
# Setup network stuff | |
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM, socket.IPPROTO_UDP) |
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
#!/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 |
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
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 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 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; |
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 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 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 |
OlderNewer