Ethical Hacking Learn to find vulnerabilities before the bad guys do! Gain real world hands on hacking experience in our state of the art hacking lab. Course designed and taught by expert instructors with years of penetration testing experience. 12 student maximum in every class. Certification attempt included in every package. | Computer Forensics Training at InfoSec Institute Gain the in-demand skills of a certified computer examiner, learn to recover trace data left behind by fraud, theft, and cybercrime perpetrators. Discover the source of computer crime and abuse at your organization so that it never happens again. All of our class sizes are guaranteed to be 12 students or less to facilitate one-on-one interaction with one of our expert instructors. |

| Subject: | [TOOL] WriteBin - Convert Hex Dump to Binary |
|---|---|
| Date: | 27 Jul 2005 14:37:54 +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 - - - - - - - - - WriteBin - Convert Hex Dump to Binary ------------------------------------------------------------------------ SUMMARY DETAILS WriteBin is a tool that converts an hex dump file into its a binary form and save it as a file. Tool: # # WriteBin v1.0 | Reed Arvin reedarvin[at]gmail[dot]com # # Usage: # WriteBin.pl <file name> # WriteBin.pl MyBin.exe.txt # ############################ use strict; my($strInputFile) = $ARGV[0]; my($intByteCount) = ""; my($strBytes) = ""; if ($#ARGV ne "0") { print "WriteBin v1.0 | Reed Arvin reedarvin[at]gmail[dot]com\n"; print "\n"; print "Usage:\n"; print "WriteBin.pl <file name>\n"; print "WriteBin.pl MyBin.exe.txt\n"; exit; } if (open(INPUTFILE, "< $strInputFile")) { open(OUTPUTFILE, "> new_" . substr($strInputFile, 0, (length($strInputFile) - 4))); binmode(OUTPUTFILE); $intByteCount = 0; while (<INPUTFILE>) { $strBytes = $_; chop($strBytes); print (OUTPUTFILE pack("H" . length($strBytes), $strBytes)); } close(INPUTFILE); close(OUTPUTFILE); } else { print "ERROR! Cannot open file $strInputFile\n"; } # 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.
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | [TOOL] DumpHex - Convert a File to Hex Dump, SecuriTeam |
|---|---|
| Next by Date: | [EXPL] FtpLocate Command Execution (Exploit), SecuriTeam |
| Previous by Thread: | [TOOL] DumpHex - Convert a File to Hex Dump, SecuriTeam |
| Next by Thread: | [EXPL] FtpLocate Command Execution (Exploit), SecuriTeam |
| Indexes: | [Date] [Thread] [Top] [All Lists] |