Main > Free Download Search >

Free anonymous software for linux

anonymous

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 172
IP::Anonymous 0.04

IP::Anonymous 0.04


IP::Anonymous is a Perl port of Crypto-PAn to provide anonymous IP addresses. more>>
IP::Anonymous is a Perl port of Crypto-PAn to provide anonymous IP addresses.

SYNOPSIS

use IP::Anonymous;
@key = (0..31);
my $object = new IP::Anonymous(@key);
print $object->anonymize("192.0.2.0")."n";

This is a Perl port of Crypto-PAn. Crypto-PAn is a cryptography-based sanitization tool for network trace or log data. The tool has the following properties:

One-to-one

The mapping from original IP addresses to anonymized IP addresses is one-to-one.

Prefix-preserving

The IP address anonymization is prefix-preserving. That is, if two original IP addresses share a k-bit prefix, their anonymized mappings will also share a k-bit prefix.

Consistent across traces

Multiple traces can be sanitized in a consistent way, over time and across locations, even though the traces might be sanitized separately at different time and/or at different locations.

Cryptography-based

To sanitize traces, trace owners provide a secret key. Anonymization consistency across multiple traces is achieved by the use of the same key. The construction of IP::Anonymous preserves the secrecy of the key and the (pseudo)randomness of the mapping from an original IP address to its anonymized counterpart.

This Perl port of Crypto-PAn uses similar logic to that found in Crypto-PAn 1.0, but most importantly maintains consistency in the process so that regardless of implementation, using the same key in each will give consistent results.

USAGE

$object = new IP::Anonymous(@key)

Initializes the electronic codebook object with a 32 8-bit decimal array. This array, consisting of 32 decimals between 0 and 255 inclusive, is the user defined private key for this anonymization session. This 256 bit key should be kept private. The key can be used across sessions to maintain consistent mappings between the original and the anonymized IP addresses.

$object->anonymize($address)

Called with a dotted quad IP address string (e.g. 192.0.2.0). Returns an anonymized version of that IP address as a dotted quad string.

<<less
Download (0.005MB)
Added: 2007-04-17 License: Perl Artistic License Price:
935 downloads
Claros Anonymity 1.5

Claros Anonymity 1.5


Claros Anonymity is a servlet that allows anonymous browsing. more>>
Claros Anonymity is a servlet that allows anonymous browsing. It acts like a proxy, hiding the end users IP.
Claros Anonymity also enables the user to bypass a URL/IP based corporate firewall, as the requests are all directed to the machine running the servlet.
Installation:
For Tomcat Users :
Copy the war file to $TOMCAT_INSTALL_DIR/webapps folder
Start Tomcat
For other application servers, you shall know what to do with a war file. If war extension means nothing to you, just unzip is it, if it was a regular zip archive.
Claros Anonymity is an out of box application and no configuration is needed. If you want further assistance details are bundled with the readme.txt file.
Enhancements:
- Many bugs have been fixed.
- HTML Forms are working.
- HTTP POST is also supported.
- There is a brand new modern look and feel.
<<less
Download (0.28MB)
Added: 2006-09-20 License: GPL (GNU General Public License) Price:
1136 downloads
Anon Proxy Server 0.99

Anon Proxy Server 0.99


Anon Proxy Server is a fast http, https, socks caching proxy server. more>>
Anon Proxy Server is a fast http, https, socks caching proxy server. Easy web based configuration, optional p2p anonymous mode.
Main features:
- Easy Configuration - Web based, no editing text configuration files.
- Memory - No big databases are kept in memory, no matter how large the cache is, memory usage will only increase when more users access it at the same time.
- Speed - To see how much cpu the proxy uses, run top or task manager. Then open multiple windows and hit reload continously, on my computer I usually run out of bandwidth before it goes near 3-5% cpu usage.
- Shared Cache - Can be used as a general cache for all users of a computer/network instead of one cache per profile.
- Automatic config - Auto generates the .pac file for automatic proxy settings, no more updating in the do not use proxy section of individual users browsers.
- Anonymous P2P proxy - Joining the anonymous proxy network will allow you to use other peoples proxys for browsing and allow them to use yours.
- SOCKS - Supports enough of SOCKS to run ftp, most Instant messengers, irc, limewire, etc.
- User authentication - Supports external user authentication.
Enhancements:
- The program now checks for errors in access configuration.
- Variable timeout values were added.
- Log rotation was fixed.
- Occasional crashes on a bad URL were fixed.
- The auto configuration .pac file was fixed, so it should work even if the proxys URL was not set properly.
- Anon proxy defaults to 3 keys now for more reliability.
<<less
Download (0.65MB)
Added: 2006-12-14 License: zlib/libpng License Price:
1048 downloads
Incognito Live CD/USB i686

Incognito Live CD/USB i686


Incognito Live CD/USB CD provides software to use various Internet technologies while keeping the user anonymous. more>>
Incognito Live CD/USB CD provides software to use various Internet technologies while keeping the user anonymous. The project is based primarily on Tor while including supporting applications. The target use case is that of using a public computer, such as in a library, securely.

This CD may also be copied to a USB drive to provide persisted user settings. The intended user base are those who would like to perform standard Internet communications such as WWW, mail, IRC, IM, etc, while being confident that their anonymity is not compromised. Power users who want precise control over the application and network configuration may be disappointed.

There are full and tiny versions of the CD. The tiny version is intended to fit on small media and basically provides an anonymous web browser. The full version supports a variety of Internet applications.

The Gentoo Catalyst release build tool is used to build the CD. This tool is designed to make the CD easy to maintain. For an update of only Tor it takes a simple version bump and 30 minutes for the tiny CD, two hours for the full version. Human effort is minimal, Catalyst does most of the work. A full update of all software takes several hours to compile, but this is seldom done or needed and again generally requires little human effort. Adding or removing software to/from the CD is also generally trivial.

The following applications are kept up to date as soon as possible. Others may be updated sooner if a major security problem occurs (Firefox, etc.)

*Tor
*TorK
*Vidalia
*Privoxy
*Mixminion

Remaining applications, including the base system, will be updated on a roughly two month schedule.
<<less
Download (MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
891 downloads
Symbol 0.02

Symbol 0.02


Symbol is a Perl module created to manipulate Perl symbols and their names. more>>
Symbol is a Perl module created to manipulate Perl symbols and their names.

SYNOPSIS

use Symbol;

$sym = gensym;
open($sym, "filename");
$_ = ;
# etc.

ungensym $sym; # no effect

# replace *FOO{IO} handle but not $FOO, %FOO, etc.
*FOO = geniosym;

print qualify("x"), "n"; # "Test::x"
print qualify("x", "FOO"), "n" # "FOO::x"
print qualify("BAR::x"), "n"; # "BAR::x"
print qualify("BAR::x", "FOO"), "n"; # "BAR::x"
print qualify("STDOUT", "FOO"), "n"; # "main::STDOUT" (global)
print qualify(*x), "n"; # returns *x
print qualify(*x, "FOO"), "n"; # returns *x

use strict refs;
print { qualify_to_ref $fh } "foo!n";
$ref = qualify_to_ref $name, $pkg;

use Symbol qw(delete_package);
delete_package(Foo::Bar);
print "deletedn" unless exists $Foo::{Bar::};

Symbol::gensym creates an anonymous glob and returns a reference to it. Such a glob reference can be used as a file or directory handle.

For backward compatibility with older implementations that didnt support anonymous globs, Symbol::ungensym is also provided. But it doesnt do anything.

Symbol::geniosym creates an anonymous IO handle. This can be assigned into an existing glob without affecting the non-IO portions of the glob.

Symbol::qualify turns unqualified symbol names into qualified variable names (e.g. "myvar" -> "MyPackage::myvar"). If it is given a second parameter, qualify uses it as the default package; otherwise, it uses the package of its caller. Regardless, global variable names (e.g. "STDOUT", "ENV", "SIG") are always qualified with "main::".

Qualification applies only to symbol names (strings). References are left unchanged under the assumption that they are glob references, which are qualified by their nature.

Symbol::qualify_to_ref is just like Symbol::qualify except that it returns a glob ref rather than a symbol name, so you can use the result even if use strict refs is in effect.

Symbol::delete_package wipes out a whole package namespace. Note this routine is not exported by default--you may want to import it explicitly.

<<less
Download (0.015MB)
Added: 2007-05-14 License: Perl Artistic License Price:
894 downloads
Kommute 0.20

Kommute 0.20


Kommute is a cross platfrom file sharing client using the anonymous network MUTE. Developped using C++ and Qt. For windows and linux, portable to other environments. You can try it by following the installation instructions below. more>>

Kommute 0.20 brings a handy tool to share file using the anonymous network MUTE. Developped using C++ and Qt. For windows and linux, portable to other environments. You can try it by following the installation instructions below.

Major Features:

  1. Kommute use the anonymous network MUTE. Protecting your privacy.
  2. Kommute is multisource. Allowing a good download speed.
  3. Kommute is fully compatible with MUTE. So you can download files shared by MUTE customers, and vice versa.
  4. Kommute uses the "swarming". This means that it loads portions of the file you want in the middle of the file. Thus the hosts who have entrusted a part of the file can send it, and if the original source disappears before someone else has downloaded the entire file, it is still possible to get the complete file.
  5. Kommute allow to start multiple search. You can then navigate between the different tabs.
  6. Kommute has a two level search system. You first start a search for keywords. Then you can filter the results with a regular expression.
  7. Swarming
  8. Multiple simultaneous downloads / uploads
  9. Multi-source downloads
  10. Download Resuming
  11. Point-to-Point traffic encryption with RSA/AES
  12. Multiple shared folders
  13. Multi-language user interface
  14. Search Filter
  15. Graphical User Interface written with Qt4 toolkit
  16. Styles support
  17. Stylesheet support
<<less
Added: 2009-07-23 License: GPL Price: FREE
11 downloads
 
Other version of Kommute
Kommute 0.1Niels Sandholt Busch - Kommute is a KDE file sharing application using the anonymous file sharing network MUTE. Kommute. Kommute is a KDE file sharing application
License:GPL (GNU General Public License)
Download (0.90MB)
1419 downloads
Added: 2005-12-06
openModeller 0.4.2

openModeller 0.4.2


openModeller is a spatial distribution modelling library. more>>
openModeller library is a spatial distribution modelling library, providing a uniform method for modelling distribution patterns using a variety of modelling algorithms.
openModeller can be used via programatic interfaces, including SOAP and SWIG-python, as well as via a user friendly desktop grapical user interface and a GIS plugin.
Installation:
1. Install proj4 library, (known to work with version 4.4.7)
2. Install the GDAL library, (known to work with version 1.2.5)
3. Install GSL - GNU Scientific Library, (known to work with version 1.4)
4. Download the latest openModeller package from the sourceforge site, uncompress it, get into the "modeller" directory and then:
$ ./configure (see more options in the section "Compile options")
$ make
$ make install
Alternatively, you can try the latest version from CVS:
$ cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/openmodeller login
$ cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/openmodeller co modeller
$ cd modeller
$ ./autogen.sh
$ make
$ make install
Enhancements:
- Included ROC curve as part of model statistics, added metric Chebyshev in the Environmental Distance algorithm, changed Log object to a singleton, other minor bugfixes.
<<less
Download (MB)
Added: 2007-05-08 License: GPL (GNU General Public License) Price:
899 downloads
TinyDisk 1.0

TinyDisk 1.0


TinyDisk is a file system that runs on top of link the TinyURL shortening service and similar services such as Nanourl. more>>
TinyDisk is a program from saving and retrieving files from TinyURL and TinyURL-like services such as Nanourl. It overlays a write-once-read-many anonymous, persistent and globally shared filesystem.

Once something is uploaded, only the database admin can delete it. Everyone can read it. No one can know who created it. Think of it as a magical CD-R that gets burned and placed on a network.

TinyDisk is released under the BSD License.

USAGE:

To write a file into a database:

java -jar TinyDisk write [filename] [metafile]

where filename is the file to load and metafile is file that TinyDisk creates to retrieve the file from the database.

To read a file from a database:
java -jar TinyDisk read [metafile]
This will retrieve the file described in metafile from the database

<<less
Download (0.069MB)
Added: 2005-10-25 License: BSD License Price:
1461 downloads
PROMS 0.12.1

PROMS 0.12.1


PROMS project is a Web-based project management system. more>>
PROMS project is a Web-based project management system.
Proms is a Web-based project management system whose primary goal is to provide a facility for developers to communicate with other developers, to communicate things to end-users, and to get feed-back from users. It also acts as a placeholder for project information.
Projects can be split up into multiple parts and project maintainers can assign tasks and programmers to each part.
Proms is meant to be a very lightweight replacement of the sourceforge project management software, and has been built more or less modular.
Enhancements:
- This release adds deleting of files and todos, and the ability to flag projects as private.
- The "manage" tab is no longer visible for anonymous users.
- A serious bug that prevented mail from being sent and a bug in the creation of directories that hold project files have been fixed, as well as a bug in the setup script.
<<less
Download (0.080MB)
Added: 2007-01-23 License: GPL (GNU General Public License) Price:
1004 downloads
Plone Comments 2.2.1

Plone Comments 2.2.1


Plone Comments provides a product developed to improve moderation of comments in Plone. more>>
Plone Comments provides a product developed to improve moderation of comments in Plone.
Main features:
- Notify admin about comment posted
- Moderation of comments, approval of comments
- Anonymous commenting
- Added Name field to comment form, it is required for anonymous comments
- Article author can be notified about new comment after the approval by reviewer
- List of recent comments for more comfortable moderation
- Configlet that allow:
- Turning on/off Moderation
- Turning on/off Manager notification
- Turning on/off Editor notification
- Turning on/off Anonymous Commenting
- Configure admin e-mail for notifications
- Configure notification subject
Comments moderation is implemented with involvement of two stage workflow. Comments are created in "private" state and visible only to DiscussionManager group of users.
To differentiate between logged-in (registered) commentors and Anonymous commentors that pretend to be one person or other one, we use Boldness of name. The Comment author is in bold when posted by logged in member. The names provided when posting Anonymously are in plain text.
Notification subject control allows to enter custom prefix to disctinct nofifications comming from different sites.
Usage
One of possible UseCases:
- Moderation is enabled and authors notification is turned on.
- New comment posted in private state.
- Notification is sent to the emails entered in Plone Comments configlet.
- Moderator User with DiscussionManager role see the comment.
- The comment can be deleted or published on modaration stage.
- When comment is published notification is sent to Article Editor.
Enhancements:
- Ukrainian translation added
- added qPloneCaptchas-1.0 integration/compatibility
- fixed reinstall procedure
<<less
Download (0.037MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
943 downloads
DangoTalk 1.0

DangoTalk 1.0


DangoTalk is a widget that allows you to make free anonymous phone calls. more>>
DangoTalk project is a OS X Dashboard Widget that allows you to use the Interconnect API to make free phone calls between any two PSNT DIDs.

The system is built using Asterisk.

Upon request the Interconnect service will call the two numbers and connect them... similar to click-to-talk... but initated from a desktop application instead of a web application.
<<less
Download (0.23MB)
Added: 2006-09-22 License: GPL (GNU General Public License) Price:
1129 downloads
Phantomix Live CD 4.0.2

Phantomix Live CD 4.0.2


Phantomix is a Knoppix based Operating System running on a CD drive without using the hard drive. more>>
Phantomix is a Knoppix based Operating System running on a CD drive without using the hard drive.
Phantomix Live CD is configured to use the Tor and Privoxy software for anonymous internet communication.
Using Tor can help you anonymize web browsing and publishing, instant messaging, IRC, SSH, and other applications for your safety and security.
Known Issues:
- compared to direct internet connection, browsing is slow
- due to ad and junk filtering some sites may not work as expected (googlemail, ezboard)
- sometimes pages have to be reloaded very often until they are displayed correctly.
<<less
Download (700.2MB)
Added: 2006-08-21 License: GPL (GNU General Public License) Price:
674 downloads
modXLdapAuth 0.4

modXLdapAuth 0.4


modXLdapAuth is an X509 certificate authentication and LDAP authorization module. more>>
modXLdapAuth is an X509 certificate authentication and LDAP authorization module.
Main features:
- The LDAP filter to check the users permissions is configurable
- The Suffix for the LDAP bind is configurable
- Bind DN and password can be specified if the ldap server does not allow anonymous binding
- The scope is configurable (subtree, one level or base).
- Debug messages can be turned on with a directive at run-time
- Remote User : this environment variable can be filled with an attribute of LDAP entry
<<less
Download (0.12MB)
Added: 2006-05-30 License: The Apache License 2.0 Price:
1242 downloads
Bash Port Knocking 0.0.1

Bash Port Knocking 0.0.1


Bash Port Knocking is a set of scripts that use standard Linux tools to acheive a port knocking system. more>>
Bash Port Knocking is a set of scripts that use standard Linux tools to acheive a port knocking system. A Web page is used to open ports, and an email is sent every time the port knocking sequence is successfully made.
Main features:
- Uses custom scripts to begin firewall and ipmasquerade for multiple connections. This can be used as a gateway for ethernet provided Internet Connectivity in addition to supplying port knocking services.
- This script creates a web page that can be used for port knocking. This page can be used locally if the browser is using a public/anonymous proxy.
- This scripts emails the above created browser page to a specified email recipient each time the port knock sequence is successfully acheived.
- This script logs successful port knocks but denies knocks that hit a port designed in the initial scripts. This allows the script to be closed automatically if someone is hitting your computer repeatedly trying to automatically open the ports and allows you to close the ports if youve completed a log in or other desired action.
- In its current state it has run successfully for quite some time and been tested repeatedly with both anonymous proxy and remotely by the author for opening ssh.
- It allows the user to control the depth of the logs searched to function in a very low usage enviornment or a very high use enviornment as desired.
- It sorts the knocks by knocking address to prevent possible denial of service.
<<less
Download (0.003MB)
Added: 2006-07-10 License: GPL (GNU General Public License) Price:
1208 downloads
Kadischi

Kadischi


Kadischi is an alternative to Pilgrim an application for Fedora Core based LiveCD generation. more>>
Kadischi is an alternative to Pilgrim an application for Fedora Core based LiveCD generation.

The project is still in the early stage of development and is available via CVS.

Kadischi Goals:

Build robust tools for building Fedora-based Live CDs, and putting these tools into Fedora Extras.

Create Live CDs from these tools, based entirely upon content in Fedora Core and Fedora Extras, for official "blessing".

Distribute these blessed Live CDs far and wide, through whatever clever means we can come up with.

Download:

Execute the following in a terminal (type enter when prompted for password):

export CVSROOT=:pserver:anonymous@cvs.fedora.redhat.com:/cvs/devel
cvs -z3 login
cvs -z3 co kadischi
<<less
Download (MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
973 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5