Jump to content

archai2

Members
  • Posts

    15
  • Joined

  • Last visited

About archai2

  • Birthday 07/21/1956

Profile Information

  • Location
    Buenos Aires

Recent Profile Visitors

969 profile views

archai2's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. Thank you for this nice app. Please note that the compiled version throws an array subscript error when donwnloading.
  2. Very nice and useful. Perhaps you will add to the advanced search this Google link, which provides alternate search capabilities: http://www.google.com/advanced_search?q=+s...&as_qdr=all
  3. This simple html page will do the job. Replace 'C:/yourpath/refresh.htm' with the one you will use on your local machine. Replace 'http://www.google.com/' with the URL you like. Sorry AutoIt'ers. :"> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Frameset//EN" "http://www.w3.org/TR/REC-html40/frameset.dtd"> <html> <head> <title></title> <META HTTP-EQUIV="Refresh" CONTENT="10;URL=file:///C:/yourpath/refresh.htm"> </head> <frameset framespacing="0" border="0" frameborder="0"> <frame name="myframe" src="http://www.google.com/" scrolling="no" noresize target="myframe" marginwidth="0" marginheight="0"> <noframes> <body> <p>This page uses frames, but your browser doesn't support them.</p> </body> </noframes> </frameset> </html>
  4. Thank you @all of you who tried this out. @nfwu Thank you for pointing me the solution to get the stream out. With your indications I rewrote the script. Please note there is a limitation in size when streaming output. -- Updated script for download in my first post --
  5. Finally got this working in precarious condition. As said in my first post I can't figure out the correct usage of STDIN/STDOUT ... but this can only be done 'with a little help of my friends...' -- You can find the script on my first post. --
  6. Here is an intro:http://www.vbwm.com/articles/2002/abarfield/hta01/ If you google around you will find many tutorials and samples.
  7. ActiveX is intended for IE browsers. Why not create a simple .hta (hipertext application) page? With simple javascript or vbscript, as you prefer, you can create the downloader/run script. User is also asked if he likes to run this script locally.
  8. What I meant is that if I create an executable using this algorithm, and this is used in any commercial environment, end user has to be warned that he needs to acquire the corresponding license. So I prefer to start with license free software like blowfish and zlib. [edit] I tested the encryption of a 34.5 Mb access.mdb database w/default parameters on a P4 @2.4MHz Encryption took roughly 5 secs. ending in a 9.6 Mb encrypted file. De-encryption to original file took roughly 2 secs. (Comparison: I compressed the original file w/Winzip9 w/default settings: 4 secs. - 9.7 Mb decompression: 3 sec.) [/edit]
  9. Yes, I tested it.What makes bcrypt interesting is that it is license free and the inclusion of file compression and secure deletion. IDEA - according Wikipedia:
  10. Here is my IELoadWait 'helper' function and samples how I use them from other functions. Note the necessary page timeout feature for lazy pages or server downtime. Works for me. TODO: Error tracking should be improved. (w/ SetError()) TODO: Return to calling page on failure. Func _IELoadWait(ByRef $oIE, $iPageTimeout = 10) ;;TODO: Error tracking should be improved. (w/ SetError()) ;;TODO: Return to calling page on failure. Local $iTimeIni = TimerInit() While TimerDiff($iTimeIni) < $iPageTimeout * 1000;convert to miliseconds Sleep(50) If Not $oIE.busy Then If $oIE.readyState = "complete" Or $oIE.readyState = 4 Then Return (1 And Not @error) EndIf WEnd $oIE.Stop () ;$oIE.GoBack () Return (0) EndFunc ;==>_IEWait Func _IENavigate(ByRef $oIE, $sUrl, $iPageTimeout = 20) $oIE.navigate ($sUrl) Return (_IELoadWait($oIE, $iPageTimeout) And Not @error) EndFunc ;==>_IENavigate Func _IEFormSubmitByName(ByRef $oIE, $sFormName, $iPageTimeout = 40);increase when uploading files $oIE.document.getElementById ($sFormName).submit Return (_IELoadWait($oIE, $iPageTimeout) And Not @error) EndFunc ;==>_IEFormSubmitByName ;;... and so on ...;;
  11. Your EncryptOr is a very nice job. What type of encryption does the encrypt.com?I think it would a great tool if you add some license free strong algorithm like, perhaps blowfish.
  12. I found this nice and useful utility for file encryption: http://bcrypt.sourceforge.net/ but I can't figure out how to use STDIN/STDOUT to send the passphrase in. Can anybody help? EDIT: File uploaded. UPDATED (working script) bcrypt.au3 http://bcrypt.sourceforge.net/bcrypt-1.1.zip
×
×
  • Create New...