delaware county auditor
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 48
Domain Auditor 0.31
Domain Auditor project was written to audit and track accounts within a domain. more>>
Domain Auditor project was written to audit and track accounts within a domain. This tool uses LDAP queries to a definable Active Directory server to find various definable classes of accounts.
Initially it will operate interactively, but capabilities may be added in the future to automate functions (i.e. generate reports on a scheduled basis). The installation script handles most installation chores, so setup is very straightforward.
The tool is beta status at this time, but is in being used to generate SOX reports for my employer.
Main features:
- Reports - This function will display a list of defined reports, when invoked it will generate a list of accounts from AD (via LDAP queries) the results returned will depend on what you have defined for the filter for any particular report class under Sysadmin
- Sys Admin - This function will allow you to changes the system settings for LDAP server and port, base DN, Bind DN, username and password, and the database settings (mySQL only at this time). You may also add the report class definitions and their matching LDAP filters within this module
- User Admin - This screen is used to define users for the system and their rights. Usernames are used as the primary value, and entered values are validated via LDAP queries
- Audit Logs - The system logs all changes to the information stored and this page will allow you to review the data from these logs
<<lessInitially it will operate interactively, but capabilities may be added in the future to automate functions (i.e. generate reports on a scheduled basis). The installation script handles most installation chores, so setup is very straightforward.
The tool is beta status at this time, but is in being used to generate SOX reports for my employer.
Main features:
- Reports - This function will display a list of defined reports, when invoked it will generate a list of accounts from AD (via LDAP queries) the results returned will depend on what you have defined for the filter for any particular report class under Sysadmin
- Sys Admin - This function will allow you to changes the system settings for LDAP server and port, base DN, Bind DN, username and password, and the database settings (mySQL only at this time). You may also add the report class definitions and their matching LDAP filters within this module
- User Admin - This screen is used to define users for the system and their rights. Usernames are used as the primary value, and entered values are validated via LDAP queries
- Audit Logs - The system logs all changes to the information stored and this page will allow you to review the data from these logs
Download (0.043MB)
Added: 2006-01-24 License: GPL (GNU General Public License) Price:
1369 downloads
Qmail Auditor 0.4
Qmail Auditor consists of a email auditing tool. more>>
Qmail Auditor consists of a email auditing tool.
QMail Auditor provides simple a method for auditing emails. It is easy to configure and uses regular expressions as rules.
The format of audit file is :
Any e-mail (outbound or inbound) have passed at this filter.
The valids "field header"(s) :
all - field from or to of e-mails
to - field to
from - field from
In case of regular expression you read the
# man re_format
# man regex
E-mail to forward is a valid mail account to redirect.
Example of this :
from nelio@walk.* auditoria@spyware.walk.com.br
to nelio@spyware.* auditoria@spyware.walk.com.br
Enhancements:
- Now the config file name has renamed.
- From audit (in /var/qmail/control for /var/qmail/control/auditor) and qmail-queue-real-audit for qmail-queue-real-auditor.
<<lessQMail Auditor provides simple a method for auditing emails. It is easy to configure and uses regular expressions as rules.
The format of audit file is :
Any e-mail (outbound or inbound) have passed at this filter.
The valids "field header"(s) :
all - field from or to of e-mails
to - field to
from - field from
In case of regular expression you read the
# man re_format
# man regex
E-mail to forward is a valid mail account to redirect.
Example of this :
from nelio@walk.* auditoria@spyware.walk.com.br
to nelio@spyware.* auditoria@spyware.walk.com.br
Enhancements:
- Now the config file name has renamed.
- From audit (in /var/qmail/control for /var/qmail/control/auditor) and qmail-queue-real-audit for qmail-queue-real-auditor.
Download (0.16MB)
Added: 2007-01-22 License: BSD License Price:
1010 downloads
Locale::SubCountry 1.37
Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code. more>>
Locale::SubCountry is a Perl module that can convert state, province, county etc. names to/from code.
SYNOPSIS
my $country_code = GB;
my $UK = new Locale::SubCountry($country_code);
if ( not $UK )
{
die "Invalid code $country_coden";
}
elsif ( $UK->has_sub_countries )
{
print($UK->full_name(DGY),"n"); # Dumfries and Galloway
print($UK->regional_division(DGY),"n"); # CT (Scotland)
}
my $australia = new Locale::SubCountry(AUSTRALIA);
print($australia->country,"n"); # AUSTRALIA
print($australia->country_code,"n"); # AU
if ( $australia->has_sub_countries )
{
print($australia->code(New South Wales ),"n"); # NSW
print($australia->full_name(S.A.),"n"); # South Australia
my $upper_case = 1;
print($australia->full_name(Qld,$upper_case),"n"); # QUEENSLAND
print($australia->category(NSW),"n"); # state
print($australia->FIPS10_4_code(ACT),"n"); # 01
print($australia->ISO3166_2_code(02),"n"); # NSW
my @aus_state_names = $australia->all_full_names;
my @aus_code_names = $australia->all_codes;
my %aus_states_keyed_by_code = $australia->code_full_name_hash;
my %aus_states_keyed_by_name = $australia->full_name_code_hash;
foreach my $code ( sort keys %aus_states_keyed_by_code )
{
printf("%-3s : %sn",$code,$aus_states_keyed_by_code{$code});
}
}
# Methods for country codes and names
my $world = new Locale::SubCountry::World;
my @all_countries = $world->all_full_names;
my @all_country_codes = $world->all_codes;
my %all_countries_keyed_by_name = $world->full_name_code_hash;
my %all_country_keyed_by_code = $world->code_full_name_hash;
This module allows you to convert the full name for a countries administrative region to the code commonly used for postal addressing. The reverse lookup can also be done. Sub country codes are defined in "ISO 3166-2:1998, Codes for the representation of names of countries and their subdivisions".
Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland.
Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array.
Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array.
ISO 3166-2 codes can be converted to FIPS 10-4 codes. The reverse lookup can also be done.
<<lessSYNOPSIS
my $country_code = GB;
my $UK = new Locale::SubCountry($country_code);
if ( not $UK )
{
die "Invalid code $country_coden";
}
elsif ( $UK->has_sub_countries )
{
print($UK->full_name(DGY),"n"); # Dumfries and Galloway
print($UK->regional_division(DGY),"n"); # CT (Scotland)
}
my $australia = new Locale::SubCountry(AUSTRALIA);
print($australia->country,"n"); # AUSTRALIA
print($australia->country_code,"n"); # AU
if ( $australia->has_sub_countries )
{
print($australia->code(New South Wales ),"n"); # NSW
print($australia->full_name(S.A.),"n"); # South Australia
my $upper_case = 1;
print($australia->full_name(Qld,$upper_case),"n"); # QUEENSLAND
print($australia->category(NSW),"n"); # state
print($australia->FIPS10_4_code(ACT),"n"); # 01
print($australia->ISO3166_2_code(02),"n"); # NSW
my @aus_state_names = $australia->all_full_names;
my @aus_code_names = $australia->all_codes;
my %aus_states_keyed_by_code = $australia->code_full_name_hash;
my %aus_states_keyed_by_name = $australia->full_name_code_hash;
foreach my $code ( sort keys %aus_states_keyed_by_code )
{
printf("%-3s : %sn",$code,$aus_states_keyed_by_code{$code});
}
}
# Methods for country codes and names
my $world = new Locale::SubCountry::World;
my @all_countries = $world->all_full_names;
my @all_country_codes = $world->all_codes;
my %all_countries_keyed_by_name = $world->full_name_code_hash;
my %all_country_keyed_by_code = $world->code_full_name_hash;
This module allows you to convert the full name for a countries administrative region to the code commonly used for postal addressing. The reverse lookup can also be done. Sub country codes are defined in "ISO 3166-2:1998, Codes for the representation of names of countries and their subdivisions".
Sub countries are termed as states in the US and Australia, provinces in Canada and counties in the UK and Ireland.
Names and ISO 3166-2 codes for all sub countries in a country can be returned as either a hash or an array.
Names and ISO 3166-1 codes for all countries in the world can be returned as either a hash or an array.
ISO 3166-2 codes can be converted to FIPS 10-4 codes. The reverse lookup can also be done.
Download (0.062MB)
Added: 2006-08-16 License: Perl Artistic License Price:
1164 downloads
Cook County PIN Search 2.1
Cook County PIN Search provides a title search tool. more>>
Cook County PIN Search provides a title search tool.
Cook County (IL, USA) Property Index Number Search
A title search tool. If in the course of your browsing you come across a Cook County Property Index Number (PIN) (format 99-99-999-999 or 99-99-999-999-9999) in your browser window, select it and "right"-click and on the context menu you will be offered options to open new tabs of relevant information from Cook County websites.
<<lessCook County (IL, USA) Property Index Number Search
A title search tool. If in the course of your browsing you come across a Cook County Property Index Number (PIN) (format 99-99-999-999 or 99-99-999-999-9999) in your browser window, select it and "right"-click and on the context menu you will be offered options to open new tabs of relevant information from Cook County websites.
Download (0.004MB)
Added: 2007-04-05 License: MPL (Mozilla Public License) Price:
933 downloads
sauditor 0.3
sauditor project is a simple sample auditor. more>>
sauditor project is a simple sample auditor.
I made it because I wanted it and wanted the practice, so please dont complain that Ive made yet another sample player.
Its simple, it uses jack and it shows a pretty spectrum analyser so you can get an idea of the spectral content of your samples. I may be the only person who finds the spectrum analyser useful, but hey. The spectrum analyser is now X based. If you want to play with the text speccy analyser, get version 0.1
It was fun to get some practice back in C and C++, as well as learning to use jack a little better and fftw, libsndfile, libsamplerate and ncurses for the first time. Add xlib to that list now, too.
Installation:
No fancy autoconf/automake, although I might sort that out later.
Just use make to build it and make install (as root) to install it
Usage:
Just run it.
Enter or P plays the current sample, space toggles playing.
If the screen goes funny (which it shouldnt do anymore) use R to refresh it
F toggles the spectrum analyser window
Q quits
H shows the help and V shows version info.
Run with the -a option to show files starting with a dot.
<<lessI made it because I wanted it and wanted the practice, so please dont complain that Ive made yet another sample player.
Its simple, it uses jack and it shows a pretty spectrum analyser so you can get an idea of the spectral content of your samples. I may be the only person who finds the spectrum analyser useful, but hey. The spectrum analyser is now X based. If you want to play with the text speccy analyser, get version 0.1
It was fun to get some practice back in C and C++, as well as learning to use jack a little better and fftw, libsndfile, libsamplerate and ncurses for the first time. Add xlib to that list now, too.
Installation:
No fancy autoconf/automake, although I might sort that out later.
Just use make to build it and make install (as root) to install it
Usage:
Just run it.
Enter or P plays the current sample, space toggles playing.
If the screen goes funny (which it shouldnt do anymore) use R to refresh it
F toggles the spectrum analyser window
Q quits
H shows the help and V shows version info.
Run with the -a option to show files starting with a dot.
Download (0.016MB)
Added: 2006-02-17 License: GPL (GNU General Public License) Price:
1344 downloads
Linux Security Auditing Tool 0.9.6
Linux Security Auditing Tool (LSAT) is a post install security auditing tool. more>>
The Linux Security Auditing Tool (LSAT) is a post install security auditor for Linux/Unix.
Linux Security Auditing Tool checks many system configurations and local network settings on the system for common security/config errors and for packages that are not needed.
It (for now) works under Linux (x86: Gentoo, RedHat, Debian, Mandrake; Sparc: SunOS (2.x), Redhat sparc, Mandrake Sparc; Apple OS X).
Enhancements:
- The dependency on the popt library has been removed.
- This release adds extra passwd and group checks under Linux, a check for failed logins under Linux/Solaris, a check for kernel modules under Solaris, network interface stats, and routing checks. It fixes a problem in checknetforward giving false positives, and an issue where verbose output was not very consistent.
- The kernel module check under Linux has been modified.
<<lessLinux Security Auditing Tool checks many system configurations and local network settings on the system for common security/config errors and for packages that are not needed.
It (for now) works under Linux (x86: Gentoo, RedHat, Debian, Mandrake; Sparc: SunOS (2.x), Redhat sparc, Mandrake Sparc; Apple OS X).
Enhancements:
- The dependency on the popt library has been removed.
- This release adds extra passwd and group checks under Linux, a check for failed logins under Linux/Solaris, a check for kernel modules under Solaris, network interface stats, and routing checks. It fixes a problem in checknetforward giving false positives, and an issue where verbose output was not very consistent.
- The kernel module check under Linux has been modified.
Download (0.070MB)
Added: 2007-05-21 License: GPL (GNU General Public License) Price:
904 downloads
Desilico 0.5 Beta
Desilico is a Debian SID based Live CD. more>>
Desilico is a Debian SID based Live CD. No X11, no graphics, only terminal for sysadmins.
Everything in desilico is as is in debian sid, but you can use it as a live cd, very useful for debootstraping or rescue tool. Autodiscovery Included.
Package List:
adduser 3.57 Add and remove users and groups
apache 1.3.31-2 Versatile, high-performance HTTP server
apache-common 1.3.31-2 Support files for all Apache webservers
apache-perl 1.3.31-2 Versatile, high-performance HTTP server with
apache-utils 1.3.31-2 Utility programs for webservers
apt 0.5.26 Advanced front-end for dpkg
apt-build 0.9.3 Frontend to apt to build, optimize and insta
apt-listbugs 0.0.40 Lists critical bugs before each apt installa
apt-src 0.25.1 manage Debian source packages
apt-utils 0.5.26 APT utility programs
aptitude 0.2.15.2-1 curses-based apt frontend
arj 3.10.21-1 archiver for .arj files
aspell 0.50.5-3 GNU Aspell spell-checker
aspell-bin 0.50.5-3 GNU Aspell standalone spell-check utilities
aspell-en 0.51-1-1 English dictionary for GNU Aspell
at 3.1.8-11 Delayed job execution and batch processing
autoconf 2.59-7 automatic configure script builder
automake1.4 1.4-p6-8 A tool for generating GNU Standards-complian
autotools-dev 20040312.1 Update infrastructure for config.{guess,sub}
axel 1.0a-1 A light download accelerator - Console versi
base-config 2.36 Debian base system configurator
base-files 3.0.16 Debian base system miscellaneous files
base-passwd 3.5.7 Debian base system master password and group
bash 2.05b-19 The GNU Bourne Again SHell
bc 1.06-15 The GNU bc arbitrary precision calculator la
bind9-host 9.2.3+9.2.4-rc Version of host bundled with BIND 9.X
binutils 2.14.90.0.7-8 The GNU assembler, linker and binary utiliti
bitchx 1.0-0c19.20030 Advanced Internet Relay Chat client
bootcd 2.41 run your system from cd without need for dis
bootcd-mkinitr 2.41 bootcd extension to create an initrd-image u
bsdgames 2.16-3 a collection of classic textual unix games
bsdmainutils 6.0.14 collection of more utilities from FreeBSD
bsdutils 2.12-7 Basic utilities from 4.4BSD-Lite
build-essentia 10 informational list of build-essential packag
busybox 0.60.5-2.1 Tiny utilities for small and embedded system
bzip2 1.0.2-1 A high-quality block-sorting file compressor
ca-certificate 20031007 Common CA Certificates PEM files
ccal 3.5-7 Colorised calendar utility
cdcd 0.6.5-4 command line or console based CD player
cdparanoia 3a9.8-11 An audio extraction tool for sampling CDs.
cdrecord 2.0+a30.pre1-1 command line CD writing tool
cl-asdf 1.84-1 Another System Definition Facility
cl-defsystem3 3.3i+cvs.2004. Make system for Common Lisp Packages
clamav 0.73-2 Antivirus scanner for Unix
clamav-base 0.73-2 Base package for clamav, an anti-virus utili
clamav-freshcl 0.73-2 Downloads clamav virus databases from the In
clamav-getfile 0.3-5 Update script for clamav
clamav-testfil 0.73-2 Use these files to test that your Antivirus
cmucl 18e-10 The CMUCL lisp compiler and development syst
common-lisp-co 3.91 This is a Common Lisp source and compiler ma
console-common 0.7.46 Basic infrastructure for text console config
console-data 2002.12.04dbs- Keymaps, fonts, charset maps, fallback table
console-tools 0.2.3dbs-53 Linux console and font utilities
coreutils 5.2.1-1 The GNU core utilities
cpio 2.5-1.1 GNU cpio -- a program to manage archives of
cpp 3.3.4-1 The GNU C preprocessor (cpp)
cpp-3.3 3.3.4-3 The GNU C preprocessor
cramfsprogs 1.1-6 Tools for CramFs (Compressed ROM File System
cron 3.0pl1-83 management of regular background processing
curl 7.12.0.is.7.11 Get a file from an HTTP, HTTPS, FTP or GOPHE
cursel 0.2.2-3 simple language to provide text application
curves 0.8.19 colorful console interface for CVS version c
cvs 1.12.9-2 Concurrent Versions System
cvs2svn 0.0.1173-1 Convert a cvs repository to a subversion rep
cvsgraph 1.4.0-3 Create a tree of revisions/branches from a C
dash 0.5.1-1 The Debian Almquist Shell
db4.2-util 4.2.52-16 Berkeley v4.2 Database Utilities
debconf 1.4.29 Debian configuration management system
debconf-i18n 1.4.29 full internationalization support for debcon
debconf-utils 1.4.29 debconf utilities
debhelper 4.2.15 helper programs for debian/rules
debianutils 2.8.4 Miscellaneous utilities specific to Debian
debootstrap 0.2.39.1 Bootstrap a basic Debian system
devscripts 2.7.95.1 Scripts to make the life of a Debian Package
dhcp-client 2.0pl5-19 DHCP Client
dictionaries-c 0.22.30 Common utilities for spelling dictionary too
diff 2.8.1-6 File comparison utilities
discover 2.0.4-5 hardware identification system
discover-data 2.2004.05.03-4 Data lists for Discover hardware detection s
dnstop 20040309-1 A console tool to analyze DNS traffic
dnsutils 9.2.3+9.2.4-rc Clients provided with BIND
dosfstools 2.10-1 Utilities to create and check MS-DOS FAT fil
dpkg 1.10.22 Package maintenance system for Debian
dpkg-dev 1.10.22 Package building tools for Debian
dpkg-ruby 0.3.0 ruby interface for dpkg
dselect 1.10.22 a user tool to manage Debian packages
e2fslibs 1.35-6 The EXT2 filesystem libraries
e2fsprogs 1.35-6 The EXT2 file system utilities and libraries
ed 0.2-20 The classic unix line editor
elmo 1.3.0-1 text-based mail-reader supporting SMTP and P
emacsen-common 1.4.15 Common facilities for all emacsen.
enscript 1.6.4-4 Converts ASCII text to Postscript, HTML, RTF
esound-common 0.2.29-1 Enlightened Sound Daemon - Common files
ethereal-commo 0.10.5-3 Network traffic analyser (common files)
ethstatus 0.4.2-2 Console-based ethernet statistics monitor
ettercap 0.7.0-1 Multipurpose sniffer/interceptor/logger for
ettercap-commo 0.7.0-1 Common support files and plugins for etterca
rc exim 3.36-11 An MTA (Mail Transport Agent)
exuberant-ctag 5.5.4-1 build tag file indexes of source code defini
fakeroot 1.0.5 Gives a fake root environment
fdclone 2.04a-1 A console-base lightweight file manager
fdutils 5.4-20040228-1 Linux floppy utilities
festival 1.4.3-13 general multi-lingual speech synthesis syste
festlex-cmu 1.4.0-6 CMU dictionary for Festival
festlex-poslex 1.4.0-5 Part of speech lexicons and ngram from Engli
festvox-kallpc 1.4.0-5 American English male speaker for festival,
fetchmail 6.2.5-9 SSL enabled POP3, APOP, IMAP mail gatherer/f
figlet 2.2.1-1 Frank, Ian & Glenns Letters
file 4.09-1 Determines file type using "magic" numbers
fileutils 5.2.1-1 The GNU file management utilities (transitio
findutils 4.1.20-4 utilities for finding files--find, xargs, an
fp-compiler 1.0.10-1.2 Free Pascal Compiler
fp-units-rtl 1.0.10-1.2 Free Pascal Runtime Library
fp-utils 1.0.10-1.2 Free Pascal Utils
fping 2.4b2-to-ipv6- sends ICMP ECHO_REQUEST packets to network h
fsh 1.2-1.1 Fast remote command execution over rsh/ssh/l
g++ 3.3.4-1 The GNU C++ compiler
g++-3.3 3.3.4-3 The GNU C++ compiler
gcc 3.3.4-1 The GNU C compiler
gcc-3.3 3.3.4-3 The GNU C compiler
gcc-3.3-base 3.3.4-3 The GNU Compiler Collection (base package)
gdb 6.1-3 The GNU Debugger
gettext 0.14.1-2 GNU Internationalization utilities
gettext-base 0.14.1-2 GNU Internationalization utilities for the b
gnupg 1.2.4-4 GNU privacy guard - a free PGP replacement
gpm 1.19.6-12.1 General Purpose Mouse Interface
grep 2.5.1.ds1-2 GNU grep, egrep and fgrep
groff-base 1.18.1.1-1 GNU troff text-formatting system (base syste
gzip 1.3.5-8 The GNU compression utility
hostap-modules 2.4.26-1-386+0 Host AP driver for Intersil Prism2/2.5/3 (ke
hostap-utils 0.1.3-1 Utility programs for Host AP driver for Inte
hostapd 0.1.3-1 IEEE 802.11 AP and IEEE 802.1X Authenticator
hostname 2.13 A utility to set/show the host name or domai
html2text 1.3.2a-1 An advanced HTML to text converter
hwdata 0.120-1 hardware identification / configuration data
ifupdown 0.6.4-4.8 High level tools to configure network interf
ilisp 5.12.0+cvs.200 Emacs interface to LISP implementations
imcom 1.33-1 A console jabber client
info 4.7-2 Standalone GNU Info documentation browser
initrd-tools 0.1.71 tools to create initrd image for prepackaged
initscripts 2.85-22 Standard scripts needed for booting and shut
intltool-debia 0.30+20040212 Help i18n of RFC822 compliant config files
ipchains 1.3.10-15 Network firewalling for Linux 2.2.x
ipmenu 0.0.3-6 A cursel iptables/iproute2 GUI
iproute 20010824-13.1 Professional tools to control the networking
ipsc 0.4.3-2 IP Subnet Calculator for console
iptables 1.2.9-10 Linux kernel 2.4+ iptables administration to
iptraf 2.7.0-5 Interactive Colorful IP LAN Monitor
irssi-scripts 20040708 collection of scripts for irssi
irssi-text 0.8.9-1 text-mode version of the irssi IRC client
iF kernel-image-2 2.4.25-3 Linux kernel image for version 2.4.25 on 386
rc kernel-image-2 2.4.26-2 Linux kernel image for version 2.4.26 on 386
rc kernel-image-2 2.6.6-1 Linux kernel image for version 2.6.6 on 386.
kernel-source- 2.6.6-2 Linux kernel source for version 2.6.6 with D
klogd 1.4.1-14 Kernel Logging Daemon
kudzu 1.1.67-1 The Red Hat Linux hardware probing tool.
less 382-1 Pager program similar to more
lftp 3.0.5-1 Sophisticated command-line FTP/HTTP client p
libacl1 2.2.23-1 Access control list shared library
libadns1 1.0-8.2 Asynchronous-capable DNS client library and
libao2 0.8.5-1 Cross Platform Audio Output Library
libapache-mod- 1.29.0.2-9 Integration of perl with the Apache web serv
libappconfig-p 1.52-8 Perl module for configuration file and comma
libapr0 2.0.50-5 The Apache Portable Runtime
libapt-pkg-per 0.1.12 Perl interface to libapt-pkg
libaspell15 0.50.5-3 The GNU Aspell spell-checker runtime toolkit
libatm1 2.4.1-15 shared library for ATM (Asynchronous Transfe
libattr1 2.4.16-1 Extended attribute shared library
libaudiofile0 0.2.6-4 Open-source version of SGIs audiofile libra
libblkid1 1.35-6 Block device id library
libbz2-1.0 1.0.2-1 A high-quality block-sorting file compressor
libc6 2.3.2.ds1-13 GNU C Library: Shared libraries and Timezone
libc6-dev 2.3.2.ds1-13 GNU C Library: Development Libraries and Hea
libcap1 1.10-14 support for getting/setting POSIX.1e capabil
libcdaudio0 0.99.9-2 library for controlling a CD-ROM when playin
libcdparanoia0 3a9.8-11 Shared libraries for cdparanoia (runtime lib
libclamav1 0.73-2 Virus scanner library
libcomerr2 1.35-6 The Common Error Description library
libconfig-inif 2.38-2 A module for reading .ini-style configuratio
libconsole 0.2.3dbs-53 Shared libraries for Linux console and font
libcupsys2-gnu 1.1.20final+rc Common UNIX Printing System(tm) - libs
libcurl2 7.12.0.is.7.11 Multi-protocol file transfer library, now wi
libdb1-compat 2.1.3-7 The Berkeley database routines [glibc 2.0/2.
libdb2 2.7.7.0-9 The Berkeley database routines (run-time fil
libdb3 3.2.9-20 Berkeley v3 Database Libraries [runtime]
libdb3-util 3.2.9-20 Berkeley v3 Database Utilities
libdb4.1 4.1.25-17 Berkeley v4.1 Database Libraries [runtime]
libdb4.2 4.2.52-16 Berkeley v4.2 Database Libraries [runtime]
libdbd-mysql-p 2.9003-2 A Perl5 database interface to the MySQL data
libdbi-perl 1.42-3 The Perl5 Database Interface by Tim Bunce
libdevel-symdu 2.03-3 Perl module for inspecting perls symbol tab
libdevmapper1. 1.00.19-2 The Linux Kernel Device Mapper userspace lib
libdiscover2 2.0.4-5 hardware identification library
libdns11 9.2.3+9.2.4-rc DNS Shared Library used by BIND
libdpkg-ruby1. 0.3.0 modules/classes for dpkg on ruby 1.8
libesd0 0.2.29-1 Enlightened Sound Daemon - Shared libraries
libestools1.2c 1.2.3-7 Edinburgh Speech Tools Library
libexpat1 1.95.6-8 XML parsing C library - runtime library
libflac4 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libfreetype6 2.1.7-2.1 FreeType 2 font engine, shared library files
libgc1 6.3-1 Conservative garbage collector for C and C++
libgcc1 3.3.4-3 GCC support library
libgcrypt1 1.1.12-7 LGPL Crypto library - runtime library
libgcrypt7 1.1.90-8 LGPL Crypto library - runtime library
libgd2-noxpm 2.0.23-2 GD Graphics Library version 2 (without XPM s
libgdbm3 1.8.3-2 GNU dbm database routines (runtime version)
libglib2.0-0 2.4.2-1 The GLib library of C routines
libgmp3 4.1.3-1 Multiprecision arithmetic library
libgnutls10 1.0.4-3 GNU TLS library - runtime library
libgnutls7 0.8.12-5 GNU TLS library - runtime library
libgpg-error0 0.7-3 library for common error values and messages
libgpgme11 0.9.0-1 GPGME - GnuPG Made Easy
libgpmg1 1.19.6-12.1 General Purpose Mouse Library [libc6]
libhtml-parser 3.36-1 A collection of modules that parse HTML text
libhtml-tagset 3.03-2 Data tables pertaining to HTML
libhtml-tree-p 3.18-1 represent and create HTML syntax trees
libid3tag0 0.15.1b-1 ID3 tag reading library from the MAD project
libident 0.22-2.2 simple RFC1413 client library - runtime
libidn11 0.4.1-1 GNU libidn library, implementation of IETF I
libintl-gettex 0.11-5 Gettext wrapper for Ruby
libintl-gettex 0.11-5 Gettext wrapper for Ruby 1.8
libisc7 9.2.3+9.2.4-rc ISC Shared Library used by BIND
libiw27 26+27pre22-1 Wireless tools - library
libjpeg62 6b-9 The Independent JPEG Groups JPEG runtime li
libkeynote0 2.3-10 Decentralized Trust-Management system, share
libkrb53 1.3.3-2 MIT Kerberos runtime libraries
libldap2 2.1.30-2 OpenLDAP libraries
liblocale-gett 1.01-17 Using libc functions for internationalizatio
liblockfile1 1.06 NFS-safe locking library, includes dotlockfi
libltdl3 1.5.6-2 A system independent dlopen wrapper for GNU
liblwres1 9.2.3+9.2.4-rc Lightweight Resolver Library used by BIND
liblzo1 1.08-1 A real-time data compression library
libmad0 0.15.1b-1 MPEG audio decoder library
libmagic1 4.09-1 File type determination library using "magic
libmm13 1.3.0-3 Shared memory library - runtime
libmysqlclient 3.23.56-2 LGPL-licensed client library for MySQL datab
libmysqlclient 4.0.20-3 mysql database client library
libnasl2 2.0.10a-1 Nessus Attack Scripting Language, shared lib
libncurses5 5.4-4 Shared libraries for terminal handling
libncursesw5 5.4-4 Shared libraries for terminal handling (wide
libneon24 0.24.6.dfsg-1 An HTTP and WebDAV client library
libnessus2 2.0.10a-1 Nessus shared libraries
libnet-daemon- 0.38-1 Perl module for building portable Perl daemo
libnet0 1.0.2a-5 library for the construction and handling of
libnet1 1.1.2.1-1 Library for the construction and handling of
libnewt0 0.50.17-9.6 Not Eriks Windowing Toolkit - text mode win
libnewt0.51 0.51.6-9 Not Eriks Windowing Toolkit - text mode win
libntfs5 1.9.0-1 Library that provides common NTFS access fun
libogg0 1.1.0-1 Ogg Bitstream Library
liboggflac1 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libopencdk8 0.5.5-3 Open Crypto Development Kit (OpenCDK) (runti
libpam-modules 0.76-22 Pluggable Authentication Modules for PAM
libpam-runtime 0.76-22 Runtime support for the PAM library
libpam0g 0.76-22 Pluggable Authentication Modules library
libpaper1 1.1.14 Library for handling paper characteristics
libparted1.6-0 1.6.9-3.1 The GNU Parted disk partitioning shared libr
libpcap0 0.6.2-2 System interface for user-level packet captu
libpcap0.7 0.7.2-7 System interface for user-level packet captu
libpcap0.8 0.8.3-3 System interface for user-level packet captu
libpcre3 4.5-1.1 Perl 5 Compatible Regular Expression Library
libperl5.8 5.8.4-2 Shared Perl library.
libplrpc-perl 0.2017-1 Perl extensions for writing PlRPC servers an
libpng12-0 1.2.5.0-6 PNG library - runtime
libpopt0 1.7-4 lib for parsing cmdline parameters
libreadline4 4.3-11 GNU readline and history libraries, run-time
libreiserfs0.3 0.3.0.4-4 ReiserFS filesystem access and manipulation
libruby1.8 1.8.1-9 Libraries necessary to run the Ruby
libsasl2 2.1.18-4.1 Authentication abstraction library
libsasl7 1.5.28-6.1 Authentication abstraction library
libsensors3 2.8.7-1 Library to read temperature/voltage/fan sens
libsidplay1-c1 1.36.57-3 SID (MOS 6581) emulation library
libsigc++-1.2- 1.2.5-1 Type-safe Signal Framework for C++ - runtime
libsnmp-base 5.1.1-2 NET SNMP (Simple Network Management Protocol
libsnmp-sessio 1.03-1 Perl support for accessing SNMP-aware device
libsnmp5 5.1.1-2 NET SNMP (Simple Network Management Protocol
libspeex1 1.0.rel.3-1 The Speex Speech Codec
libss2 1.35-6 Command-line interface parsing library
libssl0.9.7 0.9.7d-4 SSL shared libraries
libstdc++2.10- 2.95.4-22 The GNU stdc++ library
libstdc++5 3.3.4-3 The GNU Standard C++ Library v3
libstdc++5-3.3 3.3.4-3 The GNU Standard C++ Library v3 (development
libsvn0 1.0.5-1 Shared libraries used by Subversion (aka. sv
libswig1.3.21 1.3.21-5 Runtime support libraries for swig generated
libtasn1-0 0.1.2-4 Manage ASN.1 structures (runtime)
libtasn1-2 0.2.7.0-2 Manage ASN.1 structures (runtime)
libterm-readke 2.21-1.3 A perl module for simple terminal control
libtext-charwi 0.04-1 get display widths of characters on the term
libtext-iconv- 1.2-3 Convert between character sets in Perl
libtext-wrapi1 0.06-1 internationalized substitute of Text::Wrap
libtextwrap1 0.1-1 text-wrapping library with i18n - runtime
libuclibc-dev 0.9.26-4 A small implementation of the C library
libuclibc0 0.9.26-4 A small implementation of the C library
liburi-perl 1.30-1 Manipulates and accesses URI strings
libuuid1 1.35-6 Universally unique id library
libvorbis0a 1.0.1-1 The Vorbis General Audio Compression Codec
libvorbisenc2 1.0.1-1 The Vorbis General Audio Compression Codec
libvorbisfile3 1.0.1-1 The Vorbis General Audio Compression Codec
libwrap0 7.6.dbs-4 Wietse Venemas TCP wrappers library
libwww-perl 5.800-1 WWW client/server library for Perl (aka LWP)
libxml2 2.6.11-1 GNOME XML library
libzlib-ruby 0.6.0+ruby1.8- Extension library to use zlib from Ruby
libzlib-ruby1. 1.8.1-9 Extension library to use zlib from Ruby
lilo 22.5.9-5 LInux LOader - The Classic OS loader can loa
links 0.99-1.2 Character mode WWW browser
linux-kernel-h 2.5.999-test7- Linux Kernel Headers for development
linux-wlan-ng 0.2.0-15 utilities for wireless prism2 cards
iU linux-wlan-ng- 2.4.25-3+0.2.0 drivers for wireless prism2 cards
localepurge 0.0.65 Automagically removing unnecessary locale da
locales 2.3.2.ds1-13 GNU C Library: National Language (locale) da
login 4.0.3-29 System login tools
logrotate 3.7-2 Log rotation utility
lsof 4.71-1 List open files.
lynx 2.8.5-1 Text-mode WWW Browser
m4 1.4.1-1 a macro processing language
mailx 8.1.2-0.200405 A simple mail user agent
make 3.80-8 The GNU version of the "make" utility.
makedev 2.3.1-70 Creates device files in /dev
man-db 2.4.2-17 The on-line manual pager
manpages 1.67-1 Manual pages about using a GNU/Linux system
mawk 1.3.3-11 a pattern scanning and text processing langu
mbr 1.1.5-2 Master Boot Record for IBM-PC compatible com
mc 4.6.0-4.6.1-pr Midnight Commander - a powerful file manager
menu 2.1.15 Provides update-menus functions for some app
mime-support 3.27-1 MIME files mime.types & mailcap, and sup
mimedecode 1.9-2 Decodes transfer encoded text type mime mess
mkinitrd-cd 0.31 Creates an initrd image for booting from a l
mkisofs 2.0+a30.pre1-1 Creates ISO-9660 CD-ROM filesystem images
modconf 0.2.45.1 Device Driver Configuration
module-init-to 3.1-pre5-1 tools for managing Linux kernel modules
modutils 2.4.26-1 Linux module utilities
motor 3.2.4.1-1 C/C++/Java Integrated Development Environmen
motor-common 3.2.4.1-1 C/C++/Java Integrated Development Environmen
mount 2.12-7 Tools for mounting and manipulating filesyst
mp3blaster 3.2.0-5 Full-screen console mp3 and ogg vorbis playe
mp3c 0.27-7 MP3Creator - Creator for MP3/OGG-files
mpg321 0.2.10.3 A Free command-line mp3 player, compatible w
mrtg 2.10.13-1 Multi Router Traffic Grapher
mtools 3.9.9-2 Tools for manipulating MSDOS files
mutt 1.5.6-20040523 Text-based mailreader supporting MIME, GPG,
mysql-client 4.0.20-3 mysql database client binaries
mysql-common 4.0.20-3 mysql database common files (e.g. /etc/mysql
mysql-server 4.0.20-3 mysql database server binaries
mytop 1.2-1 top like query monitor for MySQL
nano 1.2.4-1 free Pico clone with some new features
nast 0.2.0-1 packet sniffer and a lan analyzer
ncurses-base 5.4-4 Descriptions of common terminal types
ncurses-bin 5.4-4 Terminal-related programs and man pages
nessus-plugins 2.0.10a-4 Nessus plugins
nessusd 2.0.10a-6 Remote network security auditor, the server
net-tools 1.60-10 The NET-3 networking toolkit
netbase 4.17 Basic TCP/IP networking system
netcat 1.10-23 TCP/IP swiss army knife
netkit-inetd 0.10-9 The Internet Superserver
netkit-ping 0.10-9 The ping utility from netkit
netris 0.52-1 A free, networked version of T*tris
ngrep 1.40.1-3 grep for network traffic
nload 0.6.0-2 A realtime console network usage monitor
nmap 3.55-1 The Network Mapper
nvi 1.79-21 4.4BSD re-implementation of vi
openssl 0.9.7d-4 Secure Socket Layer (SSL) binary and related
parted 1.6.9-3.1 The GNU Parted disk partition resizing progr
partimage 0.6.4-7 Linux/UNIX utility to save partitions in a c
passwd 4.0.3-29 Change and administer password and group dat
patch 2.5.9-1 Apply a diff file to an original
pbuilder 0.109 personal package builder for Debian packages
pciutils 2.1.11-13 Linux PCI Utilities (for 2.*.* kernels)
pcmcia-cs 3.2.5-7 PCMCIA Card Services for Linux
perl 5.8.4-2 Larry Walls Practical Extraction and Report
perl-base 5.8.4-2 The Pathologically Eclectic Rubbish Lister.
perl-modules 5.8.4-2 Core Perl modules.
php4 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-cgi 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-pear 4.3.8-1 PEAR - PHP Extension and Application Reposit
po-debconf 0.8.12 Manage translated Debconf templates files wi
postfix 2.1.4-1 A high-performance mail transport agent
ppp 2.4.2+20040428 Point-to-Point Protocol (PPP) daemon
pppconfig 2.3.3 A text menu based utility for configuring pp
pppoe 3.5-3 PPP over Ethernet driver
pppoeconf 1.0.3 configures PPPoE/ADSL connections
pppstatus 0.4.2-6 console-based PPP status monitor
procmail 3.22-9 Versatile e-mail processor
procps 3.2.1-2 The /proc file system utilities
progsreiserfs 0.3.0.4-4 Tools for manipulating ReiserFS filesystems
psmisc 21.5-1 Utilities that use the proc filesystem
python 2.3.4-1 An interactive high-level object-oriented la
python-egenix- 2.0.5-1 Date and time handling routines for Python [
python-mysqldb 0.9.2-0.4 A Python interface for MySQL
python2.3 2.3.4-5 An interactive high-level object-oriented la
python2.3-egen 2.0.5-1 Date and time handling routines for Python 2
python2.3-egen 2.0.5-1 A collection of new builtins for Python 2.3
python2.3-mysq 0.9.2-0.4 A Python interface for MySQL
python2.3-subv 1.0.5-1 Python modules for interfacing with Subversi
rcconf 1.8 Debian Runlevel configuration tool
rcs 5.7-13.2 The GNU Revision Control System
realpath 1.9.12 Return the canonicalized absolute pathname
reiser4progs 0.5.3-1 Administration utilities for the Reiser4 fil
reportbug 2.63 Reports bugs in the Debian distribution
ruby 1.8.1-8 An interpreter of object-oriented scripting
ruby1.8 1.8.1-9 Interpreter of object-oriented scripting lan
samba 3.0.4-5 a LanManager-like file and printer server fo
samba-common 3.0.4-5 Samba common files used by both the server a
sbcl 0.8.21+truly.0 A development environment for Common Lisp
screen 4.0.2-3 a terminal multiplexor with VT100/ANSI termi
sed 4.1.1-1 The GNU sed stream editor
setserial 2.17-36 Controls configuration of serial ports
sgml-base 1.25 SGML infrastructure and SGML catalog file su
shapecfg 2.2.12-0.7.3-1 Bandwidth limiter for virtual network interf
shellutils 5.2.1-1 The GNU shell programming utilities (transit
sipcalc 1.1.2-1 Advanced console-based ip subnet calculator
slang1 1.4.9dbs-3 The S-Lang programming library - runtime ver
slang1a-utf8 1.4.9dbs-3 The S-Lang programming library with utf8 sup
smbclient 3.0.4-5 a LanManager-like simple client for Unix
smbfs 3.0.4-5 mount and umount commands for the smbfs (for
snmp 5.1.1-2 NET SNMP (Simple Network Management Protocol
snort 2.1.2-2 Flexible Network Intrusion Detection System
snort-common 2.1.2-2 Flexible Network Intrusion Detection System
snort-rules-de 2.1.2-2 Flexible Network Intrusion Detection System
sntop 1.4.2-4 A curses-based utility that polls hosts to d
sox 12.17.4-8 A universal sound sample translator
spellutils 0.7-4 Utilities to spell-check selectively
ssh 3.8.1p1-5 Secure rlogin/rsh/rcp replacement (OpenSSH)
subversion 1.0.5-1 Advanced version control system (aka. svn)
subversion-too 1.0.5-1 Assorted tools related to Subversion (aka. s
sudo 1.6.7p5-1 Provide limited super user privileges to spe
svn-buildpacka 0.5.8 helper programs to maintain Debian packages
sysklogd 1.4.1-14 System Logging Daemon
syslinux 2.04-2 Bootloader for Linux/i386 using MS-DOS flopp
sysv-rc 2.85-22 Standard boot mechanism using symlinks in /e
sysvinit 2.85-22 System-V like init
tar 1.13.93-4 GNU tar
tasksel 2.06 Tool for selecting tasks for installation on
tcpd 7.6.dbs-4 Wietse Venemas TCP wrapper utilities
tcpdump 3.8.3-3 A powerful tool for network monitoring and d
telnet 0.17-24 The telnet client.
testdisk 5.2-6 Partition scanner and disk recovery tool
tethereal 0.10.5-3 Network traffic analyzer (console)
tetrinet-clien 0.11+CVS200310 Textmode client for tetrinet, a multiplayer
tetrinet-serve 0.11+CVS200310 Server for tetrinet, a multiplayer tetris-li
textutils 5.2.1-1 The GNU text file processing utilities (tran
tintin++ 1.86-2 Classic text-based MUD client
ucf 1.07 Update Configuration File: preserves user ch
uclibc-toolcha 0.9.26-4 A compiler wrapper for uClibc
unace 1.2b-2 extract, test and view .ace archives
unzoo 4.4-2 zoo archive extractor
urlview 0.9-11 Extracts URLs from text
util-linux 2.12-7 Miscellaneous system utilities
vcs-tree 0.2.1-2 Version Control System Tree Walker
viewcvs 0.9.2+cvs.1.0. Viewing CVS Repositories via HTTP
viewcvs-query 0.9.2+cvs.1.0. Viewing CVS (viewcvs-query.cgi)
vim 6.3-013+2 Vi IMproved - enhanced vi editor
vim-common 6.3-013+2 Vi IMproved - Common files
vorbis-tools 1.0.1-1 Several Ogg Vorbis Tools
w3m 0.5.1-1 WWW browsable pager with excellent tables/fr
wamerican 5-4 American English dictionary words for /usr/s
wavemon 0.4.0b-6 Wireless Device Monitoring Application
wenglish 5-4 American English dictionary words for /usr/s
wget 1.9.1-4 retrieves files from the web
whiptail 0.51.6-9 Displays user-friendly dialog boxes from she
wireless-tools 26+27pre22-1 Tools for manipulating Linux Wireless Extens
xml-core 0.09 XML infrastructure and XML catalog file supp
yafc 1.0-7.2 Yet Another FTP Client
zlib1g 1.2.1.1-5 compression library - runtime
<<lessEverything in desilico is as is in debian sid, but you can use it as a live cd, very useful for debootstraping or rescue tool. Autodiscovery Included.
Package List:
adduser 3.57 Add and remove users and groups
apache 1.3.31-2 Versatile, high-performance HTTP server
apache-common 1.3.31-2 Support files for all Apache webservers
apache-perl 1.3.31-2 Versatile, high-performance HTTP server with
apache-utils 1.3.31-2 Utility programs for webservers
apt 0.5.26 Advanced front-end for dpkg
apt-build 0.9.3 Frontend to apt to build, optimize and insta
apt-listbugs 0.0.40 Lists critical bugs before each apt installa
apt-src 0.25.1 manage Debian source packages
apt-utils 0.5.26 APT utility programs
aptitude 0.2.15.2-1 curses-based apt frontend
arj 3.10.21-1 archiver for .arj files
aspell 0.50.5-3 GNU Aspell spell-checker
aspell-bin 0.50.5-3 GNU Aspell standalone spell-check utilities
aspell-en 0.51-1-1 English dictionary for GNU Aspell
at 3.1.8-11 Delayed job execution and batch processing
autoconf 2.59-7 automatic configure script builder
automake1.4 1.4-p6-8 A tool for generating GNU Standards-complian
autotools-dev 20040312.1 Update infrastructure for config.{guess,sub}
axel 1.0a-1 A light download accelerator - Console versi
base-config 2.36 Debian base system configurator
base-files 3.0.16 Debian base system miscellaneous files
base-passwd 3.5.7 Debian base system master password and group
bash 2.05b-19 The GNU Bourne Again SHell
bc 1.06-15 The GNU bc arbitrary precision calculator la
bind9-host 9.2.3+9.2.4-rc Version of host bundled with BIND 9.X
binutils 2.14.90.0.7-8 The GNU assembler, linker and binary utiliti
bitchx 1.0-0c19.20030 Advanced Internet Relay Chat client
bootcd 2.41 run your system from cd without need for dis
bootcd-mkinitr 2.41 bootcd extension to create an initrd-image u
bsdgames 2.16-3 a collection of classic textual unix games
bsdmainutils 6.0.14 collection of more utilities from FreeBSD
bsdutils 2.12-7 Basic utilities from 4.4BSD-Lite
build-essentia 10 informational list of build-essential packag
busybox 0.60.5-2.1 Tiny utilities for small and embedded system
bzip2 1.0.2-1 A high-quality block-sorting file compressor
ca-certificate 20031007 Common CA Certificates PEM files
ccal 3.5-7 Colorised calendar utility
cdcd 0.6.5-4 command line or console based CD player
cdparanoia 3a9.8-11 An audio extraction tool for sampling CDs.
cdrecord 2.0+a30.pre1-1 command line CD writing tool
cl-asdf 1.84-1 Another System Definition Facility
cl-defsystem3 3.3i+cvs.2004. Make system for Common Lisp Packages
clamav 0.73-2 Antivirus scanner for Unix
clamav-base 0.73-2 Base package for clamav, an anti-virus utili
clamav-freshcl 0.73-2 Downloads clamav virus databases from the In
clamav-getfile 0.3-5 Update script for clamav
clamav-testfil 0.73-2 Use these files to test that your Antivirus
cmucl 18e-10 The CMUCL lisp compiler and development syst
common-lisp-co 3.91 This is a Common Lisp source and compiler ma
console-common 0.7.46 Basic infrastructure for text console config
console-data 2002.12.04dbs- Keymaps, fonts, charset maps, fallback table
console-tools 0.2.3dbs-53 Linux console and font utilities
coreutils 5.2.1-1 The GNU core utilities
cpio 2.5-1.1 GNU cpio -- a program to manage archives of
cpp 3.3.4-1 The GNU C preprocessor (cpp)
cpp-3.3 3.3.4-3 The GNU C preprocessor
cramfsprogs 1.1-6 Tools for CramFs (Compressed ROM File System
cron 3.0pl1-83 management of regular background processing
curl 7.12.0.is.7.11 Get a file from an HTTP, HTTPS, FTP or GOPHE
cursel 0.2.2-3 simple language to provide text application
curves 0.8.19 colorful console interface for CVS version c
cvs 1.12.9-2 Concurrent Versions System
cvs2svn 0.0.1173-1 Convert a cvs repository to a subversion rep
cvsgraph 1.4.0-3 Create a tree of revisions/branches from a C
dash 0.5.1-1 The Debian Almquist Shell
db4.2-util 4.2.52-16 Berkeley v4.2 Database Utilities
debconf 1.4.29 Debian configuration management system
debconf-i18n 1.4.29 full internationalization support for debcon
debconf-utils 1.4.29 debconf utilities
debhelper 4.2.15 helper programs for debian/rules
debianutils 2.8.4 Miscellaneous utilities specific to Debian
debootstrap 0.2.39.1 Bootstrap a basic Debian system
devscripts 2.7.95.1 Scripts to make the life of a Debian Package
dhcp-client 2.0pl5-19 DHCP Client
dictionaries-c 0.22.30 Common utilities for spelling dictionary too
diff 2.8.1-6 File comparison utilities
discover 2.0.4-5 hardware identification system
discover-data 2.2004.05.03-4 Data lists for Discover hardware detection s
dnstop 20040309-1 A console tool to analyze DNS traffic
dnsutils 9.2.3+9.2.4-rc Clients provided with BIND
dosfstools 2.10-1 Utilities to create and check MS-DOS FAT fil
dpkg 1.10.22 Package maintenance system for Debian
dpkg-dev 1.10.22 Package building tools for Debian
dpkg-ruby 0.3.0 ruby interface for dpkg
dselect 1.10.22 a user tool to manage Debian packages
e2fslibs 1.35-6 The EXT2 filesystem libraries
e2fsprogs 1.35-6 The EXT2 file system utilities and libraries
ed 0.2-20 The classic unix line editor
elmo 1.3.0-1 text-based mail-reader supporting SMTP and P
emacsen-common 1.4.15 Common facilities for all emacsen.
enscript 1.6.4-4 Converts ASCII text to Postscript, HTML, RTF
esound-common 0.2.29-1 Enlightened Sound Daemon - Common files
ethereal-commo 0.10.5-3 Network traffic analyser (common files)
ethstatus 0.4.2-2 Console-based ethernet statistics monitor
ettercap 0.7.0-1 Multipurpose sniffer/interceptor/logger for
ettercap-commo 0.7.0-1 Common support files and plugins for etterca
rc exim 3.36-11 An MTA (Mail Transport Agent)
exuberant-ctag 5.5.4-1 build tag file indexes of source code defini
fakeroot 1.0.5 Gives a fake root environment
fdclone 2.04a-1 A console-base lightweight file manager
fdutils 5.4-20040228-1 Linux floppy utilities
festival 1.4.3-13 general multi-lingual speech synthesis syste
festlex-cmu 1.4.0-6 CMU dictionary for Festival
festlex-poslex 1.4.0-5 Part of speech lexicons and ngram from Engli
festvox-kallpc 1.4.0-5 American English male speaker for festival,
fetchmail 6.2.5-9 SSL enabled POP3, APOP, IMAP mail gatherer/f
figlet 2.2.1-1 Frank, Ian & Glenns Letters
file 4.09-1 Determines file type using "magic" numbers
fileutils 5.2.1-1 The GNU file management utilities (transitio
findutils 4.1.20-4 utilities for finding files--find, xargs, an
fp-compiler 1.0.10-1.2 Free Pascal Compiler
fp-units-rtl 1.0.10-1.2 Free Pascal Runtime Library
fp-utils 1.0.10-1.2 Free Pascal Utils
fping 2.4b2-to-ipv6- sends ICMP ECHO_REQUEST packets to network h
fsh 1.2-1.1 Fast remote command execution over rsh/ssh/l
g++ 3.3.4-1 The GNU C++ compiler
g++-3.3 3.3.4-3 The GNU C++ compiler
gcc 3.3.4-1 The GNU C compiler
gcc-3.3 3.3.4-3 The GNU C compiler
gcc-3.3-base 3.3.4-3 The GNU Compiler Collection (base package)
gdb 6.1-3 The GNU Debugger
gettext 0.14.1-2 GNU Internationalization utilities
gettext-base 0.14.1-2 GNU Internationalization utilities for the b
gnupg 1.2.4-4 GNU privacy guard - a free PGP replacement
gpm 1.19.6-12.1 General Purpose Mouse Interface
grep 2.5.1.ds1-2 GNU grep, egrep and fgrep
groff-base 1.18.1.1-1 GNU troff text-formatting system (base syste
gzip 1.3.5-8 The GNU compression utility
hostap-modules 2.4.26-1-386+0 Host AP driver for Intersil Prism2/2.5/3 (ke
hostap-utils 0.1.3-1 Utility programs for Host AP driver for Inte
hostapd 0.1.3-1 IEEE 802.11 AP and IEEE 802.1X Authenticator
hostname 2.13 A utility to set/show the host name or domai
html2text 1.3.2a-1 An advanced HTML to text converter
hwdata 0.120-1 hardware identification / configuration data
ifupdown 0.6.4-4.8 High level tools to configure network interf
ilisp 5.12.0+cvs.200 Emacs interface to LISP implementations
imcom 1.33-1 A console jabber client
info 4.7-2 Standalone GNU Info documentation browser
initrd-tools 0.1.71 tools to create initrd image for prepackaged
initscripts 2.85-22 Standard scripts needed for booting and shut
intltool-debia 0.30+20040212 Help i18n of RFC822 compliant config files
ipchains 1.3.10-15 Network firewalling for Linux 2.2.x
ipmenu 0.0.3-6 A cursel iptables/iproute2 GUI
iproute 20010824-13.1 Professional tools to control the networking
ipsc 0.4.3-2 IP Subnet Calculator for console
iptables 1.2.9-10 Linux kernel 2.4+ iptables administration to
iptraf 2.7.0-5 Interactive Colorful IP LAN Monitor
irssi-scripts 20040708 collection of scripts for irssi
irssi-text 0.8.9-1 text-mode version of the irssi IRC client
iF kernel-image-2 2.4.25-3 Linux kernel image for version 2.4.25 on 386
rc kernel-image-2 2.4.26-2 Linux kernel image for version 2.4.26 on 386
rc kernel-image-2 2.6.6-1 Linux kernel image for version 2.6.6 on 386.
kernel-source- 2.6.6-2 Linux kernel source for version 2.6.6 with D
klogd 1.4.1-14 Kernel Logging Daemon
kudzu 1.1.67-1 The Red Hat Linux hardware probing tool.
less 382-1 Pager program similar to more
lftp 3.0.5-1 Sophisticated command-line FTP/HTTP client p
libacl1 2.2.23-1 Access control list shared library
libadns1 1.0-8.2 Asynchronous-capable DNS client library and
libao2 0.8.5-1 Cross Platform Audio Output Library
libapache-mod- 1.29.0.2-9 Integration of perl with the Apache web serv
libappconfig-p 1.52-8 Perl module for configuration file and comma
libapr0 2.0.50-5 The Apache Portable Runtime
libapt-pkg-per 0.1.12 Perl interface to libapt-pkg
libaspell15 0.50.5-3 The GNU Aspell spell-checker runtime toolkit
libatm1 2.4.1-15 shared library for ATM (Asynchronous Transfe
libattr1 2.4.16-1 Extended attribute shared library
libaudiofile0 0.2.6-4 Open-source version of SGIs audiofile libra
libblkid1 1.35-6 Block device id library
libbz2-1.0 1.0.2-1 A high-quality block-sorting file compressor
libc6 2.3.2.ds1-13 GNU C Library: Shared libraries and Timezone
libc6-dev 2.3.2.ds1-13 GNU C Library: Development Libraries and Hea
libcap1 1.10-14 support for getting/setting POSIX.1e capabil
libcdaudio0 0.99.9-2 library for controlling a CD-ROM when playin
libcdparanoia0 3a9.8-11 Shared libraries for cdparanoia (runtime lib
libclamav1 0.73-2 Virus scanner library
libcomerr2 1.35-6 The Common Error Description library
libconfig-inif 2.38-2 A module for reading .ini-style configuratio
libconsole 0.2.3dbs-53 Shared libraries for Linux console and font
libcupsys2-gnu 1.1.20final+rc Common UNIX Printing System(tm) - libs
libcurl2 7.12.0.is.7.11 Multi-protocol file transfer library, now wi
libdb1-compat 2.1.3-7 The Berkeley database routines [glibc 2.0/2.
libdb2 2.7.7.0-9 The Berkeley database routines (run-time fil
libdb3 3.2.9-20 Berkeley v3 Database Libraries [runtime]
libdb3-util 3.2.9-20 Berkeley v3 Database Utilities
libdb4.1 4.1.25-17 Berkeley v4.1 Database Libraries [runtime]
libdb4.2 4.2.52-16 Berkeley v4.2 Database Libraries [runtime]
libdbd-mysql-p 2.9003-2 A Perl5 database interface to the MySQL data
libdbi-perl 1.42-3 The Perl5 Database Interface by Tim Bunce
libdevel-symdu 2.03-3 Perl module for inspecting perls symbol tab
libdevmapper1. 1.00.19-2 The Linux Kernel Device Mapper userspace lib
libdiscover2 2.0.4-5 hardware identification library
libdns11 9.2.3+9.2.4-rc DNS Shared Library used by BIND
libdpkg-ruby1. 0.3.0 modules/classes for dpkg on ruby 1.8
libesd0 0.2.29-1 Enlightened Sound Daemon - Shared libraries
libestools1.2c 1.2.3-7 Edinburgh Speech Tools Library
libexpat1 1.95.6-8 XML parsing C library - runtime library
libflac4 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libfreetype6 2.1.7-2.1 FreeType 2 font engine, shared library files
libgc1 6.3-1 Conservative garbage collector for C and C++
libgcc1 3.3.4-3 GCC support library
libgcrypt1 1.1.12-7 LGPL Crypto library - runtime library
libgcrypt7 1.1.90-8 LGPL Crypto library - runtime library
libgd2-noxpm 2.0.23-2 GD Graphics Library version 2 (without XPM s
libgdbm3 1.8.3-2 GNU dbm database routines (runtime version)
libglib2.0-0 2.4.2-1 The GLib library of C routines
libgmp3 4.1.3-1 Multiprecision arithmetic library
libgnutls10 1.0.4-3 GNU TLS library - runtime library
libgnutls7 0.8.12-5 GNU TLS library - runtime library
libgpg-error0 0.7-3 library for common error values and messages
libgpgme11 0.9.0-1 GPGME - GnuPG Made Easy
libgpmg1 1.19.6-12.1 General Purpose Mouse Library [libc6]
libhtml-parser 3.36-1 A collection of modules that parse HTML text
libhtml-tagset 3.03-2 Data tables pertaining to HTML
libhtml-tree-p 3.18-1 represent and create HTML syntax trees
libid3tag0 0.15.1b-1 ID3 tag reading library from the MAD project
libident 0.22-2.2 simple RFC1413 client library - runtime
libidn11 0.4.1-1 GNU libidn library, implementation of IETF I
libintl-gettex 0.11-5 Gettext wrapper for Ruby
libintl-gettex 0.11-5 Gettext wrapper for Ruby 1.8
libisc7 9.2.3+9.2.4-rc ISC Shared Library used by BIND
libiw27 26+27pre22-1 Wireless tools - library
libjpeg62 6b-9 The Independent JPEG Groups JPEG runtime li
libkeynote0 2.3-10 Decentralized Trust-Management system, share
libkrb53 1.3.3-2 MIT Kerberos runtime libraries
libldap2 2.1.30-2 OpenLDAP libraries
liblocale-gett 1.01-17 Using libc functions for internationalizatio
liblockfile1 1.06 NFS-safe locking library, includes dotlockfi
libltdl3 1.5.6-2 A system independent dlopen wrapper for GNU
liblwres1 9.2.3+9.2.4-rc Lightweight Resolver Library used by BIND
liblzo1 1.08-1 A real-time data compression library
libmad0 0.15.1b-1 MPEG audio decoder library
libmagic1 4.09-1 File type determination library using "magic
libmm13 1.3.0-3 Shared memory library - runtime
libmysqlclient 3.23.56-2 LGPL-licensed client library for MySQL datab
libmysqlclient 4.0.20-3 mysql database client library
libnasl2 2.0.10a-1 Nessus Attack Scripting Language, shared lib
libncurses5 5.4-4 Shared libraries for terminal handling
libncursesw5 5.4-4 Shared libraries for terminal handling (wide
libneon24 0.24.6.dfsg-1 An HTTP and WebDAV client library
libnessus2 2.0.10a-1 Nessus shared libraries
libnet-daemon- 0.38-1 Perl module for building portable Perl daemo
libnet0 1.0.2a-5 library for the construction and handling of
libnet1 1.1.2.1-1 Library for the construction and handling of
libnewt0 0.50.17-9.6 Not Eriks Windowing Toolkit - text mode win
libnewt0.51 0.51.6-9 Not Eriks Windowing Toolkit - text mode win
libntfs5 1.9.0-1 Library that provides common NTFS access fun
libogg0 1.1.0-1 Ogg Bitstream Library
liboggflac1 1.1.0-11 Free Lossless Audio Codec - runtime C librar
libopencdk8 0.5.5-3 Open Crypto Development Kit (OpenCDK) (runti
libpam-modules 0.76-22 Pluggable Authentication Modules for PAM
libpam-runtime 0.76-22 Runtime support for the PAM library
libpam0g 0.76-22 Pluggable Authentication Modules library
libpaper1 1.1.14 Library for handling paper characteristics
libparted1.6-0 1.6.9-3.1 The GNU Parted disk partitioning shared libr
libpcap0 0.6.2-2 System interface for user-level packet captu
libpcap0.7 0.7.2-7 System interface for user-level packet captu
libpcap0.8 0.8.3-3 System interface for user-level packet captu
libpcre3 4.5-1.1 Perl 5 Compatible Regular Expression Library
libperl5.8 5.8.4-2 Shared Perl library.
libplrpc-perl 0.2017-1 Perl extensions for writing PlRPC servers an
libpng12-0 1.2.5.0-6 PNG library - runtime
libpopt0 1.7-4 lib for parsing cmdline parameters
libreadline4 4.3-11 GNU readline and history libraries, run-time
libreiserfs0.3 0.3.0.4-4 ReiserFS filesystem access and manipulation
libruby1.8 1.8.1-9 Libraries necessary to run the Ruby
libsasl2 2.1.18-4.1 Authentication abstraction library
libsasl7 1.5.28-6.1 Authentication abstraction library
libsensors3 2.8.7-1 Library to read temperature/voltage/fan sens
libsidplay1-c1 1.36.57-3 SID (MOS 6581) emulation library
libsigc++-1.2- 1.2.5-1 Type-safe Signal Framework for C++ - runtime
libsnmp-base 5.1.1-2 NET SNMP (Simple Network Management Protocol
libsnmp-sessio 1.03-1 Perl support for accessing SNMP-aware device
libsnmp5 5.1.1-2 NET SNMP (Simple Network Management Protocol
libspeex1 1.0.rel.3-1 The Speex Speech Codec
libss2 1.35-6 Command-line interface parsing library
libssl0.9.7 0.9.7d-4 SSL shared libraries
libstdc++2.10- 2.95.4-22 The GNU stdc++ library
libstdc++5 3.3.4-3 The GNU Standard C++ Library v3
libstdc++5-3.3 3.3.4-3 The GNU Standard C++ Library v3 (development
libsvn0 1.0.5-1 Shared libraries used by Subversion (aka. sv
libswig1.3.21 1.3.21-5 Runtime support libraries for swig generated
libtasn1-0 0.1.2-4 Manage ASN.1 structures (runtime)
libtasn1-2 0.2.7.0-2 Manage ASN.1 structures (runtime)
libterm-readke 2.21-1.3 A perl module for simple terminal control
libtext-charwi 0.04-1 get display widths of characters on the term
libtext-iconv- 1.2-3 Convert between character sets in Perl
libtext-wrapi1 0.06-1 internationalized substitute of Text::Wrap
libtextwrap1 0.1-1 text-wrapping library with i18n - runtime
libuclibc-dev 0.9.26-4 A small implementation of the C library
libuclibc0 0.9.26-4 A small implementation of the C library
liburi-perl 1.30-1 Manipulates and accesses URI strings
libuuid1 1.35-6 Universally unique id library
libvorbis0a 1.0.1-1 The Vorbis General Audio Compression Codec
libvorbisenc2 1.0.1-1 The Vorbis General Audio Compression Codec
libvorbisfile3 1.0.1-1 The Vorbis General Audio Compression Codec
libwrap0 7.6.dbs-4 Wietse Venemas TCP wrappers library
libwww-perl 5.800-1 WWW client/server library for Perl (aka LWP)
libxml2 2.6.11-1 GNOME XML library
libzlib-ruby 0.6.0+ruby1.8- Extension library to use zlib from Ruby
libzlib-ruby1. 1.8.1-9 Extension library to use zlib from Ruby
lilo 22.5.9-5 LInux LOader - The Classic OS loader can loa
links 0.99-1.2 Character mode WWW browser
linux-kernel-h 2.5.999-test7- Linux Kernel Headers for development
linux-wlan-ng 0.2.0-15 utilities for wireless prism2 cards
iU linux-wlan-ng- 2.4.25-3+0.2.0 drivers for wireless prism2 cards
localepurge 0.0.65 Automagically removing unnecessary locale da
locales 2.3.2.ds1-13 GNU C Library: National Language (locale) da
login 4.0.3-29 System login tools
logrotate 3.7-2 Log rotation utility
lsof 4.71-1 List open files.
lynx 2.8.5-1 Text-mode WWW Browser
m4 1.4.1-1 a macro processing language
mailx 8.1.2-0.200405 A simple mail user agent
make 3.80-8 The GNU version of the "make" utility.
makedev 2.3.1-70 Creates device files in /dev
man-db 2.4.2-17 The on-line manual pager
manpages 1.67-1 Manual pages about using a GNU/Linux system
mawk 1.3.3-11 a pattern scanning and text processing langu
mbr 1.1.5-2 Master Boot Record for IBM-PC compatible com
mc 4.6.0-4.6.1-pr Midnight Commander - a powerful file manager
menu 2.1.15 Provides update-menus functions for some app
mime-support 3.27-1 MIME files mime.types & mailcap, and sup
mimedecode 1.9-2 Decodes transfer encoded text type mime mess
mkinitrd-cd 0.31 Creates an initrd image for booting from a l
mkisofs 2.0+a30.pre1-1 Creates ISO-9660 CD-ROM filesystem images
modconf 0.2.45.1 Device Driver Configuration
module-init-to 3.1-pre5-1 tools for managing Linux kernel modules
modutils 2.4.26-1 Linux module utilities
motor 3.2.4.1-1 C/C++/Java Integrated Development Environmen
motor-common 3.2.4.1-1 C/C++/Java Integrated Development Environmen
mount 2.12-7 Tools for mounting and manipulating filesyst
mp3blaster 3.2.0-5 Full-screen console mp3 and ogg vorbis playe
mp3c 0.27-7 MP3Creator - Creator for MP3/OGG-files
mpg321 0.2.10.3 A Free command-line mp3 player, compatible w
mrtg 2.10.13-1 Multi Router Traffic Grapher
mtools 3.9.9-2 Tools for manipulating MSDOS files
mutt 1.5.6-20040523 Text-based mailreader supporting MIME, GPG,
mysql-client 4.0.20-3 mysql database client binaries
mysql-common 4.0.20-3 mysql database common files (e.g. /etc/mysql
mysql-server 4.0.20-3 mysql database server binaries
mytop 1.2-1 top like query monitor for MySQL
nano 1.2.4-1 free Pico clone with some new features
nast 0.2.0-1 packet sniffer and a lan analyzer
ncurses-base 5.4-4 Descriptions of common terminal types
ncurses-bin 5.4-4 Terminal-related programs and man pages
nessus-plugins 2.0.10a-4 Nessus plugins
nessusd 2.0.10a-6 Remote network security auditor, the server
net-tools 1.60-10 The NET-3 networking toolkit
netbase 4.17 Basic TCP/IP networking system
netcat 1.10-23 TCP/IP swiss army knife
netkit-inetd 0.10-9 The Internet Superserver
netkit-ping 0.10-9 The ping utility from netkit
netris 0.52-1 A free, networked version of T*tris
ngrep 1.40.1-3 grep for network traffic
nload 0.6.0-2 A realtime console network usage monitor
nmap 3.55-1 The Network Mapper
nvi 1.79-21 4.4BSD re-implementation of vi
openssl 0.9.7d-4 Secure Socket Layer (SSL) binary and related
parted 1.6.9-3.1 The GNU Parted disk partition resizing progr
partimage 0.6.4-7 Linux/UNIX utility to save partitions in a c
passwd 4.0.3-29 Change and administer password and group dat
patch 2.5.9-1 Apply a diff file to an original
pbuilder 0.109 personal package builder for Debian packages
pciutils 2.1.11-13 Linux PCI Utilities (for 2.*.* kernels)
pcmcia-cs 3.2.5-7 PCMCIA Card Services for Linux
perl 5.8.4-2 Larry Walls Practical Extraction and Report
perl-base 5.8.4-2 The Pathologically Eclectic Rubbish Lister.
perl-modules 5.8.4-2 Core Perl modules.
php4 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-cgi 4.3.8-1 A server-side, HTML-embedded scripting langu
php4-pear 4.3.8-1 PEAR - PHP Extension and Application Reposit
po-debconf 0.8.12 Manage translated Debconf templates files wi
postfix 2.1.4-1 A high-performance mail transport agent
ppp 2.4.2+20040428 Point-to-Point Protocol (PPP) daemon
pppconfig 2.3.3 A text menu based utility for configuring pp
pppoe 3.5-3 PPP over Ethernet driver
pppoeconf 1.0.3 configures PPPoE/ADSL connections
pppstatus 0.4.2-6 console-based PPP status monitor
procmail 3.22-9 Versatile e-mail processor
procps 3.2.1-2 The /proc file system utilities
progsreiserfs 0.3.0.4-4 Tools for manipulating ReiserFS filesystems
psmisc 21.5-1 Utilities that use the proc filesystem
python 2.3.4-1 An interactive high-level object-oriented la
python-egenix- 2.0.5-1 Date and time handling routines for Python [
python-mysqldb 0.9.2-0.4 A Python interface for MySQL
python2.3 2.3.4-5 An interactive high-level object-oriented la
python2.3-egen 2.0.5-1 Date and time handling routines for Python 2
python2.3-egen 2.0.5-1 A collection of new builtins for Python 2.3
python2.3-mysq 0.9.2-0.4 A Python interface for MySQL
python2.3-subv 1.0.5-1 Python modules for interfacing with Subversi
rcconf 1.8 Debian Runlevel configuration tool
rcs 5.7-13.2 The GNU Revision Control System
realpath 1.9.12 Return the canonicalized absolute pathname
reiser4progs 0.5.3-1 Administration utilities for the Reiser4 fil
reportbug 2.63 Reports bugs in the Debian distribution
ruby 1.8.1-8 An interpreter of object-oriented scripting
ruby1.8 1.8.1-9 Interpreter of object-oriented scripting lan
samba 3.0.4-5 a LanManager-like file and printer server fo
samba-common 3.0.4-5 Samba common files used by both the server a
sbcl 0.8.21+truly.0 A development environment for Common Lisp
screen 4.0.2-3 a terminal multiplexor with VT100/ANSI termi
sed 4.1.1-1 The GNU sed stream editor
setserial 2.17-36 Controls configuration of serial ports
sgml-base 1.25 SGML infrastructure and SGML catalog file su
shapecfg 2.2.12-0.7.3-1 Bandwidth limiter for virtual network interf
shellutils 5.2.1-1 The GNU shell programming utilities (transit
sipcalc 1.1.2-1 Advanced console-based ip subnet calculator
slang1 1.4.9dbs-3 The S-Lang programming library - runtime ver
slang1a-utf8 1.4.9dbs-3 The S-Lang programming library with utf8 sup
smbclient 3.0.4-5 a LanManager-like simple client for Unix
smbfs 3.0.4-5 mount and umount commands for the smbfs (for
snmp 5.1.1-2 NET SNMP (Simple Network Management Protocol
snort 2.1.2-2 Flexible Network Intrusion Detection System
snort-common 2.1.2-2 Flexible Network Intrusion Detection System
snort-rules-de 2.1.2-2 Flexible Network Intrusion Detection System
sntop 1.4.2-4 A curses-based utility that polls hosts to d
sox 12.17.4-8 A universal sound sample translator
spellutils 0.7-4 Utilities to spell-check selectively
ssh 3.8.1p1-5 Secure rlogin/rsh/rcp replacement (OpenSSH)
subversion 1.0.5-1 Advanced version control system (aka. svn)
subversion-too 1.0.5-1 Assorted tools related to Subversion (aka. s
sudo 1.6.7p5-1 Provide limited super user privileges to spe
svn-buildpacka 0.5.8 helper programs to maintain Debian packages
sysklogd 1.4.1-14 System Logging Daemon
syslinux 2.04-2 Bootloader for Linux/i386 using MS-DOS flopp
sysv-rc 2.85-22 Standard boot mechanism using symlinks in /e
sysvinit 2.85-22 System-V like init
tar 1.13.93-4 GNU tar
tasksel 2.06 Tool for selecting tasks for installation on
tcpd 7.6.dbs-4 Wietse Venemas TCP wrapper utilities
tcpdump 3.8.3-3 A powerful tool for network monitoring and d
telnet 0.17-24 The telnet client.
testdisk 5.2-6 Partition scanner and disk recovery tool
tethereal 0.10.5-3 Network traffic analyzer (console)
tetrinet-clien 0.11+CVS200310 Textmode client for tetrinet, a multiplayer
tetrinet-serve 0.11+CVS200310 Server for tetrinet, a multiplayer tetris-li
textutils 5.2.1-1 The GNU text file processing utilities (tran
tintin++ 1.86-2 Classic text-based MUD client
ucf 1.07 Update Configuration File: preserves user ch
uclibc-toolcha 0.9.26-4 A compiler wrapper for uClibc
unace 1.2b-2 extract, test and view .ace archives
unzoo 4.4-2 zoo archive extractor
urlview 0.9-11 Extracts URLs from text
util-linux 2.12-7 Miscellaneous system utilities
vcs-tree 0.2.1-2 Version Control System Tree Walker
viewcvs 0.9.2+cvs.1.0. Viewing CVS Repositories via HTTP
viewcvs-query 0.9.2+cvs.1.0. Viewing CVS (viewcvs-query.cgi)
vim 6.3-013+2 Vi IMproved - enhanced vi editor
vim-common 6.3-013+2 Vi IMproved - Common files
vorbis-tools 1.0.1-1 Several Ogg Vorbis Tools
w3m 0.5.1-1 WWW browsable pager with excellent tables/fr
wamerican 5-4 American English dictionary words for /usr/s
wavemon 0.4.0b-6 Wireless Device Monitoring Application
wenglish 5-4 American English dictionary words for /usr/s
wget 1.9.1-4 retrieves files from the web
whiptail 0.51.6-9 Displays user-friendly dialog boxes from she
wireless-tools 26+27pre22-1 Tools for manipulating Linux Wireless Extens
xml-core 0.09 XML infrastructure and XML catalog file supp
yafc 1.0-7.2 Yet Another FTP Client
zlib1g 1.2.1.1-5 compression library - runtime
Download (294.5MB)
Added: 2005-12-21 License: GPL (GNU General Public License) Price:
1405 downloads
glibc-audit 2.4-4
glibc-audit is a modified version of glibc for application developers who check their code with an automatic memory access check more>>
glibc-audit is a modified version of glibc for application developers who check their code with an automatic memory access checker such as valgrind, Insure++, or Purify.
glibc-audit has been audited and cleaned up so that reports from the developers use of a memory access checker are more likely to be interesting to the developer, with less "noise" from the C library itself. Typically, glibc-audit initializes all of its local variables and structs before use. Ordinary glibc uses uninitialized dummy variables that are "dont-care" to its logic but reported by the memory access checker.
Also, the r_debug.r_brk protocol has been enhanced to co-operate with a co-resident auditor. If the auditor sets .r_brk, then the runtime loader will call the auditor directly whenever a shared library event occurs.
This is much more convenient than using breakpoints. By default the old breakpoint protocol works just like before. The new protocol is binary compatible with the old on machines where a pointer to a function is the same size as an ordinary pointer. Platforms where a pointer to a function is larger (such as HP-PA RISC, Alpha processor, or PowerPC) are not binary backward compatible, and will have to increment r_debug.r_version. Exising clients (such as gdb) also will see an ignorable type mismatch error when they are built. But for now, it is worth more not to antagonize gdb at runtime on x86.
The patch modifies 91 files. Compared to glibc-2.3.2-27.9, the additional code occupies 18 more bytes of .text, and 24 fewer bytes in the .so. On a nano-scopic scale, the typical execution cost is 0 to 3 CPU cycles per affected routine; the estimated median total impact is less than 1 second per machine per day. In the case of *printf(), glibc-audit is faster than glibc because the cleaned-up source helps gcc-3.2 avoid generating atrocious code when initializing printf_spec.info for parse_one_spec() in stdio-common/printf-parse.h.
Glibc-audit was constructed by running a memory access checker on the internal testcases of glibc, then analyzing the reported errors and modifying the source. The process revealed 10 memory access bugs in glibc-2.3.2-11.9. Seven were fixed in glibc-2.3.2-27.9, two more have been fixed in CVS, and one is a design flaw that probably will not be fixed.
Predecessor patches to glibc-audit-1 were submitted to the glibc project, but those patches were ignored [user "guest", password "guest"], declined, or rejected. There is enough improvement in usability and reliability to publish glibc-audit-1 separately.
The unmodified glibc-2.3.2-27.9.src.rpm is available from RedHat mirrors. rpmbuild -ba --target i686 took about 4 hours and 2.5GB of disk space on a machine with 1.1GHz CPU, 384MB RAM, UDMA100 disk.
Enhancements:
- The patches were updated to glibc-2.4-4.
- A glibc bug that interfered with gdb stop-on-solib-events was fixed.
- On x86, x86-64, and PowerPC, the __NR_open system call was improved to avoid leaking information from the user to the kernel.
<<lessglibc-audit has been audited and cleaned up so that reports from the developers use of a memory access checker are more likely to be interesting to the developer, with less "noise" from the C library itself. Typically, glibc-audit initializes all of its local variables and structs before use. Ordinary glibc uses uninitialized dummy variables that are "dont-care" to its logic but reported by the memory access checker.
Also, the r_debug.r_brk protocol has been enhanced to co-operate with a co-resident auditor. If the auditor sets .r_brk, then the runtime loader will call the auditor directly whenever a shared library event occurs.
This is much more convenient than using breakpoints. By default the old breakpoint protocol works just like before. The new protocol is binary compatible with the old on machines where a pointer to a function is the same size as an ordinary pointer. Platforms where a pointer to a function is larger (such as HP-PA RISC, Alpha processor, or PowerPC) are not binary backward compatible, and will have to increment r_debug.r_version. Exising clients (such as gdb) also will see an ignorable type mismatch error when they are built. But for now, it is worth more not to antagonize gdb at runtime on x86.
The patch modifies 91 files. Compared to glibc-2.3.2-27.9, the additional code occupies 18 more bytes of .text, and 24 fewer bytes in the .so. On a nano-scopic scale, the typical execution cost is 0 to 3 CPU cycles per affected routine; the estimated median total impact is less than 1 second per machine per day. In the case of *printf(), glibc-audit is faster than glibc because the cleaned-up source helps gcc-3.2 avoid generating atrocious code when initializing printf_spec.info for parse_one_spec() in stdio-common/printf-parse.h.
Glibc-audit was constructed by running a memory access checker on the internal testcases of glibc, then analyzing the reported errors and modifying the source. The process revealed 10 memory access bugs in glibc-2.3.2-11.9. Seven were fixed in glibc-2.3.2-27.9, two more have been fixed in CVS, and one is a design flaw that probably will not be fixed.
Predecessor patches to glibc-audit-1 were submitted to the glibc project, but those patches were ignored [user "guest", password "guest"], declined, or rejected. There is enough improvement in usability and reliability to publish glibc-audit-1 separately.
The unmodified glibc-2.3.2-27.9.src.rpm is available from RedHat mirrors. rpmbuild -ba --target i686 took about 4 hours and 2.5GB of disk space on a machine with 1.1GHz CPU, 384MB RAM, UDMA100 disk.
Enhancements:
- The patches were updated to glibc-2.4-4.
- A glibc bug that interfered with gdb stop-on-solib-events was fixed.
- On x86, x86-64, and PowerPC, the __NR_open system call was improved to avoid leaking information from the user to the kernel.
Download (4.2MB)
Added: 2006-03-29 License: LGPL (GNU Lesser General Public License) Price:
1315 downloads
Ecora Auditor Lite for Unix 4.0.6157.17003
Free on-demand, detailed configuration reports for the entire IT infrastructure more>> Ecora Auditor Lite is an agentless Windows application that installs on a Windows workstation and collects hundreds of thousands of configuration settings to generate on-demand, detailed configuration reports. With a click of a button, users can document Microsoft Windows and Exchange servers, SQL Server databases, Active Directory, and workstations; HP-UX, AIX, Solaris, RedHat Linux, and Novell NetWare servers; Oracle databases, Citrix and IIS applications; Lotus Domino servers; and Cisco routers.
Systems change constantly, and each change ?whether planned or unplanned can trigger downtime or a security breach. Current IT documentation, especially in todays compliance-driven IT environments, is essential. Documentor eliminates the time-consuming and error prone manual process of data collection and ensures accurate, timely documentation of the IT infrastructure.
Ecora Auditor Lite provides consistent, standardized configuration documentation that aids in:
IT Audits Provide up-to-date, accurate documentation of the infrastructure in a format that is easy to understand.
Security Discover suspicious or sub-optimal configuration settings and close security holes.
Disaster Recovery ?Rapidly configure systems back to their pre-disaster state and minimize downtime.
?Troubleshooting ?Maximize productivity and reduce time to resolution with access to current and historical configuration data.
?Consolidations & Migrations Maintain a current snapshot of the IT infrastructure for quick assessments and server configuration comparisons.
Documentation is often generated in an hour or less and is available in html and Microsoft Word formats. An ideal configuration management solution for consultants, system administrators, security professionals, IT auditors, and DBAs.<<less
Download (54.00MB)
Added: 2009-04-29 License: Freeware Price: Free
242 downloads
Geography::Countries 1.4
Geography::Countries is a Perl module with 2-letter, 3-letter, and numerical codes for countries. more>>
Geography::Countries is a Perl module with 2-letter, 3-letter, and numerical codes for countries.
SYNOPSIS
use Geography::Countries;
$country = country DE; # Germany
@list = country 666; # (PM, SPM, 666,
# Saint Pierre and Miquelon, 1)
This module maps country names, and their 2-letter, 3-letter and numerical codes, as defined by the ISO-3166 maintenance agency [1], and defined by the UNSD.
The country subroutine.
This subroutine is exported by default. It takes a 2-letter, 3-letter or numerical code, or a country name as argument. In scalar context, it will return the country name, in list context, it will return a list consisting of the 2-letter code, the 3-letter code, the numerical code, the country name, and a flag, which is explained below. Note that not all countries have all 3 codes; if a code is unknown, the undefined value is returned.
There are 3 categories of countries. The largest category are the current countries. Then there is a small set of countries that no longer exist. The final set consists of areas consisting of multiple countries, like Africa. No 2-letter or 3-letter codes are available for the second two sets. (ISO 3166-3 [3] defines 4 letter codes for the set of countries that no longer exist, but the author of this module was unable to get her hands on that standard.) By default, country only returns countries from the first set, but this can be changed by giving country an optional second argument.
The module optionally exports the constants CNT_F_REGULAR, CNT_F_OLD, CNT_F_REGION and CNT_F_ANY. These constants can also be important all at once by using the tag :FLAGS.
CNT_F_ANY is just the binary or of the three other flags. The second argument of country should be the binary or of a subset of the flags CNT_F_REGULAR, CNT_F_OLD, and CNT_F_REGION - if no, or a false, second argument is given, CNT_F_REGULAR is assumed. If CNT_F_REGULAR is set, regular (current) countries will be returned; if CNT_F_OLD is set, old, no longer existing, countries will be returned, while CNT_F_REGION is used in case a region (not necessarely) a country might be returned. If country is used in list context, the fifth returned element is one of CNT_F_REGULAR, CNT_F_OLD and CNT_F_REGION, indicating whether the result is a regular country, an old country, or a region.
In list context, country returns a 5 element list. To avoid having to remember which element is in which index, the constants CNT_I_CODE2, CNT_I_CODE3, CNT_I_NUMCODE, CNT_I_COUNTRY and CNT_I_FLAG can be imported. Those constants contain the indices of the 2-letter code, the 3-letter code, the numerical code, the country, and the flag explained above, respectively. All index constants can be imported by using the :INDICES tag.
The code2, code3, numcode and countries routines.
All known 2-letter codes, 3-letter codes, numerical codes and country names can be returned by the routines code2, code3, numcode and countries. None of these methods is exported by default; all need to be imported if one wants to use them. The tag :LISTS imports them all. In scalar context, the number of known codes or countries is returned.
<<lessSYNOPSIS
use Geography::Countries;
$country = country DE; # Germany
@list = country 666; # (PM, SPM, 666,
# Saint Pierre and Miquelon, 1)
This module maps country names, and their 2-letter, 3-letter and numerical codes, as defined by the ISO-3166 maintenance agency [1], and defined by the UNSD.
The country subroutine.
This subroutine is exported by default. It takes a 2-letter, 3-letter or numerical code, or a country name as argument. In scalar context, it will return the country name, in list context, it will return a list consisting of the 2-letter code, the 3-letter code, the numerical code, the country name, and a flag, which is explained below. Note that not all countries have all 3 codes; if a code is unknown, the undefined value is returned.
There are 3 categories of countries. The largest category are the current countries. Then there is a small set of countries that no longer exist. The final set consists of areas consisting of multiple countries, like Africa. No 2-letter or 3-letter codes are available for the second two sets. (ISO 3166-3 [3] defines 4 letter codes for the set of countries that no longer exist, but the author of this module was unable to get her hands on that standard.) By default, country only returns countries from the first set, but this can be changed by giving country an optional second argument.
The module optionally exports the constants CNT_F_REGULAR, CNT_F_OLD, CNT_F_REGION and CNT_F_ANY. These constants can also be important all at once by using the tag :FLAGS.
CNT_F_ANY is just the binary or of the three other flags. The second argument of country should be the binary or of a subset of the flags CNT_F_REGULAR, CNT_F_OLD, and CNT_F_REGION - if no, or a false, second argument is given, CNT_F_REGULAR is assumed. If CNT_F_REGULAR is set, regular (current) countries will be returned; if CNT_F_OLD is set, old, no longer existing, countries will be returned, while CNT_F_REGION is used in case a region (not necessarely) a country might be returned. If country is used in list context, the fifth returned element is one of CNT_F_REGULAR, CNT_F_OLD and CNT_F_REGION, indicating whether the result is a regular country, an old country, or a region.
In list context, country returns a 5 element list. To avoid having to remember which element is in which index, the constants CNT_I_CODE2, CNT_I_CODE3, CNT_I_NUMCODE, CNT_I_COUNTRY and CNT_I_FLAG can be imported. Those constants contain the indices of the 2-letter code, the 3-letter code, the numerical code, the country, and the flag explained above, respectively. All index constants can be imported by using the :INDICES tag.
The code2, code3, numcode and countries routines.
All known 2-letter codes, 3-letter codes, numerical codes and country names can be returned by the routines code2, code3, numcode and countries. None of these methods is exported by default; all need to be imported if one wants to use them. The tag :LISTS imports them all. In scalar context, the number of known codes or countries is returned.
Download (0.009MB)
Added: 2007-02-21 License: Perl Artistic License Price:
975 downloads
People Search and Public Record Toolbar 1.0
People Search and Public Record Toolbar is a Firefox extension is a handy menu tool for investigators, reporters, etc. more>>
People Search and Public Record Toolbar is a Firefox extension is a handy menu tool for investigators, reporters, legal professionals, real estate agents, online researchers and anyone interested in doing their own basic people searches and public record lookups as well as background research.
Find past friends, relatives, classmates, coworkers, military buddies or do background research on people and businesses.
This useful extension offers you the following free people and public record searches at the click of a mouse:
- Free People Searches: White Pages, 411, DA Plus, Zaba Search, Zoom Info, Google, International Phone Directories, Google Image Search and Riya photo search.
- Reverse Phone Numbers: White Pages, DA Plus, Google, Land Line or Cell Phone? Search, Reverse Payphone and Do Not Call List.
- Reverse Addresses: White Pages, DA Plus, Google, Mail Drop Search and Whois Lookup.
- Area Code, Zip Code and International Calling Code Searches.
- Yellow Pages & Local Searches: White Pages Yellow, DA Plus Yellow, Google Local and Yahoo Local.
- Public Record Searches: Skipease Public Record Directory, Search Systems Public Record Directory, Social Security Number Searches, NETRonline Property Records, Zillow Property Values, Trulia Real Estate Search, Yahoo Real Estate and NACO US County Information.
- Criminal Searches: Inmate Locators and National Sex Offender Registry.
- Maps & Satellites: Google Maps, Map Quest, Yahoo Maps, Google Earth, Terra Server.
- Government Phone Directories: US Blue Pages, Canada GEDS.
- US Government Search Engines: FirstGov and Google Government Search.
- News & Blog Searches: Google News, Yahoo News, Technorati, IceRocket and Google Blog Search.
- Business & Finance: Alibaba, Business.com, Thomas Registry, Google Finance, Yahoo Finance.
- Jobs & Classifieds: Indeed Meta Job Search, Simply Hired Meta Job Search, Dice Jobs, Hot Jobs, Monster Jobs, Craigslist Classifieds.
- Social Network Sites: Facebook, Friendster, MySpace, Tribe, Xanga.
This extension contains NO malicious scripts or code; no malware, spyware or adware of any kind. This extension does NOT record personal or surfing information from users. If you dont believe me, then check the source code on the extension after you download it. There is absolutely no Spyware or malware of any kind and the same person continues to attack this extension and defame it using numerous different logon ids.
<<lessFind past friends, relatives, classmates, coworkers, military buddies or do background research on people and businesses.
This useful extension offers you the following free people and public record searches at the click of a mouse:
- Free People Searches: White Pages, 411, DA Plus, Zaba Search, Zoom Info, Google, International Phone Directories, Google Image Search and Riya photo search.
- Reverse Phone Numbers: White Pages, DA Plus, Google, Land Line or Cell Phone? Search, Reverse Payphone and Do Not Call List.
- Reverse Addresses: White Pages, DA Plus, Google, Mail Drop Search and Whois Lookup.
- Area Code, Zip Code and International Calling Code Searches.
- Yellow Pages & Local Searches: White Pages Yellow, DA Plus Yellow, Google Local and Yahoo Local.
- Public Record Searches: Skipease Public Record Directory, Search Systems Public Record Directory, Social Security Number Searches, NETRonline Property Records, Zillow Property Values, Trulia Real Estate Search, Yahoo Real Estate and NACO US County Information.
- Criminal Searches: Inmate Locators and National Sex Offender Registry.
- Maps & Satellites: Google Maps, Map Quest, Yahoo Maps, Google Earth, Terra Server.
- Government Phone Directories: US Blue Pages, Canada GEDS.
- US Government Search Engines: FirstGov and Google Government Search.
- News & Blog Searches: Google News, Yahoo News, Technorati, IceRocket and Google Blog Search.
- Business & Finance: Alibaba, Business.com, Thomas Registry, Google Finance, Yahoo Finance.
- Jobs & Classifieds: Indeed Meta Job Search, Simply Hired Meta Job Search, Dice Jobs, Hot Jobs, Monster Jobs, Craigslist Classifieds.
- Social Network Sites: Facebook, Friendster, MySpace, Tribe, Xanga.
This extension contains NO malicious scripts or code; no malware, spyware or adware of any kind. This extension does NOT record personal or surfing information from users. If you dont believe me, then check the source code on the extension after you download it. There is absolutely no Spyware or malware of any kind and the same person continues to attack this extension and defame it using numerous different logon ids.
Download (0.033MB)
Added: 2007-06-27 License: MPL (Mozilla Public License) Price:
986 downloads
Locale::RecodeData::ISO_8859_14 1.16
Locale::RecodeData::ISO_8859_14 is a Perl module with conversion routines for ISO-8859-14. more>>
Locale::RecodeData::ISO_8859_14 is a Perl module with conversion routines for ISO-8859-14.
CHARACTER TABLE
The following table is sorted in the same order as the original charmap. All character codes are in hexadecimal. Please read ISO-10646 as ISO-10646-UCS4.
Local | ISO-10646 | Description
-------+-----------+-------------------------------------------------
00 | 00000000 | NULL
01 | 00000001 | START OF HEADING
02 | 00000002 | START OF TEXT
03 | 00000003 | END OF TEXT
04 | 00000004 | END OF TRANSMISSION
05 | 00000005 | ENQUIRY
06 | 00000006 | ACKNOWLEDGE
07 | 00000007 | BELL
08 | 00000008 | BACKSPACE
09 | 00000009 | HORIZONTAL TABULATION
0A | 0000000A | LINE FEED
0B | 0000000B | VERTICAL TABULATION
0C | 0000000C | FORM FEED
0D | 0000000D | CARRIAGE RETURN
0E | 0000000E | SHIFT OUT
0F | 0000000F | SHIFT IN
10 | 00000010 | DATA LINK ESCAPE
11 | 00000011 | DEVICE CONTROL ONE
12 | 00000012 | DEVICE CONTROL TWO
13 | 00000013 | DEVICE CONTROL THREE
14 | 00000014 | DEVICE CONTROL FOUR
15 | 00000015 | NEGATIVE ACKNOWLEDGE
16 | 00000016 | SYNCHRONOUS IDLE
17 | 00000017 | END OF TRANSMISSION BLOCK
18 | 00000018 | CANCEL
19 | 00000019 | END OF MEDIUM
1A | 0000001A | SUBSTITUTE
1B | 0000001B | ESCAPE
1C | 0000001C | FILE SEPARATOR
1D | 0000001D | GROUP SEPARATOR
1E | 0000001E | RECORD SEPARATOR
1F | 0000001F | UNIT SEPARATOR
20 | 00000020 | SPACE
21 | 00000021 | EXCLAMATION MARK
22 | 00000022 | QUOTATION MARK
23 | 00000023 | NUMBER SIGN
24 | 00000024 | DOLLAR SIGN
25 | 00000025 | PERCENT SIGN
26 | 00000026 | AMPERSAND
27 | 00000027 | APOSTROPHE
28 | 00000028 | LEFT PARENTHESIS
29 | 00000029 | RIGHT PARENTHESIS
2A | 0000002A | ASTERISK
2B | 0000002B | PLUS SIGN
2C | 0000002C | COMMA
2D | 0000002D | HYPHEN-MINUS
2E | 0000002E | FULL STOP
2F | 0000002F | SOLIDUS
30 | 00000030 | DIGIT ZERO
31 | 00000031 | DIGIT ONE
32 | 00000032 | DIGIT TWO
33 | 00000033 | DIGIT THREE
34 | 00000034 | DIGIT FOUR
35 | 00000035 | DIGIT FIVE
36 | 00000036 | DIGIT SIX
37 | 00000037 | DIGIT SEVEN
38 | 00000038 | DIGIT EIGHT
39 | 00000039 | DIGIT NINE
3A | 0000003A | COLON
3B | 0000003B | SEMICOLON
3C | 0000003C | LESS-THAN SIGN
3D | 0000003D | EQUALS SIGN
3E | 0000003E | GREATER-THAN SIGN
3F | 0000003F | QUESTION MARK
40 | 00000040 | COMMERCIAL AT
41 | 00000041 | LATIN CAPITAL LETTER A
42 | 00000042 | LATIN CAPITAL LETTER B
43 | 00000043 | LATIN CAPITAL LETTER C
44 | 00000044 | LATIN CAPITAL LETTER D
45 | 00000045 | LATIN CAPITAL LETTER E
46 | 00000046 | LATIN CAPITAL LETTER F
47 | 00000047 | LATIN CAPITAL LETTER G
48 | 00000048 | LATIN CAPITAL LETTER H
49 | 00000049 | LATIN CAPITAL LETTER I
4A | 0000004A | LATIN CAPITAL LETTER J
4B | 0000004B | LATIN CAPITAL LETTER K
4C | 0000004C | LATIN CAPITAL LETTER L
4D | 0000004D | LATIN CAPITAL LETTER M
4E | 0000004E | LATIN CAPITAL LETTER N
4F | 0000004F | LATIN CAPITAL LETTER O
50 | 00000050 | LATIN CAPITAL LETTER P
51 | 00000051 | LATIN CAPITAL LETTER Q
52 | 00000052 | LATIN CAPITAL LETTER R
53 | 00000053 | LATIN CAPITAL LETTER S
54 | 00000054 | LATIN CAPITAL LETTER T
55 | 00000055 | LATIN CAPITAL LETTER U
56 | 00000056 | LATIN CAPITAL LETTER V
57 | 00000057 | LATIN CAPITAL LETTER W
58 | 00000058 | LATIN CAPITAL LETTER X
59 | 00000059 | LATIN CAPITAL LETTER Y
5A | 0000005A | LATIN CAPITAL LETTER Z
5B | 0000005B | LEFT SQUARE BRACKET
5C | 0000005C | REVERSE SOLIDUS
5D | 0000005D | RIGHT SQUARE BRACKET
5E | 0000005E | CIRCUMFLEX ACCENT
5F | 0000005F | LOW LINE
60 | 00000060 | GRAVE ACCENT
61 | 00000061 | LATIN SMALL LETTER A
62 | 00000062 | LATIN SMALL LETTER B
63 | 00000063 | LATIN SMALL LETTER C
64 | 00000064 | LATIN SMALL LETTER D
65 | 00000065 | LATIN SMALL LETTER E
66 | 00000066 | LATIN SMALL LETTER F
67 | 00000067 | LATIN SMALL LETTER G
68 | 00000068 | LATIN SMALL LETTER H
69 | 00000069 | LATIN SMALL LETTER I
6A | 0000006A | LATIN SMALL LETTER J
6B | 0000006B | LATIN SMALL LETTER K
6C | 0000006C | LATIN SMALL LETTER L
6D | 0000006D | LATIN SMALL LETTER M
6E | 0000006E | LATIN SMALL LETTER N
6F | 0000006F | LATIN SMALL LETTER O
70 | 00000070 | LATIN SMALL LETTER P
71 | 00000071 | LATIN SMALL LETTER Q
72 | 00000072 | LATIN SMALL LETTER R
73 | 00000073 | LATIN SMALL LETTER S
74 | 00000074 | LATIN SMALL LETTER T
75 | 00000075 | LATIN SMALL LETTER U
76 | 00000076 | LATIN SMALL LETTER V
77 | 00000077 | LATIN SMALL LETTER W
78 | 00000078 | LATIN SMALL LETTER X
79 | 00000079 | LATIN SMALL LETTER Y
7A | 0000007A | LATIN SMALL LETTER Z
7B | 0000007B | LEFT CURLY BRACKET
7C | 0000007C | VERTICAL LINE
7D | 0000007D | RIGHT CURLY BRACKET
7E | 0000007E | TILDE
7F | 0000007F | DELETE
80 | 00000080 | PADDING CHARACTER (PAD)
81 | 00000081 | HIGH OCTET PRESET (HOP)
82 | 00000082 | BREAK PERMITTED HERE (BPH)
83 | 00000083 | NO BREAK HERE (NBH)
84 | 00000084 | INDEX (IND)
85 | 00000085 | NEXT LINE (NEL)
86 | 00000086 | START OF SELECTED AREA (SSA)
87 | 00000087 | END OF SELECTED AREA (ESA)
88 | 00000088 | CHARACTER TABULATION SET (HTS)
89 | 00000089 | CHARACTER TABULATION WITH JUSTIFICATION (HTJ)
8A | 0000008A | LINE TABULATION SET (VTS)
8B | 0000008B | PARTIAL LINE FORWARD (PLD)
8C | 0000008C | PARTIAL LINE BACKWARD (PLU)
8D | 0000008D | REVERSE LINE FEED (RI)
8E | 0000008E | SINGLE-SHIFT TWO (SS2)
8F | 0000008F | SINGLE-SHIFT THREE (SS3)
90 | 00000090 | DEVICE CONTROL STRING (DCS)
91 | 00000091 | PRIVATE USE ONE (PU1)
92 | 00000092 | PRIVATE USE TWO (PU2)
93 | 00000093 | SET TRANSMIT STATE (STS)
94 | 00000094 | CANCEL CHARACTER (CCH)
95 | 00000095 | MESSAGE WAITING (MW)
96 | 00000096 | START OF GUARDED AREA (SPA)
97 | 00000097 | END OF GUARDED AREA (EPA)
98 | 00000098 | START OF STRING (SOS)
99 | 00000099 | SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI)
9A | 0000009A | SINGLE CHARACTER INTRODUCER (SCI)
9B | 0000009B | CONTROL SEQUENCE INTRODUCER (CSI)
9C | 0000009C | STRING TERMINATOR (ST)
9D | 0000009D | OPERATING SYSTEM COMMAND (OSC)
9E | 0000009E | PRIVACY MESSAGE (PM)
9F | 0000009F | APPLICATION PROGRAM COMMAND (APC)
A0 | 000000A0 | NO-BREAK SPACE
A1 | 00001E02 | LATIN CAPITAL LETTER B WITH DOT ABOVE
A2 | 00001E03 | LATIN SMALL LETTER B WITH DOT ABOVE
A3 | 000000A3 | POUND SIGN
A4 | 0000010A | LATIN CAPITAL LETTER C WITH DOT ABOVE
A5 | 0000010B | LATIN SMALL LETTER C WITH DOT ABOVE
A6 | 00001E0A | LATIN CAPITAL LETTER D WITH DOT ABOVE
A7 | 000000A7 | SECTION SIGN
A8 | 00001E80 | LATIN CAPITAL LETTER W WITH GRAVE
A9 | 000000A9 | COPYRIGHT SIGN
AA | 00001E82 | LATIN CAPITAL LETTER W WITH ACUTE
AB | 00001E0B | LATIN SMALL LETTER D WITH DOT ABOVE
AC | 00001EF2 | LATIN CAPITAL LETTER Y WITH GRAVE
AD | 000000AD | SOFT HYPHEN
AE | 000000AE | REGISTERED SIGN
AF | 00000178 | LATIN CAPITAL LETTER Y WITH DIAERESIS
B0 | 00001E1E | LATIN CAPITAL LETTER F WITH DOT ABOVE
B1 | 00001E1F | LATIN SMALL LETTER F WITH DOT ABOVE
B2 | 00000120 | LATIN CAPITAL LETTER G WITH DOT ABOVE
B3 | 00000121 | LATIN SMALL LETTER G WITH DOT ABOVE
B4 | 00001E40 | LATIN CAPITAL LETTER M WITH DOT ABOVE
B5 | 00001E41 | LATIN SMALL LETTER M WITH DOT ABOVE
B6 | 000000B6 | PILCROW SIGN
B7 | 00001E56 | LATIN CAPITAL LETTER P WITH DOT ABOVE
B8 | 00001E81 | LATIN SMALL LETTER W WITH GRAVE
B9 | 00001E57 | LATIN SMALL LETTER P WITH DOT ABOVE
BA | 00001E83 | LATIN SMALL LETTER W WITH ACUTE
BB | 00001E60 | LATIN CAPITAL LETTER S WITH DOT ABOVE
BC | 00001EF3 | LATIN SMALL LETTER Y WITH GRAVE
BD | 00001E84 | LATIN CAPITAL LETTER W WITH DIAERESIS
BE | 00001E85 | LATIN SMALL LETTER W WITH DIAERESIS
BF | 00001E61 | LATIN SMALL LETTER S WITH DOT ABOVE
C0 | 000000C0 | LATIN CAPITAL LETTER A WITH GRAVE
C1 | 000000C1 | LATIN CAPITAL LETTER A WITH ACUTE
C2 | 000000C2 | LATIN CAPITAL LETTER A WITH CIRCUMFLEX
C3 | 000000C3 | LATIN CAPITAL LETTER A WITH TILDE
C4 | 000000C4 | LATIN CAPITAL LETTER A WITH DIAERESIS
C5 | 000000C5 | LATIN CAPITAL LETTER A WITH RING ABOVE
C6 | 000000C6 | LATIN CAPITAL LETTER AE
C7 | 000000C7 | LATIN CAPITAL LETTER C WITH CEDILLA
C8 | 000000C8 | LATIN CAPITAL LETTER E WITH GRAVE
C9 | 000000C9 | LATIN CAPITAL LETTER E WITH ACUTE
CA | 000000CA | LATIN CAPITAL LETTER E WITH CIRCUMFLEX
CB | 000000CB | LATIN CAPITAL LETTER E WITH DIAERESIS
CC | 000000CC | LATIN CAPITAL LETTER I WITH GRAVE
CD | 000000CD | LATIN CAPITAL LETTER I WITH ACUTE
CE | 000000CE | LATIN CAPITAL LETTER I WITH CIRCUMFLEX
CF | 000000CF | LATIN CAPITAL LETTER I WITH DIAERESIS
D0 | 00000174 | LATIN CAPITAL LETTER W WITH CIRCUMFLEX
D1 | 000000D1 | LATIN CAPITAL LETTER N WITH TILDE
D2 | 000000D2 | LATIN CAPITAL LETTER O WITH GRAVE
D3 | 000000D3 | LATIN CAPITAL LETTER O WITH ACUTE
D4 | 000000D4 | LATIN CAPITAL LETTER O WITH CIRCUMFLEX
D5 | 000000D5 | LATIN CAPITAL LETTER O WITH TILDE
D6 | 000000D6 | LATIN CAPITAL LETTER O WITH DIAERESIS
D7 | 00001E6A | LATIN CAPITAL LETTER T WITH DOT ABOVE
D8 | 000000D8 | LATIN CAPITAL LETTER O WITH STROKE
D9 | 000000D9 | LATIN CAPITAL LETTER U WITH GRAVE
DA | 000000DA | LATIN CAPITAL LETTER U WITH ACUTE
DB | 000000DB | LATIN CAPITAL LETTER U WITH CIRCUMFLEX
DC | 000000DC | LATIN CAPITAL LETTER U WITH DIAERESIS
DD | 000000DD | LATIN CAPITAL LETTER Y WITH ACUTE
DE | 00000176 | LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
DF | 000000DF | LATIN SMALL LETTER SHARP S
E0 | 000000E0 | LATIN SMALL LETTER A WITH GRAVE
E1 | 000000E1 | LATIN SMALL LETTER A WITH ACUTE
E2 | 000000E2 | LATIN SMALL LETTER A WITH CIRCUMFLEX
E3 | 000000E3 | LATIN SMALL LETTER A WITH TILDE
E4 | 000000E4 | LATIN SMALL LETTER A WITH DIAERESIS
E5 | 000000E5 | LATIN SMALL LETTER A WITH RING ABOVE
E6 | 000000E6 | LATIN SMALL LETTER AE
E7 | 000000E7 | LATIN SMALL LETTER C WITH CEDILLA
E8 | 000000E8 | LATIN SMALL LETTER E WITH GRAVE
E9 | 000000E9 | LATIN SMALL LETTER E WITH ACUTE
EA | 000000EA | LATIN SMALL LETTER E WITH CIRCUMFLEX
EB | 000000EB | LATIN SMALL LETTER E WITH DIAERESIS
EC | 000000EC | LATIN SMALL LETTER I WITH GRAVE
ED | 000000ED | LATIN SMALL LETTER I WITH ACUTE
EE | 000000EE | LATIN SMALL LETTER I WITH CIRCUMFLEX
EF | 000000EF | LATIN SMALL LETTER I WITH DIAERESIS
F0 | 00000175 | LATIN SMALL LETTER W WITH CIRCUMFLEX
F1 | 000000F1 | LATIN SMALL LETTER N WITH TILDE
F2 | 000000F2 | LATIN SMALL LETTER O WITH GRAVE
F3 | 000000F3 | LATIN SMALL LETTER O WITH ACUTE
F4 | 000000F4 | LATIN SMALL LETTER O WITH CIRCUMFLEX
F5 | 000000F5 | LATIN SMALL LETTER O WITH TILDE
F6 | 000000F6 | LATIN SMALL LETTER O WITH DIAERESIS
F7 | 00001E6B | LATIN SMALL LETTER T WITH DOT ABOVE
F8 | 000000F8 | LATIN SMALL LETTER O WITH STROKE
F9 | 000000F9 | LATIN SMALL LETTER U WITH GRAVE
FA | 000000FA | LATIN SMALL LETTER U WITH ACUTE
FB | 000000FB | LATIN SMALL LETTER U WITH CIRCUMFLEX
FC | 000000FC | LATIN SMALL LETTER U WITH DIAERESIS
FD | 000000FD | LATIN SMALL LETTER Y WITH ACUTE
FE | 00000177 | LATIN SMALL LETTER Y WITH CIRCUMFLEX
FF | 000000FF | LATIN SMALL LETTER Y WITH DIAERESIS
<<lessCHARACTER TABLE
The following table is sorted in the same order as the original charmap. All character codes are in hexadecimal. Please read ISO-10646 as ISO-10646-UCS4.
Local | ISO-10646 | Description
-------+-----------+-------------------------------------------------
00 | 00000000 | NULL
01 | 00000001 | START OF HEADING
02 | 00000002 | START OF TEXT
03 | 00000003 | END OF TEXT
04 | 00000004 | END OF TRANSMISSION
05 | 00000005 | ENQUIRY
06 | 00000006 | ACKNOWLEDGE
07 | 00000007 | BELL
08 | 00000008 | BACKSPACE
09 | 00000009 | HORIZONTAL TABULATION
0A | 0000000A | LINE FEED
0B | 0000000B | VERTICAL TABULATION
0C | 0000000C | FORM FEED
0D | 0000000D | CARRIAGE RETURN
0E | 0000000E | SHIFT OUT
0F | 0000000F | SHIFT IN
10 | 00000010 | DATA LINK ESCAPE
11 | 00000011 | DEVICE CONTROL ONE
12 | 00000012 | DEVICE CONTROL TWO
13 | 00000013 | DEVICE CONTROL THREE
14 | 00000014 | DEVICE CONTROL FOUR
15 | 00000015 | NEGATIVE ACKNOWLEDGE
16 | 00000016 | SYNCHRONOUS IDLE
17 | 00000017 | END OF TRANSMISSION BLOCK
18 | 00000018 | CANCEL
19 | 00000019 | END OF MEDIUM
1A | 0000001A | SUBSTITUTE
1B | 0000001B | ESCAPE
1C | 0000001C | FILE SEPARATOR
1D | 0000001D | GROUP SEPARATOR
1E | 0000001E | RECORD SEPARATOR
1F | 0000001F | UNIT SEPARATOR
20 | 00000020 | SPACE
21 | 00000021 | EXCLAMATION MARK
22 | 00000022 | QUOTATION MARK
23 | 00000023 | NUMBER SIGN
24 | 00000024 | DOLLAR SIGN
25 | 00000025 | PERCENT SIGN
26 | 00000026 | AMPERSAND
27 | 00000027 | APOSTROPHE
28 | 00000028 | LEFT PARENTHESIS
29 | 00000029 | RIGHT PARENTHESIS
2A | 0000002A | ASTERISK
2B | 0000002B | PLUS SIGN
2C | 0000002C | COMMA
2D | 0000002D | HYPHEN-MINUS
2E | 0000002E | FULL STOP
2F | 0000002F | SOLIDUS
30 | 00000030 | DIGIT ZERO
31 | 00000031 | DIGIT ONE
32 | 00000032 | DIGIT TWO
33 | 00000033 | DIGIT THREE
34 | 00000034 | DIGIT FOUR
35 | 00000035 | DIGIT FIVE
36 | 00000036 | DIGIT SIX
37 | 00000037 | DIGIT SEVEN
38 | 00000038 | DIGIT EIGHT
39 | 00000039 | DIGIT NINE
3A | 0000003A | COLON
3B | 0000003B | SEMICOLON
3C | 0000003C | LESS-THAN SIGN
3D | 0000003D | EQUALS SIGN
3E | 0000003E | GREATER-THAN SIGN
3F | 0000003F | QUESTION MARK
40 | 00000040 | COMMERCIAL AT
41 | 00000041 | LATIN CAPITAL LETTER A
42 | 00000042 | LATIN CAPITAL LETTER B
43 | 00000043 | LATIN CAPITAL LETTER C
44 | 00000044 | LATIN CAPITAL LETTER D
45 | 00000045 | LATIN CAPITAL LETTER E
46 | 00000046 | LATIN CAPITAL LETTER F
47 | 00000047 | LATIN CAPITAL LETTER G
48 | 00000048 | LATIN CAPITAL LETTER H
49 | 00000049 | LATIN CAPITAL LETTER I
4A | 0000004A | LATIN CAPITAL LETTER J
4B | 0000004B | LATIN CAPITAL LETTER K
4C | 0000004C | LATIN CAPITAL LETTER L
4D | 0000004D | LATIN CAPITAL LETTER M
4E | 0000004E | LATIN CAPITAL LETTER N
4F | 0000004F | LATIN CAPITAL LETTER O
50 | 00000050 | LATIN CAPITAL LETTER P
51 | 00000051 | LATIN CAPITAL LETTER Q
52 | 00000052 | LATIN CAPITAL LETTER R
53 | 00000053 | LATIN CAPITAL LETTER S
54 | 00000054 | LATIN CAPITAL LETTER T
55 | 00000055 | LATIN CAPITAL LETTER U
56 | 00000056 | LATIN CAPITAL LETTER V
57 | 00000057 | LATIN CAPITAL LETTER W
58 | 00000058 | LATIN CAPITAL LETTER X
59 | 00000059 | LATIN CAPITAL LETTER Y
5A | 0000005A | LATIN CAPITAL LETTER Z
5B | 0000005B | LEFT SQUARE BRACKET
5C | 0000005C | REVERSE SOLIDUS
5D | 0000005D | RIGHT SQUARE BRACKET
5E | 0000005E | CIRCUMFLEX ACCENT
5F | 0000005F | LOW LINE
60 | 00000060 | GRAVE ACCENT
61 | 00000061 | LATIN SMALL LETTER A
62 | 00000062 | LATIN SMALL LETTER B
63 | 00000063 | LATIN SMALL LETTER C
64 | 00000064 | LATIN SMALL LETTER D
65 | 00000065 | LATIN SMALL LETTER E
66 | 00000066 | LATIN SMALL LETTER F
67 | 00000067 | LATIN SMALL LETTER G
68 | 00000068 | LATIN SMALL LETTER H
69 | 00000069 | LATIN SMALL LETTER I
6A | 0000006A | LATIN SMALL LETTER J
6B | 0000006B | LATIN SMALL LETTER K
6C | 0000006C | LATIN SMALL LETTER L
6D | 0000006D | LATIN SMALL LETTER M
6E | 0000006E | LATIN SMALL LETTER N
6F | 0000006F | LATIN SMALL LETTER O
70 | 00000070 | LATIN SMALL LETTER P
71 | 00000071 | LATIN SMALL LETTER Q
72 | 00000072 | LATIN SMALL LETTER R
73 | 00000073 | LATIN SMALL LETTER S
74 | 00000074 | LATIN SMALL LETTER T
75 | 00000075 | LATIN SMALL LETTER U
76 | 00000076 | LATIN SMALL LETTER V
77 | 00000077 | LATIN SMALL LETTER W
78 | 00000078 | LATIN SMALL LETTER X
79 | 00000079 | LATIN SMALL LETTER Y
7A | 0000007A | LATIN SMALL LETTER Z
7B | 0000007B | LEFT CURLY BRACKET
7C | 0000007C | VERTICAL LINE
7D | 0000007D | RIGHT CURLY BRACKET
7E | 0000007E | TILDE
7F | 0000007F | DELETE
80 | 00000080 | PADDING CHARACTER (PAD)
81 | 00000081 | HIGH OCTET PRESET (HOP)
82 | 00000082 | BREAK PERMITTED HERE (BPH)
83 | 00000083 | NO BREAK HERE (NBH)
84 | 00000084 | INDEX (IND)
85 | 00000085 | NEXT LINE (NEL)
86 | 00000086 | START OF SELECTED AREA (SSA)
87 | 00000087 | END OF SELECTED AREA (ESA)
88 | 00000088 | CHARACTER TABULATION SET (HTS)
89 | 00000089 | CHARACTER TABULATION WITH JUSTIFICATION (HTJ)
8A | 0000008A | LINE TABULATION SET (VTS)
8B | 0000008B | PARTIAL LINE FORWARD (PLD)
8C | 0000008C | PARTIAL LINE BACKWARD (PLU)
8D | 0000008D | REVERSE LINE FEED (RI)
8E | 0000008E | SINGLE-SHIFT TWO (SS2)
8F | 0000008F | SINGLE-SHIFT THREE (SS3)
90 | 00000090 | DEVICE CONTROL STRING (DCS)
91 | 00000091 | PRIVATE USE ONE (PU1)
92 | 00000092 | PRIVATE USE TWO (PU2)
93 | 00000093 | SET TRANSMIT STATE (STS)
94 | 00000094 | CANCEL CHARACTER (CCH)
95 | 00000095 | MESSAGE WAITING (MW)
96 | 00000096 | START OF GUARDED AREA (SPA)
97 | 00000097 | END OF GUARDED AREA (EPA)
98 | 00000098 | START OF STRING (SOS)
99 | 00000099 | SINGLE GRAPHIC CHARACTER INTRODUCER (SGCI)
9A | 0000009A | SINGLE CHARACTER INTRODUCER (SCI)
9B | 0000009B | CONTROL SEQUENCE INTRODUCER (CSI)
9C | 0000009C | STRING TERMINATOR (ST)
9D | 0000009D | OPERATING SYSTEM COMMAND (OSC)
9E | 0000009E | PRIVACY MESSAGE (PM)
9F | 0000009F | APPLICATION PROGRAM COMMAND (APC)
A0 | 000000A0 | NO-BREAK SPACE
A1 | 00001E02 | LATIN CAPITAL LETTER B WITH DOT ABOVE
A2 | 00001E03 | LATIN SMALL LETTER B WITH DOT ABOVE
A3 | 000000A3 | POUND SIGN
A4 | 0000010A | LATIN CAPITAL LETTER C WITH DOT ABOVE
A5 | 0000010B | LATIN SMALL LETTER C WITH DOT ABOVE
A6 | 00001E0A | LATIN CAPITAL LETTER D WITH DOT ABOVE
A7 | 000000A7 | SECTION SIGN
A8 | 00001E80 | LATIN CAPITAL LETTER W WITH GRAVE
A9 | 000000A9 | COPYRIGHT SIGN
AA | 00001E82 | LATIN CAPITAL LETTER W WITH ACUTE
AB | 00001E0B | LATIN SMALL LETTER D WITH DOT ABOVE
AC | 00001EF2 | LATIN CAPITAL LETTER Y WITH GRAVE
AD | 000000AD | SOFT HYPHEN
AE | 000000AE | REGISTERED SIGN
AF | 00000178 | LATIN CAPITAL LETTER Y WITH DIAERESIS
B0 | 00001E1E | LATIN CAPITAL LETTER F WITH DOT ABOVE
B1 | 00001E1F | LATIN SMALL LETTER F WITH DOT ABOVE
B2 | 00000120 | LATIN CAPITAL LETTER G WITH DOT ABOVE
B3 | 00000121 | LATIN SMALL LETTER G WITH DOT ABOVE
B4 | 00001E40 | LATIN CAPITAL LETTER M WITH DOT ABOVE
B5 | 00001E41 | LATIN SMALL LETTER M WITH DOT ABOVE
B6 | 000000B6 | PILCROW SIGN
B7 | 00001E56 | LATIN CAPITAL LETTER P WITH DOT ABOVE
B8 | 00001E81 | LATIN SMALL LETTER W WITH GRAVE
B9 | 00001E57 | LATIN SMALL LETTER P WITH DOT ABOVE
BA | 00001E83 | LATIN SMALL LETTER W WITH ACUTE
BB | 00001E60 | LATIN CAPITAL LETTER S WITH DOT ABOVE
BC | 00001EF3 | LATIN SMALL LETTER Y WITH GRAVE
BD | 00001E84 | LATIN CAPITAL LETTER W WITH DIAERESIS
BE | 00001E85 | LATIN SMALL LETTER W WITH DIAERESIS
BF | 00001E61 | LATIN SMALL LETTER S WITH DOT ABOVE
C0 | 000000C0 | LATIN CAPITAL LETTER A WITH GRAVE
C1 | 000000C1 | LATIN CAPITAL LETTER A WITH ACUTE
C2 | 000000C2 | LATIN CAPITAL LETTER A WITH CIRCUMFLEX
C3 | 000000C3 | LATIN CAPITAL LETTER A WITH TILDE
C4 | 000000C4 | LATIN CAPITAL LETTER A WITH DIAERESIS
C5 | 000000C5 | LATIN CAPITAL LETTER A WITH RING ABOVE
C6 | 000000C6 | LATIN CAPITAL LETTER AE
C7 | 000000C7 | LATIN CAPITAL LETTER C WITH CEDILLA
C8 | 000000C8 | LATIN CAPITAL LETTER E WITH GRAVE
C9 | 000000C9 | LATIN CAPITAL LETTER E WITH ACUTE
CA | 000000CA | LATIN CAPITAL LETTER E WITH CIRCUMFLEX
CB | 000000CB | LATIN CAPITAL LETTER E WITH DIAERESIS
CC | 000000CC | LATIN CAPITAL LETTER I WITH GRAVE
CD | 000000CD | LATIN CAPITAL LETTER I WITH ACUTE
CE | 000000CE | LATIN CAPITAL LETTER I WITH CIRCUMFLEX
CF | 000000CF | LATIN CAPITAL LETTER I WITH DIAERESIS
D0 | 00000174 | LATIN CAPITAL LETTER W WITH CIRCUMFLEX
D1 | 000000D1 | LATIN CAPITAL LETTER N WITH TILDE
D2 | 000000D2 | LATIN CAPITAL LETTER O WITH GRAVE
D3 | 000000D3 | LATIN CAPITAL LETTER O WITH ACUTE
D4 | 000000D4 | LATIN CAPITAL LETTER O WITH CIRCUMFLEX
D5 | 000000D5 | LATIN CAPITAL LETTER O WITH TILDE
D6 | 000000D6 | LATIN CAPITAL LETTER O WITH DIAERESIS
D7 | 00001E6A | LATIN CAPITAL LETTER T WITH DOT ABOVE
D8 | 000000D8 | LATIN CAPITAL LETTER O WITH STROKE
D9 | 000000D9 | LATIN CAPITAL LETTER U WITH GRAVE
DA | 000000DA | LATIN CAPITAL LETTER U WITH ACUTE
DB | 000000DB | LATIN CAPITAL LETTER U WITH CIRCUMFLEX
DC | 000000DC | LATIN CAPITAL LETTER U WITH DIAERESIS
DD | 000000DD | LATIN CAPITAL LETTER Y WITH ACUTE
DE | 00000176 | LATIN CAPITAL LETTER Y WITH CIRCUMFLEX
DF | 000000DF | LATIN SMALL LETTER SHARP S
E0 | 000000E0 | LATIN SMALL LETTER A WITH GRAVE
E1 | 000000E1 | LATIN SMALL LETTER A WITH ACUTE
E2 | 000000E2 | LATIN SMALL LETTER A WITH CIRCUMFLEX
E3 | 000000E3 | LATIN SMALL LETTER A WITH TILDE
E4 | 000000E4 | LATIN SMALL LETTER A WITH DIAERESIS
E5 | 000000E5 | LATIN SMALL LETTER A WITH RING ABOVE
E6 | 000000E6 | LATIN SMALL LETTER AE
E7 | 000000E7 | LATIN SMALL LETTER C WITH CEDILLA
E8 | 000000E8 | LATIN SMALL LETTER E WITH GRAVE
E9 | 000000E9 | LATIN SMALL LETTER E WITH ACUTE
EA | 000000EA | LATIN SMALL LETTER E WITH CIRCUMFLEX
EB | 000000EB | LATIN SMALL LETTER E WITH DIAERESIS
EC | 000000EC | LATIN SMALL LETTER I WITH GRAVE
ED | 000000ED | LATIN SMALL LETTER I WITH ACUTE
EE | 000000EE | LATIN SMALL LETTER I WITH CIRCUMFLEX
EF | 000000EF | LATIN SMALL LETTER I WITH DIAERESIS
F0 | 00000175 | LATIN SMALL LETTER W WITH CIRCUMFLEX
F1 | 000000F1 | LATIN SMALL LETTER N WITH TILDE
F2 | 000000F2 | LATIN SMALL LETTER O WITH GRAVE
F3 | 000000F3 | LATIN SMALL LETTER O WITH ACUTE
F4 | 000000F4 | LATIN SMALL LETTER O WITH CIRCUMFLEX
F5 | 000000F5 | LATIN SMALL LETTER O WITH TILDE
F6 | 000000F6 | LATIN SMALL LETTER O WITH DIAERESIS
F7 | 00001E6B | LATIN SMALL LETTER T WITH DOT ABOVE
F8 | 000000F8 | LATIN SMALL LETTER O WITH STROKE
F9 | 000000F9 | LATIN SMALL LETTER U WITH GRAVE
FA | 000000FA | LATIN SMALL LETTER U WITH ACUTE
FB | 000000FB | LATIN SMALL LETTER U WITH CIRCUMFLEX
FC | 000000FC | LATIN SMALL LETTER U WITH DIAERESIS
FD | 000000FD | LATIN SMALL LETTER Y WITH ACUTE
FE | 00000177 | LATIN SMALL LETTER Y WITH CIRCUMFLEX
FF | 000000FF | LATIN SMALL LETTER Y WITH DIAERESIS
Download (0.45MB)
Added: 2007-07-28 License: Perl Artistic License Price:
818 downloads
AXIGEN Mail Server Office Edition Free 4.0.1
AXIGEN FREE mail server - (E)SMTP, POP3, IMAP4, Webmail server and support more>>
AXIGEN Office Edition is a FREE, reliable and secure Linux and FreeBSD mail server intended for home users and small companies. AXIGEN Mail Server, offering integrated mail services and basic support, can successfully replace several open source applications.
This is a full-featured version, available free of charge, part of a time-limited promotional offer. This type of license offered is perpetual and you will get to keep it even if this promotion expires.
It is available for many Linux distributions (Gentoo, Redhat/Fedora Core, Slackware, Debian, Ubuntu, Mandrake/Mandriva, SUSE), for BSD platforms and for Solaris.
Main AXIGEN services:
1. Mail transfer is ensured by SMTP / ESMTP modules, which include a powerful Mail Processing engine with an API (Application Programming Interface) for custom filtering.
2. Message retrieval is performed through IMAP4 or POP3 protocols with special tools for connectivity control and host authentication management.
3. The Webmail module provides improved security and efficiency and allows users anywhere on the Internet to access and send mails from their Web browsers.
All services are controlled from centralized WEB / CLI Administration, enabling full control of the email traffic.
AXIGEN Mail Server Specifications:
Mail Services:
- SMTP/ESMTP, POP3, IMAP4 and Webmail
- SSL/TLS encryption
Connectivity and architecture:
- Multithreaded engine with module thread control
- Simultaneous resource access
- Mail storage with index based access
- In depth connection control
- WebMail available in 14 languages: EN, RO, NO, ES, NL, IT, DE, CN, RU, PT, DK, SE, CZ, PL
- Firewall-like communication rules
- User authentication: plain, login, CRAM MD5
Server Security:
- Multilevel filtering system
- Integration with 16 Antivirus and AntiSPAM applications
- Script interface for external custom filters.
Whats New in This Release:
- WebMail languages: Persian, Greek, English, Romanian, Norwegian, Spanish, Dutch, Italian, German, Chinese, Russian, Portuguese, Swedish, Czech and Polish.
- Log Parser -scans a log file for any known (handled) errors and savesthe sessions separately
- FTP Backup Tool - simplifies backup procedure
<<lessThis is a full-featured version, available free of charge, part of a time-limited promotional offer. This type of license offered is perpetual and you will get to keep it even if this promotion expires.
It is available for many Linux distributions (Gentoo, Redhat/Fedora Core, Slackware, Debian, Ubuntu, Mandrake/Mandriva, SUSE), for BSD platforms and for Solaris.
Main AXIGEN services:
1. Mail transfer is ensured by SMTP / ESMTP modules, which include a powerful Mail Processing engine with an API (Application Programming Interface) for custom filtering.
2. Message retrieval is performed through IMAP4 or POP3 protocols with special tools for connectivity control and host authentication management.
3. The Webmail module provides improved security and efficiency and allows users anywhere on the Internet to access and send mails from their Web browsers.
All services are controlled from centralized WEB / CLI Administration, enabling full control of the email traffic.
AXIGEN Mail Server Specifications:
Mail Services:
- SMTP/ESMTP, POP3, IMAP4 and Webmail
- SSL/TLS encryption
Connectivity and architecture:
- Multithreaded engine with module thread control
- Simultaneous resource access
- Mail storage with index based access
- In depth connection control
- WebMail available in 14 languages: EN, RO, NO, ES, NL, IT, DE, CN, RU, PT, DK, SE, CZ, PL
- Firewall-like communication rules
- User authentication: plain, login, CRAM MD5
Server Security:
- Multilevel filtering system
- Integration with 16 Antivirus and AntiSPAM applications
- Script interface for external custom filters.
Whats New in This Release:
- WebMail languages: Persian, Greek, English, Romanian, Norwegian, Spanish, Dutch, Italian, German, Chinese, Russian, Portuguese, Swedish, Czech and Polish.
- Log Parser -scans a log file for any known (handled) errors and savesthe sessions separately
- FTP Backup Tool - simplifies backup procedure
Download (MB)
Added: 2007-07-23 License: Freeware Price:
836 downloads
Data::Type 0.01.04
Data::Type is a Perl module with versatile data and value types. more>>
Data::Type is a Perl module with versatile data and value types.
SYNOPSIS
use Data::Type qw(:all);
use Error qw(:try);
try
{
verify $email , EMAIL;
verify $homepage , URI(http);
verify $cc , CREDITCARD( MASTERCARD, VISA );
verify $answer_a , YESNO;
verify $gender , GENDER;
verify one , ENUM( qw(one two three) );
verify [qw(two six)], SET( qw(one two three four five six) ) );
verify $server_ip4 , IP(v4);
verify $server_ip6 , IP(v6);
verify A35231AH1 , CINS;
verify 14565935 , ISSN;
verify DE , LANGCODE;
verify German , LANGNAME;
verify 012345678905, UPC();
verify 5276440065421319, CREDITCARD( MASTERCARD ) );
verify ATGCAAAT , BIO::DNA;
verify AUGGGAAAU , BIO::RNA;
verify 01001001110110101, BINARY;
verify 0F 0C 0A, HEX;
verify 0 , DEFINED;
verify 234 , NUM( 20 );
verify 1 , BOOL( true );
verify 100 , INT;
verify 1.1 , REAL;
my $foo = bless( 123, SomeThing );
verify $foo , REF;
verify $foo , REF( qw(SomeThing Else) );
verify [ bar ] , REF( ARRAY );
verify x 20 , VARCHAR( 20 );
verify 2001-01-01 , DATE( MYSQL );
verify 16 Nov 94 22:28:20 PST , DATE( DATEPARSE );
verify 9999-12-31 23:59:59, DATETIME;
verify 1970-01-01 00:00:00, TIMESTAMP;
verify -838:59:59 , TIME;
verify 2155 , YEAR;
verify 69 , YEAR(2);
verify 0 x 20 , TINYTEXT;
verify 0 x 20 , MEDIUMTEXT;
verify 0 x 20 , LONGTEXT;
verify 0 x 20 , TEXT;
verify 80 , PORT;
verify www.cpan.org, DOMAIN;
}
catch Type::Exception with
{
my $e = shift;
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
foreach my $entry ( testplan( $e->type ) )
{
printf "texpecting it %s %s ", $entry->[1] ? is : is NOT, $entry->[0]->info();
}
};
# believe it or not, this really works
foreach ( EMAIL, WORD, CREDITCARD( MASTERCARD, VISA ), BIO::DNA, HEX )
{
print $_->info;
print $_->usage;
print $_->export; # does it have other names
print $_->param; # what are my choice i.e. [yes,no]
print $_->isa( IType::Business ); # is it a Business related type ?
print $_->VERSION; # first apperance in Data::Type release
}
# tied interface (alias typ)
try
{
typ ENUM( qw(DNA RNA) ), ( my $a, my $b );
print "a is typed" if istyp( $a );
$a = DNA; # $alias only accepts DNA or RNA
$a = RNA;
$a = xNA; # throws exception
untyp( $alias );
}
catch Type::Exception ::with
{
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
};
dverify( $email, EMAIL ) or die $!;
my $g = Data::Type::Guard->new(
allow => [ Human, Others ], # blessed objects of that type
tests =>
{
email => EMAIL( 1 ), # mxcheck ON ! see Email::Valid
firstname => WORD,
social_id => [ NUM, VARCHAR( 10 ) ],
contacts => sub { my %args = @_; exists $args{lucy} },
}
);
$g->inspect( $h );
# compact version
overify { email => EMAIL( 1 ), firstname => WORD }, $object_a, $object_b;
print toc();
print catalog();
This module supports versatile data and value types. Out of the ordinary it supports parameterised types (like databases have i.e. VARCHAR(80) ). When you try to feed a typed variable against some odd data, this module explains what he would have expected.
<<lessSYNOPSIS
use Data::Type qw(:all);
use Error qw(:try);
try
{
verify $email , EMAIL;
verify $homepage , URI(http);
verify $cc , CREDITCARD( MASTERCARD, VISA );
verify $answer_a , YESNO;
verify $gender , GENDER;
verify one , ENUM( qw(one two three) );
verify [qw(two six)], SET( qw(one two three four five six) ) );
verify $server_ip4 , IP(v4);
verify $server_ip6 , IP(v6);
verify A35231AH1 , CINS;
verify 14565935 , ISSN;
verify DE , LANGCODE;
verify German , LANGNAME;
verify 012345678905, UPC();
verify 5276440065421319, CREDITCARD( MASTERCARD ) );
verify ATGCAAAT , BIO::DNA;
verify AUGGGAAAU , BIO::RNA;
verify 01001001110110101, BINARY;
verify 0F 0C 0A, HEX;
verify 0 , DEFINED;
verify 234 , NUM( 20 );
verify 1 , BOOL( true );
verify 100 , INT;
verify 1.1 , REAL;
my $foo = bless( 123, SomeThing );
verify $foo , REF;
verify $foo , REF( qw(SomeThing Else) );
verify [ bar ] , REF( ARRAY );
verify x 20 , VARCHAR( 20 );
verify 2001-01-01 , DATE( MYSQL );
verify 16 Nov 94 22:28:20 PST , DATE( DATEPARSE );
verify 9999-12-31 23:59:59, DATETIME;
verify 1970-01-01 00:00:00, TIMESTAMP;
verify -838:59:59 , TIME;
verify 2155 , YEAR;
verify 69 , YEAR(2);
verify 0 x 20 , TINYTEXT;
verify 0 x 20 , MEDIUMTEXT;
verify 0 x 20 , LONGTEXT;
verify 0 x 20 , TEXT;
verify 80 , PORT;
verify www.cpan.org, DOMAIN;
}
catch Type::Exception with
{
my $e = shift;
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
foreach my $entry ( testplan( $e->type ) )
{
printf "texpecting it %s %s ", $entry->[1] ? is : is NOT, $entry->[0]->info();
}
};
# believe it or not, this really works
foreach ( EMAIL, WORD, CREDITCARD( MASTERCARD, VISA ), BIO::DNA, HEX )
{
print $_->info;
print $_->usage;
print $_->export; # does it have other names
print $_->param; # what are my choice i.e. [yes,no]
print $_->isa( IType::Business ); # is it a Business related type ?
print $_->VERSION; # first apperance in Data::Type release
}
# tied interface (alias typ)
try
{
typ ENUM( qw(DNA RNA) ), ( my $a, my $b );
print "a is typed" if istyp( $a );
$a = DNA; # $alias only accepts DNA or RNA
$a = RNA;
$a = xNA; # throws exception
untyp( $alias );
}
catch Type::Exception ::with
{
printf "Expected %s %s at %s line %sn",
$e->value,
$e->type->info,
$e->was_file,
$e->was_line;
};
dverify( $email, EMAIL ) or die $!;
my $g = Data::Type::Guard->new(
allow => [ Human, Others ], # blessed objects of that type
tests =>
{
email => EMAIL( 1 ), # mxcheck ON ! see Email::Valid
firstname => WORD,
social_id => [ NUM, VARCHAR( 10 ) ],
contacts => sub { my %args = @_; exists $args{lucy} },
}
);
$g->inspect( $h );
# compact version
overify { email => EMAIL( 1 ), firstname => WORD }, $object_a, $object_b;
print toc();
print catalog();
This module supports versatile data and value types. Out of the ordinary it supports parameterised types (like databases have i.e. VARCHAR(80) ). When you try to feed a typed variable against some odd data, this module explains what he would have expected.
Download (0.022MB)
Added: 2006-10-02 License: Perl Artistic License Price:
1117 downloads
Separe 0.1.6
This is a great Firefox addon that helps you keeping tabs tidy by introducing a new kind of tab! more>>
Separe 0.1.6 is yet another extremely useful utility for Firefox users. It is actually a great addon that helps you keeping tabs tidy by introducing a new kind of tab!
Enhancements: March 10, 2008
- Included support for Firefox 3.0b3.
- Added some locales.
- Supported locales: be-BY, ca-AD, da-DK, de-DE, en-US, es-ES, fi-FI, fr-FR, it-IT, nl-NL, pl-PL, pt-BR, ru-RU, sl-SI, uk-UA, zh-CN.
Requirements:
- Mozilla Firefox
Added: 2008-03-11 License: GPL Price: FREE
981 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above delaware county auditor search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed