Main > Free Download Search >

Free tor 0.1.2.16 software for linux

tor 0.1.2.16

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 47
Tor 0.1.2.16 / 0.2.0.2 Alpha

Tor 0.1.2.16 / 0.2.0.2 Alpha


Tor is a network of virtual tunnels. more>>
Tor is a toolset for a wide range of organizations and people that want to improve their safety and security on the Internet.
Using Tor can help you anonymize web browsing and publishing, instant messaging, IRC, SSH, and other applications that use the TCP protocol. Tor also provides a platform on which software developers can build new applications with built-in anonymity, safety, and privacy features.
Your traffic is safer when you use Tor, because communications are bounced around a distributed network of servers, called onion routers. Instead of taking a direct route from source to destination, data packets on the Tor network take a random pathway through several servers that cover your tracks so no observer at any single point can tell where the data came from or where its going.
This makes it hard for recipients, observers, and even the onion routers themselves to figure out who and where you are. Tors technology aims to provide Internet users with protection against "traffic analysis," a form of network surveillance that threatens personal anonymity and privacy, confidential business activities and relationships, and state security.
Traffic analysis is used every day by companies, governments, and individuals that want to keep track of where people and organizations go and what they do on the Internet. Instead of looking at the content of your communications, traffic analysis tracks where your data goes and when, as well as how much is sent.
For example, online advertising companies like Fastclick and Doubleclick uses traffic analysis to record what web pages youve visited, and can build a profile of your interests from that. A pharmaceutical company could use traffic analysis to monitor when the research wing of a competitor visits its website, and track what pages or products that interest the competitor.
IBM hosts a searchable patent index, and it could keep a list of every query your company makes. A stalker could use traffic analysis to learn whether youre in a certain Internet cafe.
Tor aims to make traffic analysis more difficult by preventing eavesdroppers from finding out where your communications are going online, and by letting you decide whether to identify yourself when you communicate.
Tors security is improved as its user base grows and as more people volunteer to run servers. Please consider installing it and then helping out. You can also learn more about Tor here.
Part of the goal of the Tor project is to deploy a public testbed for experimenting with design trade-offs, to teach us how best to provide privacy online. We welcome research into the security of Tor and related anonymity systems, and want to hear about any vulnerabilities you find.
Tor is an important piece of building more safety, privacy, and anonymity online, but it is not a complete solution. And remember that this is development code?its not a good idea to rely on the current Tor network if you really need strong anonymity.
Whats New in 0.1.2.16 Stable Release:
- This release fixes a critical security vulnerability that allowed a remote attacker in certain situations to rewrite the users torrc configuration file. This could completely compromise anonymity of users in most configurations, including those running the Vidalia bundles, TorK, etc.
Whats New in 0.2.0.2 Alpha Development Release:
- This release provide new features for people running Tor as both a client and a server.
- Tor may now be run as a DNS proxy.
<<less
Download (1.1MB)
Added: 2007-08-05 License: BSD License Price:
921 downloads
FoxTor 0.7.3

FoxTor 0.7.3


FoxTor is a Firefox extension for anonymous Web browsing using the encrypted TOR network. more>>
FoxTor is a Firefox extension for anonymous Web browsing using the encrypted TOR network.

When you use the Internet, you leave a trail of information that can be used to track your online activities. FoxTor is a tool that helps prevent this. It provides an easy and convenient way to browse the web using the anonymous and encrypted TOR network.

This offers greater privacy compared to regular proxy services or extensions.

We use the "Masked" and "Unmasked" metaphor to help you control when websites can and cannot track you. Once installed, you Mask and Unmask yourself by clicking the icon in the bottom left corner of your web browser.

NOTE: Tor and Privoxy are required. Grab the latest "Tor & Privoxy & Vidalia" bundle from http://tor.eff.org/download.html.en

<<less
Download (0.068MB)
Added: 2007-07-31 License: MPL (Mozilla Public License) Price:
1177 downloads
TorChat 0.9.9.277

TorChat 0.9.9.277


TorChat is a peer to peer instant messenger. more>> TorChat is a peer to peer instant messenger with a completely decentralized design, built on top of Tors location hidden services, giving you extremely strong anonymity while being very easy to use without the need to install or configure anything.
TorChat just runs from an USB drive on any Windows PC. (It can run on Linux and Mac too, in fact it was developed on Linux with cross platform usability in mind from the very first moment on, but the installation on other platforms than Windows is a bit more complicated at the moment)
Tor location hidden services basically means:
Nobody will be able to find out where you are.
If they are already observing you and sniff your internet connection they will not be able to find out
what you send or receice
to whom you are sending or receiving from
where your contacts are located
<<less
Download (7.63MB)
Added: 2009-04-10 License: Freeware Price: Free
243 downloads
TorK 0.18 Beta

TorK 0.18 Beta


TorK project is a Tor Controller for KDE. more>>
TorK project is a Tor Controller for KDE.

TorK allows you to configure, run and update Tor. It also allows you to view the Tor network and choose how you would like to interact with the network.

TorK is very much in an alpha state.

<<less
Download (0.75MB)
Added: 2007-07-31 License: GPL (GNU General Public License) Price:
817 downloads
Odot 1.2.0

Odot 1.2.0


Odot is a task list manager that organizes the tasks hierarchically and emphasizes due ones. more>>
Odot is a task list manager that organizes tasks hierarchically and emphasizes ones which are due.

Since Odot provides features like in-place editing and indenting/unindenting, it can also be used as an outliner.

<<less
Download (0.040MB)
Added: 2005-12-07 License: GPL (GNU General Public License) Price:
1416 downloads
Tk::Mirror 0.02

Tk::Mirror 0.02


Tk::Mirror is a Perl extension for a graphic user interface to update local or remote directories in both directions. more>>
Tk::Mirror is a Perl extension for a graphic user interface to update local or remote directories in both directions.

SYNOPSIS

# in the simplest kind and manner
use Tk::Mirror;
use Tk;
my $mw->MainWindow->new();
$mw->Mirror()->grid();
MainLoop();
# in a detailed kind
use Tk;
use Tk::Mirror;
my $mw = MainWindow->new();
my $mirror = $mw->Mirror(
-localdir => "TestA",
-remotedir => "TestD",
-usr => my_ftp@username.de
-ftpserver => "ftp.server.de",
-pass => "my_password",
-debug => 1,
-delete => "enable",
-exclusions => ["private.txt", "secret.txt"],
-timeout => 60,
-connection => undef, # or a connection to a ftp-server
)->grid();
for(keys(%{$mirror->GetChilds()}))
{
$mirror->Subwidget($_)->configure(
-font => "{Times New Roman} 14 {bold}",
);
}
for(qw/
TreeLocalDir
TreeRemoteDir
/)
{
$mirror->Subwidget($_)->configure(
-background => "#FFFFFF",
-width => 40,
-height => 20,
);
}
for(qw/
bEntryUsr
EntryPass
bEntryFtpServer
bEntryLocalDir
bEntryRemoteDir
/)
{
$mirror->Subwidget($_)->configure(
-background => "#FFFFFF",
);
}
MainLoop();

This is a graphic user interface to compare and update local with remote directories in both directions.

<<less
Download (0.007MB)
Added: 2006-07-28 License: Perl Artistic License Price:
1183 downloads
TorApplet 0.0.6 Alpha

TorApplet 0.0.6 Alpha


TorApplet is a simple GNOME applet for managing and monitoring the basic activities of the Tor daemon. more>>
TorApplet is a simple GNOME applet for managing and monitoring the basic activities of the Tor daemon.

<<less
Download (0.17MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1368 downloads
sslredir 0.9.1

sslredir 0.9.1


sslredir is a simple utility used for redirecting incoming non-SSL connections to outgoing SSL connections. more>>
sslredir is a simple utility used for redirecting incoming non-SSL connections to outgoing SSL connections.

sslredir project is useful for enabling applications such as mail, news, or IRC clients, which do not support SSL, to connect to SSL servers. It also supports connecting to the remote host through a SOCKS4A proxy, so sslredir is ideal for use with Tor.

sslredir is similar to stunnel or socat, except that it is not as general-purpose as socat. It uses less than 450 lines of Python, so it is simple to audit (although it does rely on M2Crypto which relies on OpenSSL, both of which are rather more difficult to audit). sslredir is also designed to work nicely with Tor, whereas I had run into bugs with both socat and stunnel.

<<less
Download (0.011MB)
Added: 2005-11-24 License: GPL (GNU General Public License) Price:
1429 downloads
JTVD 0.4.3

JTVD 0.4.3


JTVD is a graphical frontend for popular command line programs such as MEncoder, transcode, MJPEG Tools, DVD Author. more>>
JTVD is a graphical frontend for popular command line programs such as MEncoder, transcode, MJPEG Tools, toolame, DVDAuthor, and growisofs.
It makes it easy to grab videos from Video4Linux devices such as TV cards, encode the data to DVD-compatible MPEG2 files, and author and burn a video DVD with a simple title menu.
Main features:
- Watch TV
- Grab from the TV card to AVI files
- Schedule one or more recording tasks
- Encode video files to "DVD compatible" MPEG2 program streams
- Basic DVD authoring incl. creation of simple title menus
- Create the DVD image and burn it
- Burn an existing Video DVD image
<<less
Download (0.26MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1523 downloads
Gtk2::Ex::PodViewer 0.16

Gtk2::Ex::PodViewer 0.16


Gtk2::Ex::PodViewer is a Gtk2 widget for displaying Plain old Documentation (POD). more>>
Gtk2::Ex::PodViewer is a Gtk2 widget for displaying Plain old Documentation (POD). NB: This module used to be called Gtk2::PodViewer. That module is now a stub that points to this module.

SYNOPSIS

use Gtk2 -init;
use Gtk2::Ex::PodViewer;

my $viewer = Gtk2::Ex::PodViewer->new;

$viewer->load(/path/to/file.pod); # load a file
$viewer->load(IO::Scalar); # load a module
$viewer->load(perlvar); # load a perldoc
$viewer->load(bless); # load a function

$viewer->show; # see, its a widget!

my $window = Gtk2::Window->new;
$window->add($viewer);

$window->show;

Gtk2->main;

Gtk2::Ex::PodViewer is a widget for rendering Perl POD documents. It is based on the Gtk2::TextView widget and uses Pod::Parser for manipulating POD data.

<<less
Download (0.015MB)
Added: 2006-07-13 License: Perl Artistic License Price:
1198 downloads
Strasheela 0.8.3

Strasheela 0.8.3


Strasheela is a highly expressive constraint-based music composition system. more>>
Strasheela is a highly expressive constraint-based music composition system. The Strasheela user declaratively states a music theory and the computer generates music which complies with this theory.
A theory is formulated as a constraint satisfaction problem (CSP) by a set of rules (constraints) applied to a music representation in which some aspects are expressed by variables (unknowns).
Music constraint programming is style-independent and is well-suited for highly complex theories (e.g. a fully-fledged theory of harmony). The results can be output into various formats including MIDI, Lilypond, and Csound.
Enhancements:
- This release greatly extends the available documentation.
- It now comes with a tutorial (draft) and includes several examples with musical output, an explanation of their underlying music theory, remarks on their implementation, and the full source code.
- Substantial background information on Strasheela is given by a monograph.
- Also, many additions and bugfixes have been made to the system.
<<less
Download (0.75MB)
Added: 2007-08-08 License: GPL (GNU General Public License) Price:
809 downloads
libTagEdit 1.1.1

libTagEdit 1.1.1


libTagEdit is a simple C++ and Python class library for music tag editing. more>>
libTagEdit is a simple C++ and Python class library for music tag editing.

<<less
Download (0.33MB)
Added: 2005-10-12 License: GPL (GNU General Public License) Price:
1472 downloads
FW1-Loggrabber 1.11.1

FW1-Loggrabber 1.11.1


FW1-Loggrabber is a simple LEA (Log Export API) client for Checkpoint Firewall-1. more>>
FW1-Loggrabber is a simple LEA (Log Export API) client for Checkpoint Firewall-1. It was designed to access Firewall-1 Logfiles from commandline from any host in the network.
Enhancements:
- fixed bug with filter arguments (src, dst, ...)
- fixed bug for ODBC support of Oracle 9
- recompiled binaries using CPs LEA-hotfix
<<less
Download (0.81MB)
Added: 2006-07-12 License: GPL (GNU General Public License) Price:
1203 downloads
ScatterChat 1.0.1

ScatterChat 1.0.1


ScatterChat is a HACKTIVIST WEAPON designed to allow non-technical human rights activists and political dissidents. more>>
ScatterChat is a HACKTIVIST WEAPON designed to allow non-technical human rights activists and political dissidents to communicate securely and anonymously while operating in hostile territory. ScatterChat is also useful in corporate settings, or in other situations where privacy is desired.

It is a secure instant messaging client (based upon the Gaim software) that provides end-to-end encryption, integrated onion-routing with Tor, secure file transfers, and easy-to-read documentation.

Its security features include resiliency against partial compromise through perfect forward secrecy, immunity from replay attacks, and limited resistance to traffic analysis... all reinforced through a pro-actively secure design.
<<less
Download (5.8MB)
Added: 2006-07-25 License: GPL (GNU General Public License) Price:
1195 downloads
Net::UploadMirror 0.06

Net::UploadMirror 0.06


Net::UploadMirror is a Perl extension for mirroring a local directory via FTP to the remote location. more>>
Net::UploadMirror is a Perl extension for mirroring a local directory via FTP to the remote location.

SYNOPSIS

use Net::UploadMirror;
my $um = Net::UploadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
);
$um->Update();

or more detailed
my $um = Net::UploadMirror->new(
ftpserver => "my_ftp.hostname.com",
usr => "my_ftp_usr_name",
pass => "my_ftp_password",
localdir => "home/nameA/homepageA",
remotedir => "public",
debug => 1 # 1 for yes, 0 for no
timeout => 60 # default 30
delete => "enable" # default "disabled"
connection => $ftp_object, # default undef
exclusions => ["private.txt", "Thumbs.db", ".sys", ".log"],
);
$um->SetLocalDir("home/nameB/homepageB");
print("hostname : ", $um->get_ftpserver(), "n");
$um->Update();

This module is for mirroring a local directory to a remote location via FTP. For example websites, documentations or developmentstuff which ones were worked on locally. It is not developt for mirroring large archivs. But there are not in principle any limits.

<<less
Download (0.006MB)
Added: 2007-04-10 License: Perl Artistic License Price:
932 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 4
  • 1
  • 2
  • 3
  • 4