work boots
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 5471
Work-From-Home 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-18 License: Freeware Price: Free
190 downloads
Dariks Boot and Nuke 1.0.7
Dariks Boot and Nuke is a boot floppy that wipes hard disks. more>>
Dariks Boot and Nuke is short DBAN is a self-contained boot floppy that securely wipes the hard disks of most computers.
DBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.
Main features:
- Free.
- Fast. Rapid deployment in emergency situations.
- Easy. Start the computer with DBAN and press the ENTER key.
- Safe. Irrecoverable data destruction. Prevents most forensic data recovery techniques.
Enhancements:
- SysLinux 2.13
- Linux 2.4.33
- LZMA 4.32
- uClibc 0.9.20
- Busybox 0.60.5
- Ncurses 5.3
- WinImage 8.0.8000
- dban-1.0.7 was compiled with Debian gcc-3.3 1:3.3.5-13
- This release is compressed with LZMA, which provides much more free space on the floppy disk. LSI MPT and I2O drivers were added.
- Thanks go to Igor Sobrado for reporting the "5220.22-M" typo.
- Thanks go to Dorina Lanza for reporting a block adjustment error.
<<lessDBAN will automatically and completely delete the contents of any hard disk that it can detect, which makes it an appropriate utility for bulk or emergency data destruction.
Main features:
- Free.
- Fast. Rapid deployment in emergency situations.
- Easy. Start the computer with DBAN and press the ENTER key.
- Safe. Irrecoverable data destruction. Prevents most forensic data recovery techniques.
Enhancements:
- SysLinux 2.13
- Linux 2.4.33
- LZMA 4.32
- uClibc 0.9.20
- Busybox 0.60.5
- Ncurses 5.3
- WinImage 8.0.8000
- dban-1.0.7 was compiled with Debian gcc-3.3 1:3.3.5-13
- This release is compressed with LZMA, which provides much more free space on the floppy disk. LSI MPT and I2O drivers were added.
- Thanks go to Igor Sobrado for reporting the "5220.22-M" typo.
- Thanks go to Dorina Lanza for reporting a block adjustment error.
Download (1.9MB)
Added: 2006-08-13 License: GPL (GNU General Public License) Price:
1193 downloads
Work-At-Home 1.0
The Ultimate Safe Money Guide -Free Online Money Guide Make Your Online Money The Safe Way And Generate a Daily Income Stream. The best thing I came ... more>> <<less
Download (2117KB)
Added: 2009-04-19 License: Freeware Price: Free
189 downloads
Gesk work 070109
Gesk work is a short cut of desk work. more>>
Gesk work is a short cut of desk work.
Application is for calculate times (sum) spend end on work on some tasks.
You can manage projects make backups and generate simple html contains from list of task time o start, end, state,... sum time and so one.
<<lessApplication is for calculate times (sum) spend end on work on some tasks.
You can manage projects make backups and generate simple html contains from list of task time o start, end, state,... sum time and so one.
Download (0.76MB)
Added: 2007-01-10 License: GPL (GNU General Public License) Price:
1017 downloads
boot-dvd 06
boot-dvd project contains a couple of Perl-scripts that can be used to create a custom DVD-ISO image. more>>
boot-dvd project contains a couple of Perl-scripts that can be used to create a custom DVD-ISO image (to be burned), that contains user selected Linux boot/live-CD images (only ISOLINUX boot loader supported) in a handy GRUB menu.
Enhancements:
- Many updates and bugfixes were made.
<<lessEnhancements:
- Many updates and bugfixes were made.
Download (0.097MB)
Added: 2007-08-20 License: GPL (GNU General Public License) Price:
808 downloads
TCCBOOT 0.1
TCCBOOT is a boot loader able to compile and boot a Linux kernel directly from its source code. more>>
TCCBOOT project is a boot loader able to compile and boot a Linux kernel directly from its source code.
TCCBOOT is only 138 KB big (uncompressed code) and it can compile and run a typical Linux kernel in less than 15 seconds on a 2.4 GHz Pentium 4.
TCCBOOT is based on the TinyCC compiler, assembler and linker. TinyCC is an experiment to produce a very small and simple C compiler compatible with the GNU C compiler and binary utilities.
TCCBOOT boots the same way as a Linux kernel, so any boot loader which can run a bzImage Linux kernel image can run TCCBOOT. I only tested it with ISOLINUX, but LILO or GRUB should work too.
TCCBOOT reads C or assembly sources from a gzipped ROMFS filesystem stored in an Initial Ram Disk (initrd). It first reads the file boot/tccargs which contains the TinyCC command line (same syntax as the tcc executable). The TinyCC invocation should output one binary image kernel. This image is loaded at address 0x00100000. TCCBOOT then does a jump to the address 0x00100000 in 32 bit flat mode. This is compatible with the ABI of the vmlinux kernel image.
Compilation:
TCCBOOT was only tested with Linux 2.4.26. In order to build TCCBOOT, you must first compile a 2.4.26 kernel because for simplicity TCCBOOT uses some binary files and headers from the Linux kernel. TCCBOOT also needs the source code of TinyCC (tested with TinyCC version 0.9.21). You can modify the Makefile to give the needed paths.
Example:
An "Hello World" ROMFS partition is included (initrd.img). You can rebuild it from the example/ directory. You can test it with the QEMU PC emulator with the qemu-tccboot script.
Kernel compilation:
For your information, the patch linux-2.4.26-tcc.patch gives the necessary modifications to build a Linux kernel with TCCBOOT (NOTE: it is not suffisant to build the kernel with its own Makefiles - I never tried). The corresponding kernel configuration is in file linux-2.4.26-config. Patches are necessary for the following reasons:
- unsupported assembly directives: .rept, .endr, .subsection
- #define __ASSEMBLY__ needed in assembly sources
- static variables cannot be seen from the inline assembly code
- typing/lvalue problems with ? :
- no long long bit fields
- aligned attribute not supported for whole structs, only for fields
- obscur preprocessor bug
Some of these problems could easily be fixed, but I am too lazy now. It is sure that there are still many bugs in the kernel generated by TinyCC/TCCBOOT, but at least it can boot and launch a shell.
<<lessTCCBOOT is only 138 KB big (uncompressed code) and it can compile and run a typical Linux kernel in less than 15 seconds on a 2.4 GHz Pentium 4.
TCCBOOT is based on the TinyCC compiler, assembler and linker. TinyCC is an experiment to produce a very small and simple C compiler compatible with the GNU C compiler and binary utilities.
TCCBOOT boots the same way as a Linux kernel, so any boot loader which can run a bzImage Linux kernel image can run TCCBOOT. I only tested it with ISOLINUX, but LILO or GRUB should work too.
TCCBOOT reads C or assembly sources from a gzipped ROMFS filesystem stored in an Initial Ram Disk (initrd). It first reads the file boot/tccargs which contains the TinyCC command line (same syntax as the tcc executable). The TinyCC invocation should output one binary image kernel. This image is loaded at address 0x00100000. TCCBOOT then does a jump to the address 0x00100000 in 32 bit flat mode. This is compatible with the ABI of the vmlinux kernel image.
Compilation:
TCCBOOT was only tested with Linux 2.4.26. In order to build TCCBOOT, you must first compile a 2.4.26 kernel because for simplicity TCCBOOT uses some binary files and headers from the Linux kernel. TCCBOOT also needs the source code of TinyCC (tested with TinyCC version 0.9.21). You can modify the Makefile to give the needed paths.
Example:
An "Hello World" ROMFS partition is included (initrd.img). You can rebuild it from the example/ directory. You can test it with the QEMU PC emulator with the qemu-tccboot script.
Kernel compilation:
For your information, the patch linux-2.4.26-tcc.patch gives the necessary modifications to build a Linux kernel with TCCBOOT (NOTE: it is not suffisant to build the kernel with its own Makefiles - I never tried). The corresponding kernel configuration is in file linux-2.4.26-config. Patches are necessary for the following reasons:
- unsupported assembly directives: .rept, .endr, .subsection
- #define __ASSEMBLY__ needed in assembly sources
- static variables cannot be seen from the inline assembly code
- typing/lvalue problems with ? :
- no long long bit fields
- aligned attribute not supported for whole structs, only for fields
- obscur preprocessor bug
Some of these problems could easily be fixed, but I am too lazy now. It is sure that there are still many bugs in the kernel generated by TinyCC/TCCBOOT, but at least it can boot and launch a shell.
Download (0.18MB)
Added: 2006-03-29 License: GPL (GNU General Public License) Price:
1306 downloads
U-Boot 1.1.6
U-Boot is a Universal Bootloader. more>>
U-Boot is a Universal Bootloader project that provides firmware with full source code under GPL.
Many CPU architectures are supported: PowerPC(MPC5xx, MPC8xx, MPC82xx, MPC7xx, MPC74xx, 4xx), ARM(ARM7, ARM9, StrongARM, Xscale), MIPS(4Kc,5Kc), x86.
Enhancements:
Support for new CPUs:
- AMCC 440SP
- ARM 946E
- NetSilicon NS7520
Support for new boards:
- AMCC Luan 440SP
- AMD Pb1x00
- AP1000
- Armadillo HT1070
- Barco SCN
- Barco SVC
- Cogent csb637
- esd CMS700
- esd CPCI2DP
- esd cpci5200
- esd pf5200
- IFM o2dnt
- KwikByte KB920x
- MP2USB
- Sandburst Karef
- Sandburst Metrobox
- Silicon Turnkey eXpress XTc
- TQ Components TQM834x
- TQ Components TQM8541
- TQ Components TQM8555
- Vibren PXA255 IDP
- Support for GCC-4.x
- Support for multiple PHYs
- Support for passing Open Firmware flat trees to the Linux kernel
- Generic 4xx_enet.c driver for all 4xx CPUs
- Uniform support for all AMCC eval boards
- Xilinx Spartan3 family FPGA support
- Major cleanup ARM Integrator boards
- Changed all $(...) variable references into ${...}
<<lessMany CPU architectures are supported: PowerPC(MPC5xx, MPC8xx, MPC82xx, MPC7xx, MPC74xx, 4xx), ARM(ARM7, ARM9, StrongARM, Xscale), MIPS(4Kc,5Kc), x86.
Enhancements:
Support for new CPUs:
- AMCC 440SP
- ARM 946E
- NetSilicon NS7520
Support for new boards:
- AMCC Luan 440SP
- AMD Pb1x00
- AP1000
- Armadillo HT1070
- Barco SCN
- Barco SVC
- Cogent csb637
- esd CMS700
- esd CPCI2DP
- esd cpci5200
- esd pf5200
- IFM o2dnt
- KwikByte KB920x
- MP2USB
- Sandburst Karef
- Sandburst Metrobox
- Silicon Turnkey eXpress XTc
- TQ Components TQM834x
- TQ Components TQM8541
- TQ Components TQM8555
- Vibren PXA255 IDP
- Support for GCC-4.x
- Support for multiple PHYs
- Support for passing Open Firmware flat trees to the Linux kernel
- Generic 4xx_enet.c driver for all 4xx CPUs
- Uniform support for all AMCC eval boards
- Xilinx Spartan3 family FPGA support
- Major cleanup ARM Integrator boards
- Changed all $(...) variable references into ${...}
Download (5.5MB)
Added: 2006-11-03 License: GPL (GNU General Public License) Price:
686 downloads
SLAX Boot CD 5.1.8
SLAX Boot CD is used to boot SLAX from USB devices on computers which cant boot from USB directly. more>>
SLAX Boot CD is used to boot SLAX from USB devices on computers which cant boot from USB directly. SLAX Boot CD can be also used to boot SLAX from ISO file on disk.
Enhancements:
- added KDE 3.5.4 with Slackware 11 fixes for media:/ URL in konqueror
- probeusb parameter now sleeps delay_use+1 seconds to wait for USB devices
- (this usually defaults to 6 seconds)
- fixed fuse libraries, which were missing in rc1 version
- added newest NTFS-3g beta version, NTFS writing now works, I hope
<<lessEnhancements:
- added KDE 3.5.4 with Slackware 11 fixes for media:/ URL in konqueror
- probeusb parameter now sleeps delay_use+1 seconds to wait for USB devices
- (this usually defaults to 6 seconds)
- fixed fuse libraries, which were missing in rc1 version
- added newest NTFS-3g beta version, NTFS writing now works, I hope
Download (5.0MB)
Added: 2006-10-09 License: GPL (GNU General Public License) Price:
1129 downloads
Bootchart 0.9
Bootchart is a tool for analysis and visualization of the GNU/Linux boot process. more>>
Bootchart is a software for performance analysis and visualization of the GNU/Linux boot process. Resource utilization and process information are collected during the boot process and can later be displayed in a PNG, SVG or EPS-encoded chart.
The boot process is modified to start the boot logger (/sbin/bootchartd) instead of /sbin/init. The boot logger will run in background and collect information from the proc file system (/proc/[PID]/stat, /proc/stat and /proc/diskstats).
The statistics are logged to a virtual memory file system (tmpfs). Once the boot process completes (denoted by the existence of specific processes), the log files are packaged to /var/log/bootchart.tgz.
The log package can later be processed using a Java application which builds the process tree and renders a performance chart. The chart may then be analyzed to examine process dependency and overall resource utilization. A renderer web form is also available on the project web site.
The chart can then be analyzed to examine process dependency and overall resource utilization.
Runing:
1. Install bootchartd and the bootchart renderer. See INSTALL for details.
2. Modify your boot loader (GRUB/LILO) if necessary. Alternatively, change the kernel command line interactively upon reboot.
Reboot.
3. Verify that /var/log/bootchart.tgz was created and contains the log files.
4. Render the chart by running:
$ java -jar bootchart.jar
Alternatively (if no Java Development Kit is installed to build the JAR package), the web renderer may be used.
To use the web renderer from a script, run:
curl --form format=svg --form log=@/var/log/bootchart.tgz
http://bootchart.klika.si:8080/bootchart/render > bootchart.svgz
(optionally replacing the svg/bootchart.svgz pair with png/bootchart.png or eps/bootchart.eps.gz)
5. View the generated image and analyze the chart.
SVG images may be viewed using any of the following programs:
- rsvg-view (librsvg; GNOME)
- svgdisplay (ksvg; KDE)
- Gimp (using the gimp-svg plugin)
- Inkscape
- Squiggle (Batik; http://xml.apache.org/batik/)
To get help for additional options, run:
$ java -jar bootchart -h
How it works:
Logger Startup
The boot logger (/sbin/bootchartd) is run by the kernel instead of /sbin/init. This can be achieved by modifying the GRUB or LILO kernel command line, e.g.:
/boot/grub/menu.lst
[...]
title Fedora Core (2.6.10) - bootchart
root (hd0,1)
kernel /vmlinuz-2.6.10 ro root=/dev/hda1 init=/sbin/bootchartd
initrd /initrd-2.6.10.img
The installation script and RPM package will try to add the boot loader entry automatically.
The boot logger will start itself in the background and immediately run the default init process, /sbin/init. The boot process will then continue as usual.
Data Collection
Since the root partition is mounted read-only during boot, the logger needs to store data in memory, using a virtual memory file system (tmpfs).
As soon as the /proc file system is mounted usually early in the sysinit script the logger will start collecting output from various files:
/proc/stat system-wide CPU statistics: user, system, IO and idle times
/proc/diskstats system-wide disk statistics: disk utilization and throughput
(only available in 2.6 kernels)
/proc/[PID]/stat information about the running processes: start time, parent PID, process state, CPU usage, etc.
The contents of these files are periodically appended to corresponding log files, every 0.2 seconds by default.
The logger will try to detect the end of the boot process by looking for specific processes. For example, when in runlevel 5 (multi-user graphical mode), it will look for gdmgreeter, kdm_greet, etc. As soon as one of these processes is found running, the logger will stop collecting data, package the log files and store them to /var/log/bootchart.tgz.
Optional Process Accounting
In most cases, the output from /proc/[PID]/stat files suffices to recreate the process tree. It is possible however, that a short-lived process will not get picked up by the logger. If that process also forks new processes, the logger will lack dependency information for these "orphaned" processes meaning that they might get incorrectly grouped by the chart renderer.
When truly accurate dependency information is required, process accounting may be utilized. If configured, the kernel will keep a log file with detailed information about processes. BSD process accounting v3 includes information about the process PID and parent PID (PPID) effectively enabling an accurate reconstruction of the process tree.
To enable process accounting, the kernel needs to be configured to include CONFIG_BSD_PROCESS_ACCT_V3, under:
[ ] General setup
[ ] BSD Process Accounting
[ ] BSD Process Accounting version 3 file format
The GNU accounting utilities (package psacct or acct) also need to be installed. The boot logger will use the accton command to enable process accounting; it will include the accounting log in the tarball.
Visualization
The log tarball is later passed to the Java application for parsing and rendering the data. The CPU and disk statistics are used to render stacked area and line charts. The process information is used to create a Gantt chart showing process dependency, states and CPU usage.
A typical boot sequence consists of several hundred processes. Since it is difficult to visualize such amount of data in a comprehensible way, tree pruning is utilized. Idle background processes and short-lived processes are removed. Similar processes running in parallel are also merged together.
Finally, the performance and dependency charts are renderer as a single image in either PNG, SVG or EPS format.
<<lessThe boot process is modified to start the boot logger (/sbin/bootchartd) instead of /sbin/init. The boot logger will run in background and collect information from the proc file system (/proc/[PID]/stat, /proc/stat and /proc/diskstats).
The statistics are logged to a virtual memory file system (tmpfs). Once the boot process completes (denoted by the existence of specific processes), the log files are packaged to /var/log/bootchart.tgz.
The log package can later be processed using a Java application which builds the process tree and renders a performance chart. The chart may then be analyzed to examine process dependency and overall resource utilization. A renderer web form is also available on the project web site.
The chart can then be analyzed to examine process dependency and overall resource utilization.
Runing:
1. Install bootchartd and the bootchart renderer. See INSTALL for details.
2. Modify your boot loader (GRUB/LILO) if necessary. Alternatively, change the kernel command line interactively upon reboot.
Reboot.
3. Verify that /var/log/bootchart.tgz was created and contains the log files.
4. Render the chart by running:
$ java -jar bootchart.jar
Alternatively (if no Java Development Kit is installed to build the JAR package), the web renderer may be used.
To use the web renderer from a script, run:
curl --form format=svg --form log=@/var/log/bootchart.tgz
http://bootchart.klika.si:8080/bootchart/render > bootchart.svgz
(optionally replacing the svg/bootchart.svgz pair with png/bootchart.png or eps/bootchart.eps.gz)
5. View the generated image and analyze the chart.
SVG images may be viewed using any of the following programs:
- rsvg-view (librsvg; GNOME)
- svgdisplay (ksvg; KDE)
- Gimp (using the gimp-svg plugin)
- Inkscape
- Squiggle (Batik; http://xml.apache.org/batik/)
To get help for additional options, run:
$ java -jar bootchart -h
How it works:
Logger Startup
The boot logger (/sbin/bootchartd) is run by the kernel instead of /sbin/init. This can be achieved by modifying the GRUB or LILO kernel command line, e.g.:
/boot/grub/menu.lst
[...]
title Fedora Core (2.6.10) - bootchart
root (hd0,1)
kernel /vmlinuz-2.6.10 ro root=/dev/hda1 init=/sbin/bootchartd
initrd /initrd-2.6.10.img
The installation script and RPM package will try to add the boot loader entry automatically.
The boot logger will start itself in the background and immediately run the default init process, /sbin/init. The boot process will then continue as usual.
Data Collection
Since the root partition is mounted read-only during boot, the logger needs to store data in memory, using a virtual memory file system (tmpfs).
As soon as the /proc file system is mounted usually early in the sysinit script the logger will start collecting output from various files:
/proc/stat system-wide CPU statistics: user, system, IO and idle times
/proc/diskstats system-wide disk statistics: disk utilization and throughput
(only available in 2.6 kernels)
/proc/[PID]/stat information about the running processes: start time, parent PID, process state, CPU usage, etc.
The contents of these files are periodically appended to corresponding log files, every 0.2 seconds by default.
The logger will try to detect the end of the boot process by looking for specific processes. For example, when in runlevel 5 (multi-user graphical mode), it will look for gdmgreeter, kdm_greet, etc. As soon as one of these processes is found running, the logger will stop collecting data, package the log files and store them to /var/log/bootchart.tgz.
Optional Process Accounting
In most cases, the output from /proc/[PID]/stat files suffices to recreate the process tree. It is possible however, that a short-lived process will not get picked up by the logger. If that process also forks new processes, the logger will lack dependency information for these "orphaned" processes meaning that they might get incorrectly grouped by the chart renderer.
When truly accurate dependency information is required, process accounting may be utilized. If configured, the kernel will keep a log file with detailed information about processes. BSD process accounting v3 includes information about the process PID and parent PID (PPID) effectively enabling an accurate reconstruction of the process tree.
To enable process accounting, the kernel needs to be configured to include CONFIG_BSD_PROCESS_ACCT_V3, under:
[ ] General setup
[ ] BSD Process Accounting
[ ] BSD Process Accounting version 3 file format
The GNU accounting utilities (package psacct or acct) also need to be installed. The boot logger will use the accton command to enable process accounting; it will include the accounting log in the tarball.
Visualization
The log tarball is later passed to the Java application for parsing and rendering the data. The CPU and disk statistics are used to render stacked area and line charts. The process information is used to create a Gantt chart showing process dependency, states and CPU usage.
A typical boot sequence consists of several hundred processes. Since it is difficult to visualize such amount of data in a comprehensible way, tree pruning is utilized. Idle background processes and short-lived processes are removed. Similar processes running in parallel are also merged together.
Finally, the performance and dependency charts are renderer as a single image in either PNG, SVG or EPS format.
Download (0.29MB)
Added: 2005-11-14 License: GPL (GNU General Public License) Price:
1441 downloads
Ethwireck 1.2
Laptops which use dynamic IP address assignment via DHCP have the problem that the boot process is much longer. more>>
Laptops which use dynamic IP address assignment via DHCP have the problem that the boot process is much longer when no wire is connected to the Ethernet card. This is because the startup scripts have to wait for the DHCP request to time out.
ethwireck can detect if the physical layer of the Ethernet is up. This can then be used in the init script for your network card to determine whether or not an interface should be brought up. In other words a timeout is avoided.
ethwireck is similar to mii-tool but it can work with more ethernet cards (not only drivers with an mii interface).
Note: I discovered recently that ethwireck does not work with all cards as expected. The problem seems to be that some cards support the interface but do not report the status as expected. I am currently invesitgating this problem. Wait for ethwireck-1.3.
To install it:
run
make
make install
or to not install to /usr/sbin/ethwireck but to /opt you can use
make PREFIX=/opt install
So far I have tested ethwireck only with 2.4.x Kernels. Probably
it will also work with 2.6.x Kernels but I have not used it
on a 2.6.x Kernel.
<<lessethwireck can detect if the physical layer of the Ethernet is up. This can then be used in the init script for your network card to determine whether or not an interface should be brought up. In other words a timeout is avoided.
ethwireck is similar to mii-tool but it can work with more ethernet cards (not only drivers with an mii interface).
Note: I discovered recently that ethwireck does not work with all cards as expected. The problem seems to be that some cards support the interface but do not report the status as expected. I am currently invesitgating this problem. Wait for ethwireck-1.3.
To install it:
run
make
make install
or to not install to /usr/sbin/ethwireck but to /opt you can use
make PREFIX=/opt install
So far I have tested ethwireck only with 2.4.x Kernels. Probably
it will also work with 2.6.x Kernels but I have not used it
on a 2.6.x Kernel.
Download (0.047MB)
Added: 2006-06-24 License: GPL (GNU General Public License) Price:
1217 downloads
FCCU GNU/Linux Forensic Boot CD 11.0
FCCU GNU/Linux Forensic Bootable CD is a bootable CD based on KNOPPIX. more>>
FCCU GNU/Linux Forensic Bootable CD is a bootable CD based on KNOPPIX that contains a lot of tools suitable for computer forensic investigatins, including bash scripts.
FCCU GNU/Linux Forensic Boot CDs main purpose is to create images of devices prior to analysis, and it is used by the Belgian Federal Computer Crime Unit.
Main features:
- This CD is based on KNOPPIX by Klauss Knopper.
- It is a remaster that I made to use at my work as a computer forensic investigator.
- Its main purpose is to create images copies of devices before analyse.
- It does not use a lot of cpu cycles for unnecessary programs, that is why it drops you to a shell right after the boot.
- It recognizes lots of hardware (Thanks to Klauss Knopper).
- It leaves the target devices unaltered (It does not use the swap partitions found on the devices).
- It contains a lot of tools with forensic purpose.
Enhancements:
- This release adds a new set of tools that allow an investigator to capture the memory from another host trough the Firewire bus, even if the target host is an MS Windows box.
- A new tool to retrieve images from Thumbs.db (MS win thumbnails cache) was added.
- Rdd, a new forensic image acquisition tool, was added.
- A lot of other tools were added and upgraded.
<<lessFCCU GNU/Linux Forensic Boot CDs main purpose is to create images of devices prior to analysis, and it is used by the Belgian Federal Computer Crime Unit.
Main features:
- This CD is based on KNOPPIX by Klauss Knopper.
- It is a remaster that I made to use at my work as a computer forensic investigator.
- Its main purpose is to create images copies of devices before analyse.
- It does not use a lot of cpu cycles for unnecessary programs, that is why it drops you to a shell right after the boot.
- It recognizes lots of hardware (Thanks to Klauss Knopper).
- It leaves the target devices unaltered (It does not use the swap partitions found on the devices).
- It contains a lot of tools with forensic purpose.
Enhancements:
- This release adds a new set of tools that allow an investigator to capture the memory from another host trough the Firewire bus, even if the target host is an MS Windows box.
- A new tool to retrieve images from Thumbs.db (MS win thumbnails cache) was added.
- Rdd, a new forensic image acquisition tool, was added.
- A lot of other tools were added and upgraded.
Download (609.2MB)
Added: 2006-10-19 License: GPL (GNU General Public License) Price:
1119 downloads
IOSN Live CD beta
IOSN Live CD is an bootable CD that boots into a usable and fully featured Linux Desktop. more>>
IOSN Live CD is an bootable CD that boots into a usable and fully featured Linux Desktop. In addition to standard FOSS productivity and multimedia applications, it is bundled with a User Guide to Using the Linux Desktop in print and multimedia formats as well as several IOSN Free/Open Source Software Primers.
Note: This is a beta release.
<<lessNote: This is a beta release.
Download (620MB)
Added: 2005-08-30 License: GPL (GNU General Public License) Price:
1516 downloads
yoursql 0.3
yoursql project is a mysql version fingerprint tool written in C. more>>
yoursql project is a mysql version fingerprint tool written in C.
This will only work on hosts that actually let you connect, if you are blocked by an ACL, this wont work.
<<lessThis will only work on hosts that actually let you connect, if you are blocked by an ACL, this wont work.
Download (0.003MB)
Added: 2007-06-13 License: GPL (GNU General Public License) Price:
865 downloads
Fastdeploy 0.3 Beta
Fastdeploy is a Web-based system that works with various operating systems automated installer scripting and/or semantics. more>>
Fastdeploy is a Web-based system that works with various operating systems automated installer scripting and/or semantics (e.g., Kickstart, Preseeding, Windows Unattended, etc.) to completely automate the process of installing operating systems and related server software.
The project is designed to work using PXE network booting rather than CD/DVD based solutions so you can fully automate your infrastructure without needlessly burning CDs.
How does it work?
FastDeploy focuses most of its efforts at supporting the automation capabilities inherent with the installer mechanisms available with each operating system. This means we support Kickstart, Preseeding, and the unattended features of Windows. Its highly probable just about any other automated scripting can be supported.
Using a Web-based interface you can choose the options you want to automatically install (e.g., hostname, domain, IP address, server software to install/configure, etc.) then you PXE boot off your network card and the installation process occurs automatically, without user intervention.
<<lessThe project is designed to work using PXE network booting rather than CD/DVD based solutions so you can fully automate your infrastructure without needlessly burning CDs.
How does it work?
FastDeploy focuses most of its efforts at supporting the automation capabilities inherent with the installer mechanisms available with each operating system. This means we support Kickstart, Preseeding, and the unattended features of Windows. Its highly probable just about any other automated scripting can be supported.
Using a Web-based interface you can choose the options you want to automatically install (e.g., hostname, domain, IP address, server software to install/configure, etc.) then you PXE boot off your network card and the installation process occurs automatically, without user intervention.
Download (1.1MB)
Added: 2007-04-19 License: BSD License Price:
918 downloads
Slackware Interactive Boot Scripts 12.0.0
Slackware Interactive Boot Scripts is an enhanced set of replacement boot scripts for the Slackware Linux distribution. more>>
slakbootIBS (Slackware Interactive Boot Scripts) is an enhanced set of replacement boot scripts for the Slackware Linux distribution.
Slackware Interactive Boot Scripts includes a set of control and dispatch tools for configuring and booting with colorized interactive scripts. The new boot process allows the operator to select or skip start-up components in realtime.
It facilitates debugging of startup problems and allows operators to maintain a common baseline to support several local configurations or multiple servers with a single set of scripts.
<<lessSlackware Interactive Boot Scripts includes a set of control and dispatch tools for configuring and booting with colorized interactive scripts. The new boot process allows the operator to select or skip start-up components in realtime.
It facilitates debugging of startup problems and allows operators to maintain a common baseline to support several local configurations or multiple servers with a single set of scripts.
Download (0.17MB)
Added: 2007-07-14 License: Free for non-commercial use Price:
832 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 work boots 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