hex editor
MSCBlob for Linux 2.0
MSCBlob is an auxiliary component for data blocks storing and transmitting more>> MSCBlob (Binary Large Object) is an auxiliary component for data blocks storing and transmitting. It could contain a raw data and represent it as a binary or string. There are 3 alternative string representations: as-is, Base64 and Hex. Also has an ability to save and load data from files on disk.<<less
KeyPlayer 1.4
Java Keystroke and Mouse Event Tutor. Application to let you experiment to learn how mouse and keystroke events work. Output appears on the console. Just click the mouse or hit keystrokes and watch what details of the events generated. more>>
KeyPlayer - Java Keystroke and Mouse Event Tutor. Application to let you
experiment to learn how mouse and keystroke events work.
Output appears on the console. Just click the mouse or hit
keystrokes and watch what details of the events generated.
To install, Extract the zip download with Winzip, available from
http://www.winzip.com (or similar unzip utility) into any
directory you please, often C: -- ticking off the (user
folder names) option. To run as an application, type:
java -jar C:commindprodkeyplayerkeyplayer.jar
adjusting as necessary to account for where the jar file is.
Version 1.1 avoids dumping control chars to the console.
Version 1.3 adds a PAD and icon. renamed from keyplay to keyplayer.
Enhancements:
Version 1.4
add hex displays
System Requirements:Requires a Java 1.1 or later JRE<<less

DataWorkshop 1.1.1
DataWorkshop is an editor to view and modify binary data. more>>
DataWorkshop 1.1.1 with its functionality will help you a lot. It is actually an editor to view and modify binary data. The editor provides different views which can be used to edit, analyze and export the binary data.
A simple hex view can be used to simulate a standard hexeditor but more complex dynamic views are possible to comfortable edit binary structure like executables or captured network traffic. DataWorkshop editor provides powerful search and diff functionality and user defined transformations.
Views can be filtered using the XPath query language (e.g. selecting several IP packets in a network traffic capture file). Also, views can be exported as in various formats for further processing. This can be used to convert old binary formats into modern xml tagged data.
Keep in mind the limitations:
- Too slow when editing large files (> 100MB) or using complex views
- Maximal data size 2 147 483 647 bytes (~ 2 GB)
Major features:
- Mulitplatform (Windows, Linux, MacOS)
- User defined view definitions which are compiled into complex data views
- Data view can can be exported as xml
- Data view can be queried using XPath syntax to generate a new data view (e.g. selecting several IP packages according to their flags)
- Configurable data encodings used to edit and view data (e.g Hex, Decimal, IEEE 754 Reals, USAscii, EBCDIC, TimeInMillis etc.)
- Configurable data transformation (e.g. Rot13 Encoder / Decoder)
- Diff tool with bit granularity
- Find and replace with bit granularity
- Data clipboard for cut, copy and paste
- Undo/Redo
- XML based storage for persistent data
- Data conversion between different formats (e.g little endian big endian, hexdump binary data)
- Read and write from sockets
Enhancements: 12 July 2004
- Open Source release
Requirements:
- Java 1.4
- 1.0 Ghz Processor with 256MB Ram
YAPE::Regex::Element 3.03
YAPE::Regex::Element contains sub-classes for YAPE::Regex elements. more>>
SYNOPSIS
use YAPE::Regex MyExt::Mod;
# this sets up inheritence in MyExt::Mod
# see YAPE::Regex documentation
YAPE MODULES
The YAPE hierarchy of modules is an attempt at a unified means of parsing and extracting content. It attempts to maintain a generic interface, to promote simplicity and reusability. The API is powerful, yet simple. The modules do tokenization (which can be intercepted) and build trees, so that extraction of specific nodes is doable.
Methods for YAPE::Regex::Element
This class contains fallback methods for the other classes.
my $str = $obj->text;
Returns a string representation of the content of the regex node itself, not any nodes contained in it. This is undef for non-text nodes.
my $str = $obj->string;
Returns a string representation of the regex node itself, not any nodes contained in it.
my $str = $obj->fullstring;
Returns a string representation of the regex node, including any nodes contained in it.
my $quant = $obj->quant;
Returns a string with the quantity, and a ? if the node is non-greedy. The quantity is one of *, +, ?, {M,N}, or an empty string.
my $ng = $obj->ngreed;
Returns a ? if the node is non-greedy, and an empty string otherwise.
Methods for YAPE::Regex::anchor
This class represents anchors. Objects have the following methods:
my $anchor = YAPE::Regex::anchor->new($type,$q,$ng);
Creates a YAPE::Regex::anchor object. Takes three arguments: the anchor (^, A, $, Z, z, B, b, or G), the quantity, and the non-greedy flag. The quantity should be an empty string.
my $anc = YAPE::Regex::anchor->new(A, , ?);
# /A?/
my $type = $anchor->type;
Returns the string anchor.
Methods for YAPE::Regex::macro
This class represents character-class macros. Objects have the following methods:
my $macro = YAPE::Regex::macro->new($type,$q,$ng);
Creates a YAPE::Regex::macro object. Takes three arguments: the macro (w, W, d, D, s, or S), the quantity, and the non-greedy flag.
my $macro = YAPE::Regex::macro->new(s, {3,5});
# /s{3,5}/
my $text = $macro->text;
Returns the macro.
print $macro->text; # s
my $type = $macro->type;
Returns the string macro.
Methods for YAPE::Regex::oct
This class represents octal escapes. Objects have the following methods:
my $oct = YAPE::Regex::oct->new($type,$q,$ng);
Creates a YAPE::Regex::oct object. Takes three arguments: the octal number (as a string), the quantity, and the non-greedy flag.
my $oct = YAPE::Regex::oct->new(040);
# / 40/
my $text = $oct->text;
Returns the octal escape.
print $oct->text; # 40
my $type = $oct->type;
Returns the string oct.
Methods for YAPE::Regex::hex
This class represents hexadecimal escapes. Objects have the following methods:
my $hex = YAPE::Regex::hex->new($type,$q,$ng);
Creates a YAPE::Regex::hex object. Takes three arguments: the hexadecimal number (as a string), the quantity, and the non-greedy flag.
my $hex = YAPE::Regex::hex->new(20,{2,});
# /x20{2,}/
my $text = $hex->text;
Returns the hexadecimal escape.
print $hex->text; # x20
my $type = $hex->type;
Returns the string hex.
Methods for YAPE::Regex::utf8hex
This class represents UTF hexadecimal escapes. Objects have the following methods:
my $hex = YAPE::Regex::utf8hex->new($type,$q,$ng);
Creates a YAPE::Regex::utf8hex object. Takes three arguments: the hexadecimal number (as a string), the quantity, and the non-greedy flag.
my $utf8hex = YAPE::Regex::utf8hex->new(beef,{0,4});
# /x{beef}{2,}/
my $text = $utf8hex->text;
Returns the hexadecimal escape.
print $utf8hex->text; # x{beef}
my $type = $utf8hex->type;
Returns the string utf8hex.
Methods for YAPE::Regex::backref
This class represents back-references. Objects have the following methods:
my $bref = YAPE::Regex::bref->new($type,$q,$ng);
Creates a YAPE::Regex::bref object. Takes three arguments: the number of the back-reference, the quantity, and the non-greedy flag.
my $bref = YAPE::Regex::bref->new(2,,?);
# /2?/
my $text = $bref->text;
Returns the backescape.
print $bref->text; # 2
my $type = $bref->type;
Returns the string backref.
Methods for YAPE::Regex::ctrl
This class represents control character escapes. Objects have the following methods:
my $ctrl = YAPE::Regex::ctrl->new($type,$q,$ng);
Creates a YAPE::Regex::ctrl object. Takes three arguments: the control character, the quantity, and the non-greedy flag.
my $ctrl = YAPE::Regex::ctrl->new(M);
# /cM/
my $text = $ctrl->text;
Returns the control character escape.
print $ctrl->text; # cM
my $type = $ctrl->type;
Returns the string ctrl.
Methods for YAPE::Regex::named
This class represents named characters. Objects have the following methods:
my $ctrl = YAPE::Regex::named->new($type,$q,$ng);
Creates a YAPE::Regex::named object. Takes three arguments: the name of the character, the quantity, and the non-greedy flag.
my $named = YAPE::Regex::named->new(GREEK SMALL LETTER BETA);
# /N{GREEK SMALL LETTER BETA}/
my $text = $named->text;
Returns the character escape text.
print $named->text; # N{GREEK SMALL LETTER BETA}
my $type = $named->type;
Returns the string named.
Piklab 0.14.5
Piklab is an integrated development environment for applications based on PIC and dsPIC microcontrollers. more>>
The GNU PIC Utilities are used for compiling assembler files. Microchip programmers (currently only ICD2) and several direct programmers are supported. A command-line programmer is included.
Piklab is free software released under the GNU Public License.
Main features:
- compile and link assembler files with "gpasm" and "gplink" .
- disassemble hex files with "gpdasm".
- project manager.
- hex file editor (all but newest PIC and dsPIC are supported). Tested only with inhx32 format.
- programming with "direct" programmers (serial and parallel). Only some PIC are supported. This feature is directly copied from Pikdev 0.8.1 and hasnt been tested at the moment. See Pikdev homepage for details.
- programming with ICD2 programmer from Microchip (serial and USB). Debugging is not supported yet. Tested only with 16F871 and 18F452. Automatically upload the correct firmware for the programmer.
- command-line programmer ("piklab-prog"). It still uses some configuration values that can only be set with the complete graphical interface. It needs to run under a graphical environnement since it uses some KDE libraries.
Root Actions Servicemenu 1.1.3 / 2.0
Root Actions servicemenu is a replacement/alternate for the default Edit-as-root servicemenu. more>>
It allows an admin user to perform several root only actions from konqueror (It of course asks for a password)
Usage:
The following actions can be performed (see the screenshot):
Edit as Text: Open file in Kate editor as root (shown with files)
Edit as Hex: Open file in KHexEdit (you may need to install khexedit package from universe) editor as root (shown with files)
Open in Konqueror: Open file/folder in root konqueror window
Change owner to root: Changes ownership to root:root
Change owner to user: Changes ownership to 1000:1000 (the default user)
The menu can be localized by editing the servicemenu .desktop files
Installation:
uncompress the two .desktop files to ~/.kde/share/apps/konqueror/servicemenus
Any comments, criticism and improvement suggestions welcomed.
Enhancements:
- As this seems to run as it should (and I havent gotten any show stopper bug reports), I feel courageous enough to remove the BETA status.
- Removed Preferred Applications section from the perl script. To change the default applications used by the menu, edit the desktop files instead. (This allows for different application preferences for different users and easy creation of custom Open with [application] entries to the menu.) See the README for customization howto.
- Fixed a bug with Rename when multiple items were chosen but the batch renamer application didnt start (the simple rename dialog was started instead).
- Added Dutch translation
Off-the-Record Messaging 3.1.0
Off-the-Record Messaging is a Pidgin plugin that allows you to have private conversations over instant messaging. more>>
Encryption
No one else can read your instant messages.
Authentication
You are assured the correspondent is who you think it is.
Deniability
The messages you send do not have digital signatures that are checkable by a third party. Anyone can forge messages after a conversation to make them look like they came from you. However, during a conversation, your correspondent is assured
the messages he sees are authentic and unmodified.
Perfect forward secrecy
If you lose control of your private keys, no previous conversation is compromised.
Enhancements:
- Translations for English, Dutch, Spanish, French, Slovak
- Added option to not log OTR conversations
- Large messages are now fragmented transparently instead of failing
- Removed "view secure session id" and "verify fingerprint" options from the OTR button menu. Added "authenticate buddy" option in its place. This new option allows you to authenticate your buddies by entering some secret that only the two of you know, rather than by using a long user-unfriendly sequence of hex characters. [The old "verify fingerprint" dialog is still available via an "Advanced..." button from the new "authenticate buddy" dialog.]
Color::Object 0.1_02
Color::Object is a OO-Color Module. more>>
A module for manipulation Colors within RGB, HSV and HSL color-spaces for usage within PDF-Documents especially with the Text::PDF::API modules.
SYNOPSIS
use Color::Object;
$cl = Color::Object->new;
$cl = Color::Object->newRGB($r,$g,$b);
$cl = Color::Object->newHSV($h,$s,$v);
$cl = Color::Object->newHSL($h,$s,$l);
$cl->setRGB($r,$g,$b);
$cl->addBrightness($br);
($h,$s,$l) = $cl->asHSL;
METHODS
Color::Object->new
Color::Object->newRGB $r, $g, $b
Color::Object->newHSV $h, $s, $v
Color::Object->newHSL $h, $s, $l
Color::Object->newGrey $grey
( $r, $g, $b ) = $cl->asRGB
Returns $cls rgb values. Range [0 .. 1].
( $h, $s, $v ) = $cl->asHSV
Returns $cls hsv values. Ranges h [0 .. 360], s/v [0 .. 1].
( $h, $s, $l ) = $cl->asHSL
Returns $cls hsl values. Ranges h [0 .. 360], s/l [0 .. 1].
$grey = $cl->asGrey
$grey = $cl->asGrey2
Returns $cls grey value. Range [0 .. 1]. Functions 2 returns the geometric mean of the corresponding RGB values.
( $c, $m, $y )= $cl->asCMY
Returns $cls cmy values. Range [0 .. 1].
( $c, $m, $y, $k )= $cl->asCMYK
( $c, $m, $y, $k )= $cl->asCMYK2
( $c, $m, $y, $k )= $cl->asCMYK3
Returns $cls cmyk values. Range [0 .. 1]. Function 2 returns a 25% lighter color-equivalent. Function 3 returns a 25% lighter color-equivalent.
$hex = $cl->asHex
Returns $cls rgb values as 6 hex-digits.
$cl->setRGB $r, $g, $b
Sets the $cls rgb values. Valid range [0 .. 1].
$cl->setHSV $h, $s, $v
Sets the $cls hsv values. Valid ranges: h [0..360], s/v [0..1].
$cl->setHSL $h, $s, $l
Sets the $cls hsl values. Valid ranges: h [0..360], s/l [0..1].
$cl->setGrey $grey
Sets the $cls grey value. Valid range [0 .. 1].
$cl->setHex $hex
Sets the $cls rgb values using 6 hex-nibbles.
$cl->addSaturation $saturation
Adds to the $cls saturation in the HSV model. Valid range [-1 .. 1].
$cl->setSaturation $saturation
Sets the $cls saturation in the HSV model. Valid range [0 .. 1].
$cl->rotHue $degrees
Rotates the $cls hue in the HSV/L model. Valid range [-360 .. 360].
$cl->setHue $hue
Sets the $cls hue in the HSV/L model. Valid range [0 .. 360].
$cl->addBrightness $brightness
Adds to the $cls brightness in the HSV model. Valid range [-1 .. 1].
$cl->setBrightness $brightness
Sets the $cls brightness in the HSV model. Valid range [0 .. 1].
$cl->addLightness $lightness
Adds to the $cls lightness in the HSL model. Valid range [-1 .. 1].
$cl->setLightness $lightness
Sets the $cls lightness in the HSL model. Valid range [0 .. 1].
Endeavour Mark II 2.8.2
Endeavour Mark II is a file browser, image browser, and archiver. more>>
Main features:
- Two pane tree & list style File Browser.
- Image Browser with thumbs list and a pan & zoom image viewer.
- Archiver for viewing, creating, and extracting packages.
- Commercial quality user-interface design.
- Convient drag & drop operations.
- Drag & drop downloading with the WGet Front End.
- Extended MIME Types support with external import/export support for other MIME Type file formats.
- Fully customizable tool bars and list headings.
- A recycled objects system.
- Device and disk utility programs:
- o Download - Front end for the GNU WGet
- o HEdit - Hex editor
- o SysInfo - CPU Display
- o ZipTool - Front end for ZipTools
Requierments:
- GTK 1.2.10
Enhancements:
- The history list windows display of event information was improved. EDVGetType() was added to the Endeavour 2 API library to obtain a configuration parameters value type.
- Support for extracting and listing tar archives using libtar was added.
Graphics::ColorPicker 0.10
Graphics::ColorPicker is a Perl module for WYSIWYG web applications that allow selection of HEX color numbers. more>>
SYNOPSIS
use Graphics::ColorPicker;
or
require Graphics::ColorPicker;
make_page($path_to_images);
send_page($html_txt,$type);
$time_string = http_date($time);
$name = script_name;
$html_text=frames($websafe);
$html_text = msie_frame;
$html_text=picker($darkimg,$liteimg,$size,$bsize,greyimg);
$html_text=no_picker;
$html_text=cp216_ds($clrdot,$border,$square)
$javascript_text = jslib;
$html=make_buttons(%look_n_feel,$url,$active,@buttons,$xtra);
$html_text=pluck($color);
ethtool 6
ethtool is a Linux net driver diagnostic and tuning tool for the Linux 2.4.x (or later) series of kernels. more>>
Enhancements:
- This release fixes handling of statistics where the label is exactly 32 bytes.
- It adds the ability to change the advertised speed/duplex to a different range of values, rather than all-or-one.
- It adds/updates register dump support for ixgb, sky2, Fabric7 VIOC, e1000, r8169, and SMSC LAN911x/LAN921x.
- It adds the ability to decode raw register dump stored in a file.
- It adds the ability to force hex register dump.
- Additional 10Gbps support is included. 2.5G support is included.
- The internal ethtool.h has been synchronized with upstream kernel 2.6.23-rc1.
Wcalc 2.3
Wcalc is a very capable calculator. more>>
Wcalc is a very capable calculator. It supports abitrary precision, has standard functions (sin, asin, and sinh for example, in either radians or degrees), many pre-defined constants (pi, e, c, etc.), support for using variables, "active" variables, a command history, hex/octal/binary input and output, unit conversions, embedded comments, and an expandable expression entry field. It evaluates expressions using the standard order of operations.
Wcalc uses intuitive expressions. For example, Wcalc will evaluate: 5sin 4!-7*2(4%6)^2 to be -221.96631678
Wcalc also comes in a command-line version that works on most (if not all) forms of Unix (including Linux and BSD). To support arbitrary precision, Wcalc relies on the GMP and MPFR libraries.
In the MacOSX release, these are compiled-in, so you shouldnt have to install them yourself. NOTE: GMP comes with a broken version of MPFR (I really wish they wouldnt do that). You have to install a real version of MPFR for Wcalc to work.
Enhancements:
- This has plenty of bugfixes and a couple nifty new features. In the GUI realm, Wcalc now also serves as a System Service, and so adds a "Wcalc Compute" entry to the Services menu of other applications.
- In the CLI realm, Wcalcs error reporting is now more friendly, and will tell you exactly where in the line the error occurred.
- Also, Wcalc now uses tab-completion in the CLI, and can tab-complete just about anything (variables, conversion units, commands, functions, etc.).
Font Mate 1.0
Font Mate is a simple program to help you see how fonts look on your computer, and to help you find symbol characters. more>>
Using Font Mate
There isnt much to it: Font Mate shows you a list of all the fonts installed on your computer. Choose any font from the list and it will show you what all the characters in that font look like. Choose any one of those characters and you will see an enlarged version of it at the bottom of the page (with its ASCII code in decimal and hex, should you be interested). Click the button to copy that character to the clipboard if you want to use it in another application.
Works on...
We wrote Font Mate originally for Mac OS X, but we have included versions for Windows and Linux too. We wrote it using REALbasic, a great tool for cross-platform rapid development. Source is available on request.
How much?
Font Mate is freeware. Download, use, share as you wish. No warranty is offered, and we accept no liability for anything strange or nasty that it might do to your computer.
And another thing
If you like Font Mate, why not have a look at our main site at tellura.co.uk and check out our other products and services?
Engine_pkcs11 0.1.4
Engine_pkcs11 is an implementation of an engine for OpenSSL. more>>
Engine_pkcs11 is meant to be used with smart cards and software for using smart cards in PKCS#11 format, such as OpenSC. Originaly this engine was a part of OpenSC, until OpenSC was split into several small projects for improved flexibility.
OpenSC was written by an international team and is licensed as Open Source software under the new BSD license.
Engine_pkcs11 is based on the Libp11 library.
Enhancements:
- The wiki export script was updated.
- Some dead code was disabled.
- The maximum length for a pin is now 32 bytes.
- Internal variables and code are now static.
- The slot is now also parsed as hex.
- Support for selecting slots by label was added.
IV 2.1.4
IV is a simple image viewer with pan and zoom viewing and many editing features. more>>
Image Viewer (often refered to as IV) allows you to; view convert, grab (screenshot), print, rotate, crop, resize, display on desktop, add text, add comments, and open/edit/save animated images.
Additional viewing features include pan & zoom with just a click and a drag.
Currently, IV supports direct opening and saving with the image libraries:
libungif - Uncompressed GIF images
libjpeg - JPEG images
libpng - PNG & MNG images
libtga (internal) - TGA images
libXpm - XPM images
In addition, binary and text files can also be displayed with IVs internal File View and Hex View windows.