user nginx; | |
worker_processes 2; # Set this equal to the number of CPU cores | |
events { worker_connections 1024; } | |
http { | |
server_names_hash_bucket_size 64; | |
types_hash_max_size 2048; | |
server_tokens off; | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; |
This Gist contains my IPTables rules for securing the Asterisk VoIP server. The "string" module is used to identify legitimate users and block attackers.
Learn how to set up your personal VoIP server
↓ ↓ ↓ Scroll down for the IPTables rules ↓ ↓ ↓
user nginx; | |
worker_processes 2; # Set this equal to the number of CPU cores | |
events { worker_connections 1024; } | |
http { | |
server_names_hash_bucket_size 64; | |
types_hash_max_size 2048; | |
server_tokens off; | |
include mime.types; | |
default_type application/octet-stream; | |
sendfile on; |
user nginx; | |
# Set this to match the number of CPU cores | |
worker_processes 2; | |
events { worker_connections 1024; } | |
http { | |
server_names_hash_bucket_size 64; | |
types_hash_max_size 2048; | |
server_tokens off; | |
include mime.types; | |
default_type application/octet-stream; |
This Gist summarizes all malware collected in my Kippo SSH Honeypot from June 2013 to present.
Last updated: March 1, 2016
↓ ↓ ↓ Scroll down for the list ↓ ↓ ↓
Use this bash script to process your Google Voice archive from Google Takeout, and output your detailed call history in a tabular format for easy viewing and analysis.
Learn how to set up your personal VoIP server
↓ ↓ ↓ Scroll down for the script ↓ ↓ ↓
#!/bin/bash | |
# | |
# Auto IP Update Script for Amazon EC2 Classic AND VPC instances | |
# | |
# For detailed instructions, please see: | |
# https://blog.ls20.com/bash-script-for-automatic-ip-updates-on-amazon-ec2-or-digitalocean/ | |
# | |
# Copyright (C) 2013 Lin Song | |
# | |
# This program is free software: you can redistribute it and/or modify it under |