# skyhook **Repository Path**: desiderio/skyhook ## Basic Information - **Project Name**: skyhook - **Description**: https://github.com/blackhillsinfosec/skyhook.git Skyhook:一款功能强大的双向HTTP文件传输混淆工具 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2023-11-10 - **Last Updated**: 2024-04-26 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Skyhook Skyhook is a REST-driven utility used to smuggle files into and out of networks defended by IDS implementations. It comes with a pre-packaged web client that uses a blend of React, vanilla JS, and web assembly to manage file transfers. # Key Links - [Download here](https://github.com/blackhillsinfosec/skyhook/releases) - See the [user documentation](https://publish.obsidian.md/bhis-pub-user-docs/Documentation/Skyhook/Skyhook+Index) to get started # Features - Round trip file content obfuscation - User-configurable obfuscation chaining - Self-signed and Lets Encrypt certificate procurement methods - Embedded web applications for both configuration and file transfers. - Server fingerprinting resiliency techniques: - Encrypted loaders capable of dynamically encrypting interface files as the file transfer interface is rendered - API and web resource path randomization # Brief Description _Note:_ See the [user documentation](https://publish.obsidian.md/bhis-pub-user-docs/Documentation/Skyhook/Skyhook+Index) for more thorough discussion of Skyhook and how it functions. Skyhook's file transfer server seamlessly obfuscates file content with a user-configured series of obfuscation algorithms prior to writing the content to response bodies. Clients, which are configred with the same obfuscation algorithms, deobfuscate the file content prior to saving the file to disk. A file streaming technique is used to manage the HTTP transactions in a chunked manner, thus facilitating large file transfers. ```mermaid flowchart subgraph sg-cloudfront[Cloudfront CDN] cf-listener(443/tls) end subgraph sg-vps[VPS] subgraph sg-skyhook[Skyhook Servers] admin-listener(Admin Server
45000/tls) transfer-listener(Transfer Server
45001/tls) end config-file(Config File
/var/skyroot/config.yml) admin-listener -..->|Reads &
Manages| config-file webroot(Webroot
/var/skyhook/webroot) transfer-listener -..->|Serves From &
Writes Cleartext
Files To| webroot end op-browser(Operator
Web Browser) -->|Administration
Traffic| admin-listener op-browser <-->|Obfuscated
Data| transfer-listener subgraph sg-corp[Corporate Environment] subgraph sg-compromised[Beachhead Host] comp-browser(Web Browser) -->|Reads &
Writes| cleartext-file(Cleartext Files) end end comp-browser <-->|Obfuscated
Data| cf-listener <-->|Obfuscated
Data| transfer-listener ``` # A Brief Example For example, here is a working obfuscation configuration: ![image](https://github.com/blackhillsinfosec/skyhook/assets/11574161/d69901c7-6937-4a76-83b8-3aba4dc732f3) And here is the file transfer interface. Clicking "Download" results in the file being retrieved in chunks that are encrypted with the chain of obfuscation methods configured above. JavaScript deobfuscates the file before prompting the user to save it to disk. ![image](https://github.com/blackhillsinfosec/skyhook/assets/11574161/06616421-cc3c-4ee7-bc95-6c1f9bb651c1) Below is a request stemming from a download being inspected with Burp. Key elements of the transaction are encrypted to evade detection. ![image](https://github.com/blackhillsinfosec/skyhook/assets/11574161/5f2a683d-cbe1-4bf9-bcae-803ac24ab863)