Main > Free Download Search >

Free null software for linux

null

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 245
Null IBBS 0.5.0

Null IBBS 0.5.0


Null IBBS is an Internet Bulletin Board System derived from an old snapshot of NullLogic Groupware. more>>
Null IBBS is an Internet Bulletin Board System derived from an old snapshot of NullLogic Groupware.

Null iBBS uses cleartext password transmission. If security is a concern, use https!

This program is derived from an earlier version of Sentinel Groupware. This program also shares code with Null Webmail.

Installation

Null iBBS installation is a bit of a do-it-yourself process for the time being.

1) Move all the files and directories to a directory of your choice. /usr/local/ibbs might be a good default.

2) Edit the Makefile and check the mysql and pgsql dependencies.

3) Type make mysql or make pgsql to build the binary.

4) Create your database and use ibbsdb.mysql or ibbsdb.pgsql to create the database schema.

5) Edit etc/ibbs.cfg to match your configuration.

6) Make sure the files/ directory is writable by the user Null iBBS will be run as.

7) Run ./ibbs from bin/ (NOT AS ROOT!).

8) Curse the crappy install process, and give up in disgust (optional).

With luck, you now have Null iBBS running as a standalone server. It can also be run as a cgi by copying the binary and ibbs.cfg to your cgi-bin directory (works for me).
<<less
Download (0.11MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
952 downloads
Null httpd 0.5.1

Null httpd 0.5.1


Null httpd is a very small, simple and multithreaded web server for Linux and Windows. more>>
Null httpd is a very small, simple and multithreaded web server for Linux and Windows.

Please note that Null httpd is _not_ a production quality server, nor should it be used in environments where stability and/or security are a concern.

If youre looking for a solid, reliable web server, please use Apache.
<<less
Download (0.026MB)
Added: 2007-03-16 License: GPL (GNU General Public License) Price:
957 downloads
NullableTypes 1.2

NullableTypes 1.2


NullableTypes for .NET are a very reliable and efficient version of built-in value-types that can be Null. more>>
NullableTypes for .NET are a very reliable and efficient version of built-in value-types that can be Null. NullableTypes pass more than 800 differents test cases and have close-to-optimal efficiency as built-in value-types. They may be used every time you need to store a Null value in a .NET built-in value-type.

Types implemented by NullableTypes are: NullableBoolean, NullableByte, NullableInt16, NullableInt32, NullableInt64, NullableSingle, NullableDouble, NullableDecimal, NullableString and NullableDateTime.

Helper functions provide seamless integration with Windows and ASP.NET user controls and with ADO.NET.

NullableTypes will let you write code like this:

public sealed class Order{
public int OrderID {get {/*...*/}}
public int CustomerID {get {/*...*/}}
public NullableDateTime RequestedDeliveryDate {get {/*...*/}}
// remaining members elided for clarity
}

where RequestedDeliveryDate can be either NullableDateTime.Null or a valid DateTime value.

The property RequestedDeliveryDate.IsNull tests if the date is Null, and when it is not Null the property RequestedDeliveryDate.Value returns a valid DateTime value.
<<less
Download (0.76MB)
Added: 2006-09-06 License: MIT/X Consortium License Price:
1143 downloads
NativeCall 0.4.1

NativeCall 0.4.1


NativeCall is a Java toolkit that lets you call operating system methods from whithin Java without JNI code. more>>
NativeCall is a Java toolkit that lets you call operating system methods from whithin Java without JNI code.
The current version 0.4.0 supports structs, Strings, primitive types (ints and booleans), byte and char arrays and output parameters.
NativeCall 0.4.0 implements some minor changes to make the API more consistent and easier. NativeCall project also features more unit tests.
Enhancements:
- The previous release could not create multiple pointers correctly.
- Javadoc for Win32Verifier#verifyModuleName(String) was corrected.
- Using a new Holder(null) now means new Holder(new Integer(0)).
- Constructor method IDs are now cached.
- int hashCode() methods have been optimized.
<<less
Download (0.28MB)
Added: 2006-04-20 License: MIT/X Consortium License Price:
1283 downloads
Sishell 0.2

Sishell 0.2


Sishell provides a reverse shellcode kit for x86 Linux, FreeBSD, NetBSD, and OpenBSD. more>>
Sishell provides a reverse shellcode kit for x86 Linux, FreeBSD, NetBSD, and OpenBSD.

sishell is a reverse (connecting) shellcode kit for x86 Linux, FreeBSD, NetBSD, and OpenBSD. You may generate both regular shellcode (no NULLs) and stand-alone ELF executables (e.g. for injection into Web script vulnerabilities).

It is distributed with a Makefile system, a custom ELF brander (brandelf), and a C example code generator.

Shellcode is a piece of machine-readable code, or script code that has just one mission; to open up a command interpreter (shell) on the target system so that an "attacker" can type in commands in the same fashion as a regular authorized user, or system administrator of that system can (with a few
not-so-important exceptions though). However, in order to get remote access to the shell, youre going to need some kind of networking support in your
shellcode too.

If the shellcode is to be used to exploit buffer overflows (e.g.) in binary, machine-readable software, the shellcode is going to have to be machine-readable (binary) and, to make things more complicated, it cant contain any null bytes (0x00). Null (0) is a string delimiter that tells all C string functions (and other implementations) that once found the function should stop processing the string (thus, a null-terminated string). We dont want an input function to stop processing our shellcode, since we want to upload the entire shellcode into the vulnerable program and tell it to execute it.

<<less
Download (0.019MB)
Added: 2007-03-26 License: MIT/X Consortium License Price:
561 downloads
vtmalloc 1.2

vtmalloc 1.2


vtmalloc is a fast memory allocator for multi-threaded applications and Tcl. more>>
vtmalloc is a fast memory allocator for multi-threaded applications and Tcl. vtmalloc project provides low contention and the ability to return memory to the system.
Tcl
Replace exiting tclThreadAlloc. in the Tcl distribution and recompile with
--enable-threads option. Or use LD_PRELOAD=tclThreadAlloc.so before loading your application.
There is command Tcl_VTMallocCtlObjCmd which can be used in application to force deallocating global pages as well.
To use it in your Tcl program, link it with libvtmalloc.so and execute
extern Tcl_ObjProc Tcl_VTMallocCtlObjCmd;
Tcl_CreateObjCommand(interp, "vtmalloc_ctl", Tcl_VTMallocCtlObjCmd, NULL, NULL);
Enhancements:
- Greatly improved speed and memory usage.
<<less
Download (0.013MB)
Added: 2007-01-17 License: MPL (Mozilla Public License) Price:
1011 downloads
squelch 1.0.1

squelch 1.0.1


s.q.u.e.l.c.h is an Ogg Vorbis audio player. more>>
s.q.u.e.l.c.h is an Ogg Vorbis audio player. It features a sophisticated, innovative playlist manager and an integrated Vorbis tag editor.
Currently squelch supports:
Input : Ogg Vorbis.
Output : ALSA , aRts , esd , IRIX, OSS , NULL, Solaris, raw, AU, WAV.... anything supported by libao.
Main features:
- Funky Playlist.
- Auto-update of master playlist when audio tracks added/changed on disk.
- Vorbis tag editor.
- Smooth operation. Highly multi-threaded.
- Uses Vorbis tags only for display track names. Filenames are irrelevant.
- No gaps between tracks.
- No skins. Read Skin Cancer for a nice tirade against skins.
Enhancements:
- Improved finding of Qt in configure.
- Now works with Qt 3.
- Fixed compilation on gcc-2.96
<<less
Download (0.18MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
1181 downloads
C::Include 1.40

C::Include 1.40


C::Include is a package to easy operate with binary data via describing they like C/C++ structs. more>>
C::Include is a package to easy operate with binary data via describing they like C/C++ structs.

CLASSES AND PACKAGES

C::Include - Header file base parser class
C::Include::Struct - Struct wraper class

USAGE

use C::Include;

POSSIBILITY

- skip comments;

- valid preprocessor commands: define, ifdef, ifndef, endif, else;

- supported bitset and enclosed structs, enums;

- The compiled data may be cached in the external file and at repeated call not compiled
any more, that will speed up operation.8);

- may be defined and redefined type substitutions via #define
(Ex: #define WORD word );

- predefined standart types:
char
unsigned char
short
unsigned short
int
unsigned int
long
unsigned long
long long
unsigned long long
float
double
pointer
null
neganull
bit
short int
long int
long long int
unsigned
unsigned long int
unsigned short int
unsigned long long int
byte
dword
string (null padded)
sstring (space padded)
zstring (null terminated, null padded)

- predefined standart type aliases:
short int => short
long int => long
long long int => long long
unsigned => unsigned long
unsigned long int => unsigned long
unsigned short int => unsigned short
unsigned long long int => unsigned long long
byte => unsigned char
word => unsigned short
dword => unsigned long

<<less
Download (0.016MB)
Added: 2006-07-06 License: Perl Artistic License Price:
1206 downloads
PHP AnyXML 0.1.1

PHP AnyXML 0.1.1


PHP AnyXML is an XML read-only class which offers PHP5 SimpleXMLs capabilities on ANY host. more>>
PHP AnyXML is an XML read-only class which offers PHP5 SimpleXMLs capabilities on ANY host, even if PHP4 and/or without the expat extension.

AnyXML project will always choose the best available library to offer its functionality. Your solution to PHP+XML messes.

AnyXML API documentation

When loading an XML file the first XML tag becomes the root node. An XML file should contain only one parent tag.
Please note that AnyXML offers a read-only layer and no write facility. All child nodes (with the same name) are grouped into arrays.

AnyXML API defines:

* getAllChildren()
returns all the child nodes of the AnyXML object

* getValue()
returns the text value of the AnyXML object; this is the text contained in the tag
or that gathered from its child nodes

* getName()
returns the tag name of the current AnyXML object

* getElementByPath($path)
returns an AnyXML object from the specified $path
if the path was not valid, null is returned
if there is more than one element in that path, an array is returned

* getValueByPath()
same as ::getElementByPath($path)->getValue()

* attributes($attr = null)
returns attribute $attr or the full list of attributes if $attr is not specified

* map($callback, $args = array())
maps a callback function to all children
<<less
Download (MB)
Added: 2007-07-11 License: LGPL (GNU Lesser General Public License) Price:
835 downloads
Inline::Java::PerlInterpreter 0.52

Inline::Java::PerlInterpreter 0.52


Inline::Java::PerlInterpreter is a Perl module used to call Perl directly from Java using Inline::Java. more>>
Inline::Java::PerlInterpreter is a Perl module used to call Perl directly from Java using Inline::Java.

SYNOPSIS

import org.perl.inline.java.* ;

class HelpMePerl {
static private InlineJavaPerlInterpreter pi = null ;

public HelpMePerl() throws InlineJavaException {
}

static private boolean matches(String target, String pattern)
throws InlineJavaPerlException, InlineJavaException {
Boolean b = (Boolean)pi.eval("" + target + " =~ /" + pattern + "/", Boolean.class) ;
return b.booleanValue() ;
}

public static void main(String args[])
throws InlineJavaPerlException, InlineJavaException {
pi = InlineJavaPerlInterpreter.create() ;

String target = "aaabbbccc" ;
String pattern = "ab+" ;
boolean ret = matches(target, pattern) ;

System.out.println(
target + (ret ? " matches " : " doesnt match ") + pattern) ;

pi.destroy() ;
}
}

WARNING: Inline::Java::PerlInterpreter is still experimental.
The org.perl.inline.java.InlineJavaPerlInterpreter Java class allows you to load a Perl interpreter directly from Java. You can then perform regular callbacks to call into Perl.

<<less
Download (0.092MB)
Added: 2007-06-02 License: Perl Artistic License Price:
877 downloads
MozillaTranslator 5.21

MozillaTranslator 5.21


MozillaTranslator (the program) is for localizator//translators that want to localize Mozilla or another XUL based application. more>>
MozillaTranslator (the program) is for localizator//translators that want to localize Mozilla or another XUL based application.
Enhancements:
- Added a "export to" field for CVS exports, so MT can deal with the differences between en-US and ab-CD different directory layouts in Mozilla CVS (bug 376285).
- Locale Field in Show Which Columns dialog is now mandatory and must have at least two characters, to prevent people translating for (null) and getting angry when later they discover they have just lose everything.
- MT ignores now ".svn" directories as well as "CVS" on CVS imports.
<<less
Download (0.73MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
926 downloads
Audio::TagLib::Tag 1.42

Audio::TagLib::Tag 1.42


Audio::TagLib::Tag is a simple, generic interface to common audio meta data fields. more>>
Audio::TagLib::Tag is a simple, generic interface to common audio meta data fields.

This is an attempt to abstract away the difference in the meta data formats of various audio codecs and tagging schemes. As such it is generally a subset of what is available in the specific formats but should be suitable for most applications. This is meant to complient the generic APIs found in Audio::TagLib::AudioProperties, Audio::TagLib::File and Audio::TagLib::FileRef.

DESTROY()

Detroys this Tag instance.

String title() [pure virtual]

Returns the track name; if no track name is present in the tag String::null will be returned.

String artist() [pure virtual]

Returns the artist name; if no artist name is present in the tag String::null will be returned.

String album() [pure virtual]

Returns the album name; if no album name is present in the tag String::null will be returned.

String comment() [pure virtual]

Returns the track comment; if no comment is present in the tag String::null will be returned.

String genre() [pure virtual]

Returns the genre name; if no genre is present in the tag String::null will be returned.

UV year() [pure virtual]

Returns the year; if there is no year set, this will return 0.

UV track() [pure virtual]

Returns the track number; if there is no track number set, this will return 0.

void setTitle(String $s) [pure virtual]

Sets the title to $s. If $s is String::null() then this value will be cleared.

void setArtist(String $s) [pure virtual]

Sets the artist to $s. If $s is String::null() then this value will be cleared.

void setAlbum(String $s) [pure virtual]

Sets the album to $s. If $s is String::null() then this value will be cleared.

void setComment(String $s) [pure virtual]

Sets the comment to $s. If $s is String::null() then this value will be cleared.

void setGenre(String $s) [pure virtual]

Sets the genre to $s. If $s is String::null() then this value will be cleared. For tag formats that use a fixed set of genres, the appropriate value will be selected based on a string comparison. A list of available genres for those formats should be available in that types implementation.

void setYear(UV $i) [pure virtual]

Sets the year to $i. If $i is 0 then this value will be cleared.

void setTrack(UV $i) [pure virtual]

Sets the track to $i. If $i is 0 then this value will be cleared.

void duplicate(Tag $source, Tag $target, BOOL $overwrite = TRUE) [static]

Copies the generic data from one tag to another.

NOTE This will no affect any of the lower level details of the tag. For instance if any of the tag type specific data (maybe a URL for a band) is set, this will not modify or copy that. This just copies using the API in this class.

If $overwrite is true then the values will be unconditionally copied. If false only empty values will be overwritten.

<<less
Download (1.4MB)
Added: 2006-06-21 License: Perl Artistic License Price:
1221 downloads
Linice 2.6

Linice 2.6


Linice is an x86 source-level kernel debugger. more>>
Linice is a source-level kernel debugger for x86 systems with the look and feel of SoftIce for MS Windows.
It is designed for people who are already familiar with SoftIce, but anyone can quickly get used to it. It can break into a running kernel at any time using a hotkey and supports breakpoints and single step on modules, the kernel, or user programs.
Linice supports the VGA frame buffer, the X Window System, serial connections, and monochrome adapters.
Enhancements:
- A bug in linsym where getlogin() would return NULL for some kernels has been fixed.
- This fixes a linsym segfault reported by a number of users.
<<less
Download (0.91MB)
Added: 2005-07-29 License: GPL (GNU General Public License) Price:
1551 downloads
pkdump 3.3

pkdump 3.3


pkdump is a port scanning detection tool. more>>
pkdump is a port scanning detection tool. The program detect any TCP ,UDP port scanning or open connection attempt from foreign host over the internet with IP protocol version 4
or IP protocol version 6 .
The program can detect:
TCP connect , TCP syn , TCP fin , TCP xmas, TCP ack, TCP null(no flags), UDP port (connect) and UDP null (0 bytes, UDP packets lengt ) , whether the IP packet are fragmented or not. (Please consult "Nmap"... man Nmap).
The program make a directory like this : "Pkdump-[date][time]" and in this directory make a file "PKDATA" that contains all IP packet sent and received during the transmission ,and during scanning attack make files that contains the data of the attack ;the data of the port scanning will displayed on the screen with a short beep;
Enhancements:
- Fixed bug in read-write operation.
- Show the number of IP fragment.
<<less
Download (0.018MB)
Added: 2006-07-13 License: GPL (GNU General Public License) Price:
1201 downloads
Sledge::Plugin::DI 0.0.1

Sledge::Plugin::DI 0.0.1


Sledge::Plugin::DI is a dependency injection for Sledge. more>>
Sledge::Plugin::DI is a dependency injection for Sledge.

SYNOPSIS

use Sledge::Plugin::DI;

package Your::Pages;
use Sledge::Plugin::DI;
# no create_* methods!

# in your config.yaml
common:
di:
session: Sledge::Session::Memcached
cache: Sledge::Cache::Memcached
charset: Sledge::Charset::Default
authorizer:
- pages: Your::Pages
authorizer: Null
- pages: Your::Pages::Admin
authorizer: Your::Authorizer::Admin
- pages: Your::Pages::My
authorizer: Your::Authorizer::My
manager:
- pages: Your::Pages
session: Cookie
- pages: Your::Pages::Mobile
session: StickyQuery

<<less
Download (0.018MB)
Added: 2007-01-23 License: Perl Artistic License Price:
1005 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5