Skip to content

Instantly share code, notes, and snippets.

View dawoodjee's full-sized avatar
🤔
Thinking of building helpful AI products

Adam dawoodjee

🤔
Thinking of building helpful AI products
View GitHub Profile
@dubs3c
dubs3c / cuckoo-install.sh
Last active February 3, 2024 10:35
Cuckoo Sandbox dependency install script for Ubuntu 20.04
#!/bin/bash
#
# Cucko Sanbox install script
# -----------------------------
# Tested on Ubuntu 20.04 LTS
# ~ dubs3c
#
# Add virtualbox repo to system
@asifbacchus
asifbacchus / headersSecurity.conf
Last active September 2, 2022 10:54
NGINX configuration where the machine hosting mailcow is acting as a reverse proxy. Includes section where certain domain names/CNAMEs can be redirected to webmail (SOGo) by default instead of the admin panel and said panel is accessed via the `/config` sub-uri instead.
# these are common security headers that you can easily add to locations or
# entire server blocks by including this file
# include /etc/nginx/headersSecurity.conf;
add_header Feature-Policy "geolocation 'self'";
add_header Referrer-Policy "same-origin" always;
add_header X-Content-Type-Options "nosniff" always;
add_header X-Download-Options noopen;