[TOOL] DumpHex - Convert a File to Hex Dump

From: SecuriTeam (support_at_securiteam.com)
Date: 07/27/05

  • Next message: SecuriTeam: "[TOOL] WriteBin - Convert Hex Dump to Binary"
    To: list@securiteam.com
    Date: 27 Jul 2005 14:39:28 +0200
    
    

    The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com
    - - promotion

    The SecuriTeam alerts list - Free, Accurate, Independent.

    Get your security news from a reliable source.
    http://www.securiteam.com/mailinglist.html

    - - - - - - - - -

      DumpHex - Convert a File to Hex Dump
    ------------------------------------------------------------------------

    SUMMARY

    DETAILS

    DumpHex is a tool that converts any binary file into an hex dump and save
    it into a file.

    #
    # DumpHex v1.0 | Reed Arvin reedarvin[at]gmail[dot]com
    #
    # Usage:
    # DumpHex.pl <file name>
    # DumpHex.pl MyBin.exe
    #
    ############################

    use strict;

    my($strInputFile) = $ARGV[0];
    my($intByteCount) = "";
    my($binBytes) = "";
    my($intReadLength) = "";

    if ($#ARGV ne "0")
    {
     print "DumpHex v1.0 | Reed Arvin reedarvin[at]gmail[dot]com\n";
     print "\n";
     print "Usage:\n";
     print "DumpHex.pl <file name>\n";
     print "DumpHex.pl MyBin.exe\n";

     exit;
    }

    $intReadLength = 16;

    if (open(INPUTFILE, "< $strInputFile"))
    {
     open(OUTPUTFILE, "> $strInputFile.txt");

     binmode(INPUTFILE);

     $intByteCount = 0;

     while (read(INPUTFILE, $binBytes, $intReadLength))
     {
      print (OUTPUTFILE uc(unpack("H" . ($intReadLength * 2), $binBytes)),
    "\n");
     }

     close(INPUTFILE);
     close(OUTPUTFILE);
    }
    else
    {
     print "ERROR! Cannot open file $strInputFile";
    }

    # Written by Reed Arvin reedarvin[at]gmail[dot]com

    ADDITIONAL INFORMATION

    The information has been provided by <mailto:reedarvin@gmail.com> Reed
    Arvin.
    To keep updated with the tool visit the project's homepage at:
    <http://reedarvin.thearvins.com/tools.html>
    http://reedarvin.thearvins.com/tools.html

    ========================================

    This bulletin is sent to members of the SecuriTeam mailing list.
    To unsubscribe from the list, send mail with an empty subject line and body to: list-unsubscribe@securiteam.com
    In order to subscribe to the mailing list, simply forward this email to: list-subscribe@securiteam.com

    ====================
    ====================

    DISCLAIMER:
    The information in this bulletin is provided "AS IS" without warranty of any kind.
    In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages.


  • Next message: SecuriTeam: "[TOOL] WriteBin - Convert Hex Dump to Binary"

    Relevant Pages

    • [TOOL] Binhex - Convert Files Generated by Xbin or Macget Into BinHex Format
      ... The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com ... This utility converts Mac Bin Hex files to BinHex format ... The information in this bulletin is provided "AS IS" without warranty of any kind. ...
      (Securiteam)
    • [EXPL] phpBB Remote PHP Code Execution (viewtopic.php 2)
      ... The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com ... The following exploit code utilizes a vulnerability in phpBB to cause ... This bulletin is sent to members of the SecuriTeam mailing list. ... In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages. ...
      (Securiteam)
    • [NT] Microsoft Windows GDI+ Gradient Fill Heap Overflow Vulnerability
      ... The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com ... Microsoft Windows GDI+ Gradient Fill Heap Overflow Vulnerability ... consult their bulletin at the ...
      (Securiteam)
    • [EXPL] TinyWeb Server DoS Exploit
      ... The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com ... The information in this bulletin is provided "AS IS" without warranty of any kind. ... In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages. ...
      (Securiteam)
    • [EXPL] 3Com FTP Server Buffer Overflow (CD)
      ... The following security advisory is sent to the securiteam mailing list, and can be found at the SecuriTeam web site: http://www.securiteam.com ... overflow in its parsing of the 'CD' command. ... The information in this bulletin is provided "AS IS" without warranty of any kind. ... In no event shall we be liable for any damages whatsoever including direct, indirect, incidental, consequential, loss of business profits or special damages. ...
      (Securiteam)