備忘録

備忘録

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

C#でCRC32を計算する

C#

Ⅰ. はじめに C#でCRC32を計算するクラスを作成しました。 ホントはSystem.Security.Cryptography.HashAlgorithmを実装するのが筋です。 いつか実装して記事を修正します(そのうちやります…) Ⅱ. 使い方 バイト配列のCRC32を計算する byte[] bytes = new byt…

ファイル調査に使えるツール達

Home of Hexinator - The Professional Hex Editor - Hexinator foremost foremost target binwalk binwalk -eM target X-Ripperbinwalkとほぼ同じ。GUIがある。Windowsのみ。 FTK Imagerbinwalkとほぼ同じ。GUIがある。Windowsのみ。

squid3で匿名串にする

squid.conf を編集する /etc/squid/squid.conf request_header_access X-Forwarded-For deny all request_header_access Via deny all request_header_access Cache-Control deny all reply_header_access X-Forwarded-For deny all reply_header_access Via…

squidで上位プロキシを設定する

一番下に以下の2行追加 /etc/squid/squid.conf cache_peer [上位プロキシのホスト] parent [上位プロキシのポート] [ICPポート番号] no-query login=[ユーザー名]:[パスワード] never_direct allow all 例 上位プロキシ 192.168.0.100:3128 ユーザー名 abc@d…