Shammer's Philosophy

My private adversaria

2015-01-01から1ヶ月間の記事一覧

Remote SSL Server cipher check script with python - 20150130

Debian wheezy has python 2.7.3 and it's SSL library looks disabling server-certificate-verify as default. The script I wrote at Remote SSL Server cipher check script with openssl - 20150126 - Shammerism uses openssl and there is no way to …

Remote SSL Server cipher check script with openssl - 20150126

SSL

This script is to be used for the check that I wrote in this article. There is a similar script with curl which I wrote before in this article, but it is better if I can get a CA certificates that signs a target server certificate. #!/bin/…

SSL Cipher Check Start!!!

SSL

Introduction In this article, I referred that there are several ciphers in SSL but I experienced only RSA. Then, I would like to be able to become that I can deal with other ciphers. But, the way creating SSL certificates I am familiar wit…

My git procedure at 20150116

This is just my memo. Check if there are new files to be tracked If new tracking files are exists, add those files by git add $FILE_NAME Check the diff by git diff Consider the commit comment based on diff result git commit git push

How to check the diff between git commited files and modified or created files?

git diff shows the difference between old commited files and new files. Here is an example. $ git diff diff --git a/logger.lisp b/logger.lisp index dda9a4c..2fa0def 100644 --- a/logger.lisp +++ b/logger.lisp @@ -6,10 +6,17 @@ (provide 'my-…

Add file to git track target by CLI on Debian wheezy

The way how to clone the git repository from remote git repository to local is written as Try git on Debian wheezy - Shammerism. Today's article is how to add git track target.At first, git status command teaches which files are tracked al…

Try git on Debian wheezy

I would like to use git for my private text files. At first, I use github but this permits only public access if using free account. But, I want to use git in secret. So, I created an account for Bitbucket | The Git solution for profession…

Install Emacs 24.4 and other related tools version 20150107

Switching root and execute following steps. Install Fonts Install Monaco cd /usr/share/fonts/truetype mkdir ttf-monaco cd ttf-monaco wget http://www.gringod.com/wp-upload/software/Fonts/Monaco_Linux.ttf mkfontdir cd .. fc-cache Install Osa…