Skip to main content

Tor گمنامی آنلاین


برنامه مجانی و شبکه ای باز(نسل دوم آنین روتینگ ) که کمک می‌کند تا از حریم خصوصی افراد در مقابل سا یت هایی که تجزیه تحلیل ترافیکی می‌کنند دفاع کند. از این برنامه می‌توان به دو صورت افزونه در فایرفاکس و برنامه مستقل استفاده نمود. برای کمک و ملحق شدن به این شبکه می‌توان از هر دو حالت استفاده نمود و به عنوان یک مسیریاب در شبکه تور قرار گرفت. از مهمترین خصو صیات این روش کد شدن اطلاعات در لایه‌های مختلف می‌باشد که امنیت اطلاعات را در طول مسیر و در مسیریابها بالا می برد. از این برنامه می‌توان به عنوان فیلترشکن استفاده کرد. بنابراین در ایران با استفاده از این برنامه می‌توانند به فیس بوک و توییتر و دیگر سایتهای فیلتر شده دسترسی پیدا کرد. همچنین با ملحق شدن به این شبکه می‌توان به گسترده‌تر شدن آن کمک کرد.برای اطلاعات بیشتر و دانلود میتوان از صفحه ویکی پدیا یا وب سایت تور مراجعه کرد


Comments

Popular posts from this blog

Installing MS SQL Server driver on Ubuntu Linux

Although making a connection to SQL Server can be done using unixODBC and FreeTDS, it does not work with some collations on SQL Server 2008. Recently, Microsoft released an ODBC driver for Linux that works on 64-bit systems only. Installing the driver is tricky. I begin by installing the build-essential, which is required for compiling from source. Checkinstall can be installed if you want to add the following application to the package manager. $ sudo apt-get install build-essential  Download unixODBC-2.3.0  and Microsoft ODBC dirver  and extract. $ sudo wget ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.0.tar.gz $ tar xvf unixODBC-2.3.0.tar.gz $ wget http://download.microsoft.com/download/6/A/B/6AB27E13-46AE-4CE9-AFFD-406367CADC1D/Linux6/sqlncli-11.0.1790.0.tar.gz $ tar xvf sqlncli-11.0.1790.0.tar.gz  Install the unixodbc using the following commands: $ ./configure --disable-gui --disable-drivers --enable-iconv --with-iconv-char-enc=UTF8 --with-ico...

Installing pyodbc on ubuntu

Installing pyodbc is straight forward but if  getting     "error: command 'gcc' failed with exit status 1"  when installing pyodbc, make sure you have installed  requirements  as below. sudo apt-get install unixODBC-dev g++ pip install pyodbc

Monkey Patching Django Model Class

Django is shipped with some useful application, also there are lots of third party re-usable application written for Django. Sometime you need to modify or customize these applications(Models of application) to meet your software requirements. One of the usual solution is adding a Model class to have a one-to-one relationship with the third party Models. This solution has some disadvantages such as having more tables and classes which can highly adversely affect database performance, scalability and add more complexity to the software development.  I think of another solution to this problem. I used Django South along with monkey patching of third party Model classes. I added a field to Django user class. Here is a walk through over this approach. 1. Add an application: python manage.py startapplication userpatch 2. Add the following  code to add the new field to the user class from django.db import models from django.contrib.auth.models import User ...