Raven is a Python tool that extends the capabilities of the http.server
Python module by offering a self-contained file upload web server. While the common practice is to use python3 -m http.server 80
to serve files for remote client downloads, Raven addresses the need for a similar solution when you need the ability to receive files from remote clients. This becomes especially valuable in scenarios such as penetration testing and incident response procedures when protocols such as SMB may not be a viable option.
While the majority of the hard work is already being handled by the http.server module, it presents us with an opportunity to implement additional security and ease of use features without overcomplicating the overall implementation. These features currently include:
-
IP Access Restrictions: Optionally grants the ability to restrict access based on client IP addresses. You can define this access via a single IP, a comma-delimited list or by using CIDR notation.
-
Organized Uploads: Optionally organizes uploaded files into subfolders based on the remote client's IP address in a named or current working directory. Otherwise the default behavior will upload files in the current working directory.
-
File Sanitation: Sanitizes the name of each uploaded file prior to being saved to disk to help prevent potential abuse.
-
Clobbering: Verifies that the file does not already exist before it's written to disk. If it already exists, an incrementing number is appended to the filename to prevent clashes and ensure no data is overwritten.
-
Detailed Logging: Raven provides detailed logging of file uploads and interaction with the http server, including the status codes sent back to a client, its IP address, timestamp, and the saved file's location in the event a file is uploaded.
Kali Linux (APT Package)
If you are using Kali Linux, you can easily install Raven using APT.
sudo apt update
sudo apt install raven
Manual Installation (Git Clone)
Alternatively, if you prefer to manually install Raven or if you are using an operating system other than Kali Linux, you can use Git to clone the Raven repository from GitHub.
git clone https://github.com/gh0x0st/raven.git
Raven is straightforward to use and includes simple command-line arguments to manage the included feature sets:
raven <listening_ip> <listening_port> [--allowed-ip <allowed_client_ip>] [--upload-folder <folder>] [--organize-uploads]
- <listening_ip>: The IP address for our http handler to listen on
- <listening_port>: The port for our http handler to listen on
- --allowed-ip <allowed_client_ip>:Restrict access to our http handler by IP address (optional)
- --upload-folder : "Designate the directory to save uploaded files to (default: current working directory)
- --organize-uploads: Organize file uploads into subfolders by remote client IP
Start the HTTP server on all available network interfaces, listening on port 443:
raven 0.0.0.0 443
Start the HTTP server on all on a specific interface (192.168.0.12), listening on port 443 and restrict access to 192.168.0.4:
raven 192.168.0.12 443 --allowed-ip 192.168.0.4
Start the HTTP server on all on a specific interface (192.168.0.12), listening on port 443, restrict access to 192.168.0.4 and save uploaded files to /tmp:
raven 192.168.0.12 443 --allowed-ip 192.168.0.4 --upload-folder /tmp
Start the HTTP server on all on a specific interface (192.168.0.12), listening on port 443, restrict access to 192.168.0.4 and save uploaded files to /tmp organized by remote client ip:
raven 192.168.0.12 443 --allowed-ip 192.168.0.4 --upload-folder /tmp --organize-uploads
Uploading files using PowerShell:
function Invoke-SendRaven {
param (
[string]$Uri,
[string]$FilePath
)
# Target File
$File = Get-Item $FilePath
$Content = [System.IO.File]::ReadAllBytes($File.FullName)
$Boundary = [System.Guid]::NewGuid().ToString()
# Request Headers
$Headers = New-Object "System.Collections.Generic.Dictionary[[String],[String]]"
$Headers.Add("Content-Type", "multipart/form-data; boundary=$Boundary")
# Create the request
$Request = [System.Net.WebRequest]::Create($Uri)
$Request.Method = "POST"
$Request.ContentType = "multipart/form-data; boundary=$Boundary"
# Request Body
$Stream = $Request.GetRequestStream()
$Encoding = [System.Text.Encoding]::ASCII
$Stream.Write($Encoding.GetBytes("--$Boundary`r`n"), 0, ("--$Boundary`r`n").Length)
$Stream.Write($Encoding.GetBytes("Content-Disposition: form-data; name=`"file`"; filename=`"$($File.Name)`"`r`n"), 0, ("Content-Disposition: form-data; name=`"file`"; filename=`"$($File.Name)`"`r`n").Length)
$Stream.Write($Encoding.GetBytes("Content-Type: application/octet-stream`r`n`r`n"), 0, ("Content-Type: application/octet-stream`r`n`r`n").Length)
$Stream.Write($Content, 0, $Content.Length)
$Stream.Write($Encoding.GetBytes("`r`n--$Boundary--`r`n"), 0, ("`r`n--$Boundary--`r`n").Length)
$Stream.Close()
# Upload File
$Response = $Request.GetResponse()
$Response.Close()
}
# Usage
Invoke-SendRaven -Uri http://192.168.0.12:443/ -FilePath $ENV:TEMP\HostRecon.txt
Uploading files using Python3:
#!/usr/bin/env python3
import requests
import uuid
# Listener
url = "http://192.168.0.12:443/"
# Target File
file_path = "/path/to/file"
file_name = file_path.split("/")[-1]
with open(file_path, "rb") as file:
file_content = file.read()
boundary = str(uuid.uuid4())
# Request Headers
headers = {
"Content-Type": f"multipart/form-data; boundary={boundary}"
}
# Request Body
body = (
f"--{boundary}\r\n"
f'Content-Disposition: form-data; name="file"; filename="{file_name}"\r\n'
"Content-Type: application/octet-stream\r\n\r\n"
f"{file_content.decode('ISO-8859-1')}\r\n"
f"--{boundary}--\r\n"
)
# Upload File
requests.post(url, headers=headers, data=body)
This project is licensed under the MIT License - see the LICENSE file for details.