I hereby claim:
- I am y0ug on github.
- I am y0ug (https://keybase.io/y0ug) on keybase.
- I have a public key whose fingerprint is 260F 136C F2B3 8151 E0E9 8E02 53DE E8FD 72F6 A9E3
To claim this, I am signing this object:
REM install WinRM and powershell | |
START "" /WAIT WindowsXP-KB968930-x86-ENG.exe /quiet /passive /norestart | |
REM disable all the shitz | |
set LIST=(helpsvc ERSvc FastUserSwitchingCompatibility RDSessMgr WZCSVC Dot3scv VSS Themes LmHosts srservice SSDPSRV SCardSvr wscsvc Spooler wuauserv CiSvc SwPrv) | |
for %%i in %LIST% do CALL sc config %%i start= disabled | |
REM enable DCOM auth without domain | |
reg add "HKLM\SYSTEM\CurrentControlSet\Control\Lsa" /v forceguest /t REG_DWORD /d 0 /f |
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env python | |
""" | |
sudo iptables -t nat -A PREROUTING -i wlan0 -p tcp --destination-port 80 -j REDIRECT --to-port 8080 | |
sudo iptables -t nat -D PREROUTING -i wlan0 -p tcp --destination-port 80 -j REDIRECT --to-port 8080 | |
""" | |
from libmproxy import controller, proxy, platform | |
from libmproxy.flow import Response | |
from netlib.odict import ODictCaseless | |
import mmap | |
import contextlib | |
import argparse | |
from Evtx.Evtx import FileHeader | |
from Evtx.Views import evtx_file_xml_view | |
def main(): |
#!/bin/python | |
import mmap | |
import contextlib | |
import argparse | |
from bs4 import BeautifulSoup | |
from Evtx.Evtx import FileHeader | |
from Evtx.Views import evtx_file_xml_view |
import mmap | |
import contextlib | |
import argparse | |
from bs4 import BeautifulSoup, element | |
from Evtx.Evtx import FileHeader | |
from Evtx.Views import evtx_file_xml_view | |
import mmap | |
import contextlib | |
import argparse | |
from bs4 import BeautifulSoup, element | |
from Evtx.Evtx import FileHeader | |
from Evtx.Views import evtx_file_xml_view | |
evtxs = { |
#!/usr/bin/env python | |
################################################################################ | |
# yubi_goog.py - google authenticator via yubikey | |
# | |
# Use --generate to generate OTPs given a base 32 secret key (from google) | |
# Use --yubi to send a challenge to the yubikey to generate OTPs | |
# Use --convert-secret to convert the google secret into hex | |
# | |
# author: Casey Link <[email protected]> | |
# https://github.com/Ramblurr/yubi-goog.git |
#!/usr/bin/env python | |
# -*- coding: utf-8 -*- | |
from scapy.all import * | |
iface = "vboxnet1" | |
sleep = 1 | |
verbose = 1 | |
def arp_poison(psrc, pdst): | |
pkt = ARP() |