testingtest Posted May 25, 2007 Share Posted May 25, 2007 This is in effect what the script is doing (and catering for all those not-text Characters) as well as getting rid of the binary signatures that are used to detect file-types, this bypassing the filtersNo, Not directly, but you could creates a copy (fred.exe) then create your text file (in reality a batch file) end edit that to create the output filename you want. (check the attachment below)MakeChunks() ; select a a file and break it down into chunks (a little les that 40k per chunk)Makeit() ; create encbin & decbin (these are the magic bits)Top() ; create the header of the batch File this includes creating the decbin program that does the reconstructionBody() ; create the body of the File (this is what takes most of the time) take each chunk, convert it to text and append it to the end of either the header or previously converted chuncktail() ; the tailend some batch file code to get rid of most of temporary filestidy() ; a little tidying up. IMPORTANT.I use 'encbin.com' and 'decbin.com' to do the real workBoth of these are © Copyright 2002 Terry Newtonand have been released to the public domain.wow thanks that explains a lot you did a great job Link to comment Share on other sites More sharing options...
paullab Posted November 28, 2007 Author Share Posted November 28, 2007 Now updated to compile using version 3.2.10.0 of autoit as well as allowing non binary files to be encoded and e-mailed. It is now also a little faster that to a more correct use of the autoit file functions. Refer to the original post for the updated .au3 file. Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
icadea Posted December 1, 2007 Share Posted December 1, 2007 Simply great... thanks i needed this.. Link to comment Share on other sites More sharing options...
CoePSX Posted December 3, 2007 Share Posted December 3, 2007 This is really useful. I can see myself using this a lot to send executable files to people. Thanks a lot! Great work! [quote name='Valik' post='301213' date='Jan 31 2007, 10:36 PM']You seem to have a habit of putting things in the wrong place. I feel sorry for any female you attempt to have sex with.[/quote][font="Lucida Sans Unicode"]╔══════════════════════════════╗║░░██░░░░░░░░██░░███░░░████░░░█║║░█░░█░░██░░█░░█░█░░█░█░░░░█░█░║║░█░░░░█░░█░████░███░░░██░░░█░░║║░█░░█░█░░█░█░░░░█░░░░░░░█░█░█░║║░░██░░░██░░░██░░█░░░░███░█░░░█║╚══════════════════════════════╝[/font] Link to comment Share on other sites More sharing options...
Huggy Posted December 3, 2007 Share Posted December 3, 2007 (edited) Hi there!Actually I would say it's not working with Windows Vista!Screeny:Any ideas?Cheers,Huggy Edited December 3, 2007 by Huggy Link to comment Share on other sites More sharing options...
paullab Posted December 6, 2007 Author Share Posted December 6, 2007 Hi there!Actually I would say it's not working with Windows Vista!Any ideas?Cheers,HuggyI have successfully used this program on Vista Business (both to create the text file as well as extract the contents of a text file).Granted I was logged on as a machine administrator.Looking at the error message I would guess that it has something to do with you access/execution rights To me it looks like you are not allowed to start cmd.exe which is used by this program Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
icadea Posted December 9, 2007 Share Posted December 9, 2007 Simplicity at its best. Great work... thanks Link to comment Share on other sites More sharing options...
NELyon Posted December 9, 2007 Share Posted December 9, 2007 (edited) Hi there!Actually I would say it's not working with Windows Vista!Screeny:Any ideas?Cheers,HuggyThat message seems fishy, considering A) I've seen that exact same message from a virus and B: The message is in engligh, but your system is in a different language Edited December 9, 2007 by Senton-Bomb Link to comment Share on other sites More sharing options...
paullab Posted December 10, 2007 Author Share Posted December 10, 2007 I would suggest that you create a virtial machine sandbox (no access to you PC or the network.) Make sure that it is fully patched and AV is up to date and Autoit installed. search the web and make sure that you know what encbin & decbin do Amend the autoit cond not to call makechunks() i.e. not call cmd as well as changing Tidy() to not delete encbin.com and decbin.com and run your AV on this to satisfy yourself as to the behaviour as well as security of what you are doing. Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
Dizzy Posted December 11, 2007 Share Posted December 11, 2007 (edited) Hi! I get error messages when i rebuild the file - the output is ok. The errormessage: Cannot load VDM IPX/SPX support Any ideas? Thanks Dizzy Edited December 13, 2007 by Dizzy Link to comment Share on other sites More sharing options...
paullab Posted December 14, 2007 Author Share Posted December 14, 2007 I get error messages when i rebuild the file - the output is ok.Try reducing the $chunksize global to around 32k Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
MaudKip Posted December 14, 2007 Share Posted December 14, 2007 Oh my, this is quite useful. =] Link to comment Share on other sites More sharing options...
Dizzy Posted December 17, 2007 Share Posted December 17, 2007 Try reducing the $chunksize global to around 32kHmm - i reduced to 32000 and have the same error.Then i moved the script to a virtual maschine. And both versions (32k and 40k) worked fine. So the problem is anywhere in my real maschine. Only if you have a answer without work (don't waste time on it) : can you explain why the same script works without error in a virtual maschine and not on the host? ThxDizzy Link to comment Share on other sites More sharing options...
paullab Posted December 17, 2007 Author Share Posted December 17, 2007 Hmm - i reduced to 32000 and have the same error.Then i moved the script to a virtual machine. And both versions (32k and 40k) worked fine. So the problem is anywhere in my real maschine. Only if you have a answer without work (don't waste time on it) : can you explain why the same script works without error in a virtual maschine and not on the host? ThxDizzyThe only other thing I can suggest is that it may be due to differences on O/S between the Convertor & ConverteeTry compiling for ANSI that should work on most Wallpaper Rotatorwith overlay, Loop through a folder of wallpaper & another of overlay, then create a combined image and set it as the wallpaperE-Mail passthru, Send any file, even executables via e-mail as plain text. The recipient can then later re-construct them.Slideshow widget, A slideshow widget similar to the Vista onePredictive typing using the Numpad, Predictive typing using the numpad of a keyboar similar to that on a mobile phone (the key is the .t16 file).PSTools Front End, For Remote Admin. Just makes life a lot easier (Demonstrates executing external programs and passing parameters, tabbed form Handling STDIN/STDERR)FTP Helper application Up and Download files from an FTP server demonstrates this and Tooltray TipsShow a Map of your Post-codes/Zip Codes, Uses the Clipboard, Hotkeys, the system tray (incl. menus)Disc/CD/DVD Catalogue, Ideal for all those Covermount Discs (Demonstrates Array handling, executing DOS programs, handling STDIN/STDOUT recursive directory reads, file searching.)YAST , Yet another Stopwatch/Timer (Uses a hotkey, Copies to clipboard, handles multiple events and stays on top)Keyboard Status Indicator , Indicates status of NumLock, Caps Lock and Scroll Lock Keys, demonstrates API calling & System tray Icon Toggling Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now