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 function search_google(...) | |
local fields = {...}; | |
for i, field in ipairs( fields ) do | |
if (field.name == 'http.host') then | |
browser_open_url("https://www.google.com/search?q=" .. field.value) | |
break | |
end | |
end | |
end | |
register_packet_menu("HTTP/Search host in Google", search_google, "http.host"); |
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
# Download launchpad bugs | |
import sys | |
import subprocess | |
import requests | |
from launchpadlib.launchpad import Launchpad | |
cachedir = '.' | |
launchpad = Launchpad.login_anonymously('just testing', 'production', cachedir, version='devel') |
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 | |
PROJECT_DIR="/home/moshe/Desktop/aircrack-ng" | |
COV_BUILD="/home/moshe/Downloads/cov-analysis-linux64-7.6.0/bin/cov-build" | |
PROJECT_NAME="aircrack-ng" | |
BUILD_DIR="/home/moshe/Desktop/aircrack-ng_cov/cov-int" | |
TAR_DIR="/home/moshe/Desktop/aircrack-ng_cov/" | |
BUILD_CMD="make sqlite=true experimental=true pcre=true -j 4" | |
# Prepare to build commands |
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
PyPDF2 attempt at decryption | |
Modifications to file: pdf.py | |
References: | |
http://www.adobe.com/content/dam/Adobe/en/devnet/acrobat/pdfs/pdf_reference_1-7.pdf | |
https://github.com/qpdf/qpdf/blob/master/libqpdf/QPDF_encryption.cc#L400 | |
http://security.stackexchange.com/questions/95781/what-security-scheme-is-used-by-pdf-password-encryption-and-why-is-it-so-weak | |
def decode_permissions(self, permissions_code): |
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
<# | |
================ | |
PATCHEXTRACT.PS1 | |
================= | |
Version 1.25 Microsoft MSU Patch Extraction and Patch Organization Utility by Greg Linares (@Laughing_Mantis) | |
This Powershell script will extract a Microsoft MSU update file and then organize the output of extracted files and folders. | |
Organization of the output files is based on the patch's files and will organize them based on their archicture (x86, x64, or wow64) | |
as well as their content-type, ie: resource and catalog files will be moved to a JUNK subfolder and patch binaries and index files will |
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/env python | |
# -*- coding: latin-1 -*- | |
""" | |
ExtractMsg: | |
Extracts emails and attachments saved in Microsoft Outlook's .msg files | |
https://github.com/mattgwwalker/msg-extractor | |
""" | |
__author__ = "Matthew Walker" |
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/env python | |
# Built-in modules | |
import logging | |
import Tkinter | |
import threading | |
class TextHandler(logging.Handler): | |
"""This class allows you to log to a Tkinter Text or ScrolledText widget""" | |
def __init__(self, text): |
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
def merge_dicts(*dicts): | |
all_items = [] | |
for dictionary in dicts: | |
all_items += dictionary.items() | |
return dict(all_items) |
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/env python | |
""" | |
Given the result of a multiplication and one of the factors, calculate the | |
other factor | |
Arguments: | |
known_factor = the factor we're given | |
result = the result of the multiplication modulo some number | |
size_of_modulo_result = The number of bits in the result |
NewerOlder