by alexander white ©
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
Seed of Random Algorithm | |
The most important security flaw is in creating random encryption key process. I used .Net’s Random Class to generate random strings. Random Class uses Environment.TickCount (gets the number of milliseconds elapsed since the system started) as seed. Which is reduces the surface of brute forcing and beyond that it’s easy to predict. | |
<snippet1> | |
Reuse of the IV | |
Algorithm uses the same IV for every file in encryption process. |
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/bash | |
a=`cat <<-EOF | |
https://github.com/averagesecurityguy/scripts.git | |
https://github.com/zackiles/Rspoof.git | |
https://github.com/sh1nu11bi/sshuttle.git | |
https://github.com/sh1nu11bi/evercookie.git | |
https://github.com/sh1nu11bi/cortana-scripts.git | |
https://github.com/sh1nu11bi/Generate-Macro.git | |
https://github.com/googleinurl/SCANNER-INURLBR.git | |
https://github.com/1N3/BruteX.git |
I hereby claim:
- I am sh1nu11bi on github.
- I am sh1nu11bi (https://keybase.io/sh1nu11bi) on keybase.
- I have a public key whose fingerprint is 3BA5 FB9B C6C3 4812 15D8 04CB 0FBA 146F E8FD 3B2B
To claim this, I am signing this object:
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
Scapy: send, sniff and dissect and forge network packets. Usable interactively or as a library | |
pypcap, Pcapy and pylibpcap: several different Python bindings for libpcap | |
libdnet: low-level networking routines, including interface lookup and Ethernet frame transmission | |
dpkt: fast, simple packet creation/parsing, with definitions for the basic TCP/IP protocols | |
Impacket: craft and decode network packets. Includes support for higher-level protocols such as NMB and SMB | |
pynids: libnids wrapper offering sniffing, IP defragmentation, TCP stream reassembly and port scan detection | |
Dirtbags py-pcap: read pcap files without libpcap | |
flowgrep: grep through packet payloads using regular expressions | |
Knock Subdomain Scan, enumerate subdomains on a target domain through a wordlist | |
Mallory, extensible TCP/UDP man-in-the-middle proxy, supports modifying non-standard protocols on the fly |
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
1.Download Version/acrh for sublime text2 | |
http://www.sublimetext.com/2 | |
Packages download | |
I used to use Sublime Text 2 with |
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
This process does not involve any API hooking, so we can fly under most anti-virus software's radar. | |
localhost$ easy_install pywin32 wmi | |
http://sourceforge.net/projects/pywin32 |
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 ctypes import * | |
import pythoncom | |
import pyHook | |
import win32clipboard | |
user32 = windll.user32 | |
kernel32 = windll.kernel32 | |
psapi = windll.psapi | |
current_window = 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
import urllib2 | |
import urllib | |
import threading | |
import Queue | |
threads = 5 | |
target_url = "http://testphp.vulnweb.com" | |
wordlist_file = "/tmp/all.txt" # from SVNDigger | |
resume = None | |
user_agent = "Mozilla/5.0 (X11; Linux x86_64; rv:19.0) Gecko/20100101 Firefox/19.0" |
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
# dirlister.py | |
__version__ = "0.1" | |
import os | |
def run(**args): | |
print "[*] Dirlister module." | |
files = os.listdir(".") | |
return str(files) |