Main > Free Download Search >

Free spyware cleaner software software for linux

spyware cleaner software

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 171
Gnome Wave Cleaner 0.21-07

Gnome Wave Cleaner 0.21-07


GWC is an application to do digital audio restoration on wavfile data, i.e. remove hisses and clicks. more>>
GWC is an application to do digital audio restoration on wavfile data, i.e. remove hisses and clicks. It features click repair using least squares autoregressive interpolation, and is based on the FFTW library. This is still beta code, so back up your data files first.
It is resulting of never wanting to boot to MS windows again. The only reason I had left was because I have this wonderful software to record digital audio, and the dehiss and declick using some very cool software (COOLEDIT 2000) and (Declick by M. Paar), to do the audio restoration.
I checked out some of the ongoing projects in linux, and either they crashed a lot or, didnt do what I needed, so I started this effort out of selfishness and also as a mechanism to learn the GNOME API for GUI programming . A lot of the code shows the efforts of that learning curve, and could certainly be cleaned up, but the I am personally pleased with the overall design. The goals are simple -- denoise, dehiss and amplify audio files. With the use of libsndfile, you can now do this on a multitude of audio formats, wav, au, aiff, ...
For those of you interested, I started working up a presentation describing the technical aspects of the audio restoration methods used in GWC.
Untar the source tarball (tar -xvzf )
Enter the directory created.
Run "./configure"
Run "make".
Run "make install".
"gwc" is the program file. All you have to do is run it.
Enhancements:
- BUGFIX: Ok. I messed up. The save changes stuff on exit was broken. Hopefully fixed now.
<<less
Download (0.68MB)
Added: 2006-10-20 License: GPL (GNU General Public License) Price:
1105 downloads
Cleaner 0.1

Cleaner 0.1


Cleaner is a Java beautifier that transforms ugly syntax into beautiful syntax. more>>
Cleaner is a Java beautifier that transforms ugly syntax into beautiful syntax. The Java code syntax is parsed using ANTLR and then printed to standard output.

Source is included.

Something like this:

public void foo(String bar)
{
for(int x=0; x < 9; x++ )
{
System.out.println ("X = " + x);
}
}

Will become

public void foo( String bar ){
for ( int x = 0; x < 9; x++ ){
System.out.println( "X = " + x );
}
}

Compile:

$ ant

Run:

$ java -classpath cleaner.jar:lib/antlr.jar cleaner.Cleaner < some-file >
<<less
Download (0.58MB)
Added: 2006-04-17 License: GPL (GNU General Public License) Price:
1335 downloads
XML Cleaner 0.2.2 beta

XML Cleaner 0.2.2 beta


XML Cleaner is an XML filter and validator, similar to xmllint. more>>
XML Cleaner is a command line utility to filter and validate XML files.
XML Cleaner is written in Ada 9X and so it rather fast.
XML Cleaner is an XML filter and validator, similar to xmllint. It can remove superfluos namespace declarations from an XML file, expand XML entities, recode XML files, and more.
Main features:
- removes superfluous namespace declarations;
- Unicode support;
- (More to implement: XML validation, XML canonicalization, reformatting, whitespace removal, comments removal, XML charset recoding, XInclude processing, inplace file modification, etc.; XML Cleaner is to grow into a full featured command line XML filter and validator.)
XML Cleaner is developed to become xmllint replacement.
Enhancements:
- An option to choose whether or not to escape apostrophes and quotes in output was added.
<<less
Download (0.026MB)
Added: 2005-10-03 License: GPL (GNU General Public License) Price:
1483 downloads
Spyware Removal Tool 3.5

Spyware Removal Tool 3.5


Spyware is a major problem in many computers these days. You can easily be a victim and not even know it. Do you mysteriously have a different h... more>> <<less
Download (15KB)
Added: 2009-03-31 License: Freeware Price: Free
455 downloads
Flate library 1.4.3

Flate library 1.4.3


Flate library is a template library used to deal with html code in CGI applications. more>>
Flate library is a template library used to deal with html code in CGI applications. The library includes C and Perl support. All html code is put in an external file (the template) and printed using the library functions: variables, zones (parts to be displayed or not) and tables (parts to be displayed 0 to n times).
Using this method you dont need to modify/recompile your application when modifying html code, printing order doesnt matter in your CGI code, and your CGI code is much cleaner.
Enhancements:
- can now include external files with #INCLUDEFILE /path/to/file.html
<<less
Download (0.044MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1110 downloads
KStreamRipper 0.3.4

KStreamRipper 0.3.4


KStreamRipper is a KDE-based frontend to streamripper. more>>
KStreamRipper project is a KDE-based frontend to streamripper. Streamripper is a command line utility for ripping online streams into mp3 files.

KStreamRipper helps you with managing your preferred streams and makes ripping and listening to them easier.

It now supports concurrent ripping and has a cleaner user interface(thanks to Will Entriken!).

<<less
Download (0.13MB)
Added: 2005-05-25 License: GPL (GNU General Public License) Price:
1620 downloads
Class::Contract 1.00

Class::Contract 1.00


Class::Contract - Design-by-Contract OO in Perl. more>>
Class::Contract - Design-by-Contract OO in Perl.

SYNOPSIS

package ClassName
use Class::Contract;

contract {
inherits BaseClass;

invar { ... };

attr data1;
attr data2 => HASH;

class attr shared => SCALAR;

ctor new;

method methodname;
pre { ... };
failmsg Error message;

post { ... };
failmsg Error message;

impl { ... };

method nextmethod;
impl { ... };

class method sharedmeth;
impl { ... };

# etc.
};

Background

Design-by-contract is a software engineering technique in which each module of a software system specifies explicitly what input (or data or arguments) it requires, and what output (or information or results) it guarantees to produce in response.

These specifications form the "clauses" of a contract between a module and the client software that uses it. If the client software abides by the input requirements, the module guarantees to produce the correct output. Hence by verifying these clauses at each interaction with a module, the overall behaviour of the system can be confidently predicted.
Design-by-contract reinforces the benefits of modular design techniques by inserting explicit compile-time or run-time checks on a contract. These checks are most often found in object-oriented languages and are typically implemented as pre-conditions and post-conditions on methods, and invariants on classes.

Note that these features differ from simple verification statements such as the C assert statement. Conditions and invariants are properties of a class, and are inherited by derived classes.

An additional capacity that is often provided in design-by-contract systems is the ability to selectively disable checking in production code. This allows the contractual testing to be carried out during implementation, without impinging on the performance of the final system.

Adding design-by-contract to Perl

The Class::Contract module provides a framework for specifying methods and attributes for a class (much like the existing class definition modules Class::Struct, Class::MethodMaker, and Class::Generate). Class::Contract allows both per-object and per-class methods and attributes to be defined. Attributes may be scalar-, array-, hash-, or object-based.

Class::Contract differs from other class-specification modules (except Class::Generate) in that it also provides the ability to specify invariant conditions on classes, and pre- and post-conditions on methods and attributes. All of these clauses are fully inheritable, and may be selectively disabled. It differs from all other modules in that it has a cleaner, simpler specification syntax, and -- more importantly -- it enforces encapsulation of object attributes, thereby ensuring that the class contract cannot be subverted.

Defining classes

Class::Contract provides an explicit syntax for defining the attributes, methods, and constructors of a class. The class itself is defined using the contract subroutine. contract takes a single argument -- a subroutine reference or a block. That block is executed once and the results used to construct and install the various components of the class in the current package:

package Queue;
contract {
# specification of class Queue attributes and methods here
};

<<less
Download (0.026MB)
Added: 2007-02-21 License: Perl Artistic License Price:
976 downloads
smtpfilter 0.1

smtpfilter 0.1


smtpfilter is a filter for an SMTP session which passes the session through transparently in real time. more>>
smtpfilter is a filter for an SMTP session which passes the session through transparently in real time, except for the DATA command which is intercepted in order to scan the data for spam and/or viruses with the scanner of your choice.

If you are reading this source, it is what should have been an internal release and consequently has a few comments at the head of the file which would not normally be here. Most likely I must have released this in a hurry because someone needed some
recent feature that has been added, before I had time to do a periodic code review and tidy-up. If this is your first time looking at or installing this code you should probably get in
touch with the author (gtoal@gtoal.com) and ask for a cleaner version before you start.

The descriptive comments which explain what this program does, and how, have slowly migrated from being at the top of the file to being lost half way down. That is something which will be done in the next maintenance release.

But this version *does* work, and works very well now. It is in service at the University of Texas Pan American, with 2000 staff and 15,000 students (although not all of those are active emailers -maybe only 2000-3000 are in heavy use. It sometimes looks like
AOL and MSN and Yahoo are the official campus mailers.
<<less
Download (0.14MB)
Added: 2006-07-11 License: GPL (GNU General Public License) Price:
1200 downloads
Torrent-Search Bar 1.0.1.21

Torrent-Search Bar 1.0.1.21


Torrent-Search Bar will improve your browsers capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines. more>>
Torrent-Search Bar 1.0.1.21 will improve your browser's capability greatly. It is designed as a Firefox addon that provides you the best way to search in more than 26 top torrent search engines.

Major Features:

  1. Search Torrents in more than 31 Top Torrent Search sites - The Torrent Search engines in the toolbar are auto-updated
  2. Get RSS feeds with new torrents links - Fresh Torrents has tons of seeds...
  3. Links to the best private torrents communities
  4. E-Mail Notifier - Check multiple POP3, Gmail, Hotmail, Yahoo accounts for new mail It displays an icon in the toolbar and notifies you whenever new mail is waiting. It also optionally to play a WAV file.
  5. Highlight the Torrent Search Results - Make your life easier
  6. Online Anti Virus scanner - Cookie-Cleaner, History-Cleaner, Cache-Cleaner
  7. Popup Blocker - Block annoying pop-ups
  8. Weather - Offers forecasts for cities worldwide
  9. Auto Update - Help to keep your Toolbar current
  10. Supports:
    • Google Torrent search
    • MiniNova
    • Meganova
    • MoNova
    • biteNova
    • torrent valley
    • thepiratebay
    • TorrentReactor
    • Isohunt
    • And more...

Requirements:

  • Mozilla Firefox 1.0-3.0
  • Windows 2000/XP/Vista
<<less
Added: 2006-09-09 License: GPL Price: FREE
1 downloads
Bookmarks Unifier 2.0 Beta 7

Bookmarks Unifier 2.0 Beta 7


Bookmarks Unifier is a bookmarks converter/manager/cleaner. more>>
Bookmarks Unifier is a bookmarks converter/manager and cleaner. It enables users to create/maintain their internet bookmarks collections. Various formats from different browsers, which include Internet Explorer, Mozilla/Firefox, and Opera, are supported.
Bookmarks among these browsers can be converted, imported, exported one to/from another by using this program. Interface of this utility is fairly simple and straight forward, that means no more trying out each menu entries to get it work !
From now on, you can just import all of your bookmarks into the database, and export them to formats you like ! The more important thing is, it is FREE, and it is cross platform via the JAVA technology.
Main features:
- Importing(Merging) bookmars from IE/Firefox/Opera to one database
- Exporting database to bookmarks format of IE/Firefox/Opera
- URL duplications are detected, therefore no more duplicated URL all over the places
- Database is just a file which can be exchanged with other people, no more compressing IE Favorites folders
- Simple to use
- It supports UTF8 filenames/bookmark entry names
- No limitation of number of entries
- It is cross platforms (supports Linux/Windows/Macs)
- It is fast
- It is free !
<<less
Download (0.021MB)
Added: 2006-01-09 License: Freeware Price:
1509 downloads
Untangle Gateway Platform 5.0.1

Untangle Gateway Platform 5.0.1


Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications. more>>
Untangle Gateway Platform is a Linux-based network gateway with pluggable modules for network applications like spam blocking, Web filtering, anti-virus, anti-spyware, intrusion prevention, VPN, SSL VPN, firewall, and more.
Enhancements:
- Bugfixes from 5.0.0-beta; this release is stable.
<<less
Download (MB)
Added: 2007-08-04 License: GPL (GNU General Public License) Price:
517 downloads
Bibirmer Toolbar 1.0.1.29

Bibirmer Toolbar 1.0.1.29


Bibirmer Toolbar will improve your browsers capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products features & prices. more>>
Bibirmer Toolbar 1.0.1.29 will improve your browser's capability greatly. It is designed as a Firefox addon that allows you to read reviews, compare products' features & prices.

Major Features:

  1. Search box for all the major search engines (Google, Yahoo, MSN, Ask.com, Dmoz.org) + Price Comparison Engine. Find lowest prices and availability from online stores.
  2. Get notified when you receive new e-mails to your POP3, Yahoo!, Gmail, or Hotmail accounts.
  3. Includes Popup blocker, cookie cleaner, history cleaner, and cache cleaner.
  4. Online Dictionary,Wikipedia search (free encyclopedia), Images Search, Job Search, News, Quotes, Weather, Blog Search, Maps, find domain name and more in next versions.
  5. Music Search, Movies Search, Books Search,Software Search.
  6. Auctions Search, Search Customer Reviews, Answer your question, Amazon Search, Shopping.com Search, Chitika eMiniMalls Search.
  7. ToolBox Includes:
    • WhoIs (Lists contact info for a domain/IP),
    • DNS Report (See if there are problems with your DNS hosting),
    • Geolocation (find the city and country of an IP),
    • Traceroute (Traces the route packets take to this host),
    • Ping (Shows how long it takes for packets to reach a host.),
    • Keyword Selector Tool (How many times that term was searched on last month),
    • Google cash tool (Google indexed pages by different datacenters)
    • Domain History (view archived versions of Web sites)
    • E-mail Test
    • My IP Address tool

Requirements:

  • Mozilla Firefox
<<less
Added: 2008-05-26 License: MPL Price: FREE
59 downloads
Extended Universal Resource Library 0.2

Extended Universal Resource Library 0.2


Extended Universal Resource Library is a pure Java library for cleaner, more flexible file access in Java. more>>
Extended Universal Resource Library is a pure Java library for cleaner, more flexible file access in Java.
How data is stored is completely transparent to the client, since the library is meant to replace java.io.File.
It provides implementations for handling local files, Jar/Zip archives, and XML documents. (Implementations for CVS and FTP are available seperately.) Other storage providers can be written and plugged in.
It also provides a merged filesystem implementation that allows multiple hierarchies to appear as one and to override each other in a controlled way. Other features include notification of changes to files, and support for attaching (dynamically updatable) actions to file objects.
Filesystems are an abstraction on top of java.io.File (in the case of local files), that provide a number of useful things:
- File storage is completely abstracted - third parties can create support for access to file-like objects stored in an arbitrary manner, such as in a database, or in a version control system.
- Built-in support for ZIP/JAR archives and XML-based filesystems and the ability to transparently use other filesystems supported by NetBeans (such as the FTP filesystem) by adding the necessary classes
- Supports listening for change events if a file is externally modified
- Ability to add arbitrary "status" data to a file object and be notified of changes on it
- Support for actions on file objects, allowing you to define what actions are possible on a given file (and dynamically update these), and then expose those actions through your user interface.
<<less
Download (0.32MB)
Added: 2006-02-15 License: MPL (Mozilla Public License) Price:
1346 downloads
Virtual Console init 2.0.1

Virtual Console init 2.0.1


Virtual Console init is an /sbin/init clone for virtual consoles. more>>
Virtual Console init is an /sbin/init clone for virtual consoles. It is very easy to set up and use because it has no configuration files.
It is very small and has builtin getty, login, klogd, and slogd. Virtual Console init is suitable for embedded systems and home Linux boxes.
This is a new kind of "init" that only works for the virtual console, so dont try it to login from a serial line. The idea is having a very simple init for home Linux systems (although it could work on other systems as well, who knows...), allowing for a simpler and cleaner configuration. It is useful too in embedded systems or tiny boot disks (maybe as a complement for "busybox"). In other words: it works for me, I use it and Im releasing it in the hope of it being useful for others.
The binary itself doesnt accept parameters, so lets go directly to the behaviour... It must be run by "root" and have PID 1, so dont try to run it yourself, it wont work... You should install it under "/sbin/init", and the kernel will run it automatically at boot.
Take into account that this "init" has both the "getty" and "login" parts built-in, not as separate binaries. This means that if you have a server or another binary which needs "/bin/login", it probably WONT WORK. The sysklog system (kernel logger and system logger, "klogd" and "slogd") are built-in, too. You dont need sysklogd or equivalent, unless you want some feature of them... In that case, you can disable the builtin system.
Enhancements:
- vcinit is now licensed under the GPLv2 only, and not necessarily any later version of the GPL.
<<less
Download (0.040MB)
Added: 2006-09-25 License: GPL (GNU General Public License) Price:
1131 downloads
checksysreport 1.0-0

checksysreport 1.0-0


checksysreport performs some automatic tests against a directory containing an untarred Red Hat Enterprise Linux sysreport. more>>
checksysreport project can perform some automatic tests against a directory containing an untarred Red Hat Enterprise Linux sysreport.
You will need a valid Red Hat Network login in order to use it, as it fetches information from RHN using the RHN API (see https://rhn.redhat.com/rpc/api/).
A graphical tool, yadarh, is also included: it uses the cache generated by checksysreport to display RPMs in a given channel and lets you browse them to have a list of errata and new entries in changelogs that come with other versions of the same package.
Enhancements:
Checksysreport 1.0 comes with a server and a client side so several clients can share a common cache repository.
- There is a checksysreport-server package that share its cache to checksysreport clients using postgresql.
- The server also accept sysreports to analyse from a web page.
- A cosmetic bug when copying changelogs diff in yadarh has been fixed.
- Fetching data from rhn is threaded.
- Client can be configured to use a satellite instead of rhn.redhat.com
- Makefile works for 108.redhat.coms svn
- Cleaner packaging, thanks to David Juran.
<<less
Download (0.085MB)
Added: 2007-05-13 License: GPL (GNU General Public License) Price:
896 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5