Skip to content

Instantly share code, notes, and snippets.

View kacchan822's full-sized avatar

kacchan822 kacchan822

View GitHub Profile
@kacchan822
kacchan822 / rirs2csv.py
Last active February 6, 2016 03:48
create_ipaddress_country_list
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright (c) 2016 Katsuya SAITO
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
#
# version: 0.1.0 (2016.02.05)
#
@kacchan822
kacchan822 / letsencrypt_cert_autoupdate_webroot.sh
Last active February 19, 2016 00:17
letsencrypt_cert_autoupdate
#!/bin/bash
#
# Copyright (c) 2016 Katsuya SAITO
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
#
# @(#) letsencrypt_cert_autoupdate_webroot.sh ver.0.1.0 2016.01.31
#
# Usage:
#
@kacchan822
kacchan822 / swhois.py
Last active March 3, 2016 13:41
simple_whois.py
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
#
import sys
import ipaddress
from ipwhois import IPWhois
def swhois(ip):
obj = IPWhois(ip)
""" generate kana """
def rubi(letters):
"""Generate kana.
alphabet upper case letter --> 'カタカナ'(大文字)
alphabet lowe case letter --> 'カタカナ'
none alphabet letter --> not convert to kana.
each kana is joined by '・'.
@kacchan822
kacchan822 / gen_crypt_password.py
Created September 12, 2016 05:43
Genarate MD5-CRYPT password string from PLAIN password string for python 2.x or higher.
def gen_crypt_password(password):
from crypt import crypt
import random
""" MD5-CRYPTパスワード文字列を生成 for python2.x
"salt"は[a-zA-Z0-9./]から選ばえれることになっているので、
chr()でアルファベット大文字(65~91)、小文字(97~123)のシーケンスを生成して、
  .と/を付け加えて、"salt"の元とする
#!/bin/bash
#
# instal rbenv and then, install ruby 2.3.0 and gem update, install bundler.
# This script is written for CentOS 7.
#
set -e
if [ ! -e /etc/redhat-release ]; then
echo "This script can only run on CentOS!"
@kacchan822
kacchan822 / rDNSlookup.sh
Last active October 28, 2016 12:24
rDNSlookup
#!/bin/bash
#
# Copyright (c) 2016 Katsuya SAITO
# This software is released under the MIT License.
# http://opensource.org/licenses/mit-license.php
#
# @(#) rDNSlookup.sh ver.1.0.2 2016.01.29
#
# Usage:
# rDNSlookup.sh file
@kacchan822
kacchan822 / CsvResponseMixin.py
Created May 22, 2017 12:16
CSV Response Mixin for Django -- python3.5 , Django 1.11
import csv
import email.utils
from django.http import HttpResponse
class CsvResponseMixin(object):
filename = 'csvfile.csv'
content_type = 'text/csv; charset=UTF-8'
#!/usr/bin/perl
use strict;
use Cache::Memcached;
my $memcached = Cache::Memcached->new({
servers => ["127.0.0.1:11211"]
});
print "Set (key, hoge) exptime:12sec\n";
$memcached->add('key', 'hoge', 12);
@kacchan822
kacchan822 / sfvpn-ddos.conf
Created January 20, 2017 04:57
Fail2ban filter for SoftEther VPN server
# Fail2Ban sfvpn-ddos filter
#
[INCLUDES]
before = common.conf
[Definition]
failregex = A DoS attack on the TCP Listener \(port \d+\) has been detected\. The connecting source IP address is <HOST>, port number is \d+\. This connection will be forcefully disconnected now\.
ignoreregex =