Psibernetic Posted January 12, 2007 Share Posted January 12, 2007 (edited) SecuracySecuracy is the succesor to X-Hide, the name Securacy is a blending of the words security and privacy. X-Hide provided privacy, but lacked in extreme security, therefore IDEA encryption was added. Also a new more pleasing GUI is available with Securacy, than was used with X-Hide.Securacy zips the file or folder chosen, encrypts that zip using IDEA encryption, and finally hides the zip by applying System and hidden attributes to a file/folder.----Change Log----(0.9.3) Beta *Fixed -regsvr32 of XZip Dll not working correctly on different computers (0.9.2) Beta *Added: -Error Checking in blank file path box *Fixed: -Folder filename handling -Error in IDEA encryption passing filenames(0.9.1) Beta *Initial Release, all changes internal development before this releaseSecuracy_0_9_3.zip Edited January 23, 2007 by Psibernetic [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
PartyPooper Posted January 13, 2007 Share Posted January 13, 2007 Failed straight up for me - asked for a password which I haven't been set yet. Link to comment Share on other sites More sharing options...
Psibernetic Posted January 13, 2007 Author Share Posted January 13, 2007 Failed straight up for me - asked for a password which I haven't been set yet.Haha sorry bout that... man I was really in a hurry lol I had to get home quick before weather got too bad..sorry for the issue ill fix it immediately also sorry to the other 28 downloaders :-/ [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
PartyPooper Posted January 13, 2007 Share Posted January 13, 2007 Thanks. I'll download and test it again. Link to comment Share on other sites More sharing options...
PartyPooper Posted January 13, 2007 Share Posted January 13, 2007 Need to allow it to hide directories other than those under C:. I would also add checks to ensure it's only HDD directories and not CD/DVD directories that you are trying to hide. Link to comment Share on other sites More sharing options...
McGod Posted January 13, 2007 Share Posted January 13, 2007 One easy exploit with this is that the password is easily unencryptable. Meaning that you can find the password and get the file. [indent][center][u]Formerly Chip[/u][/center]~UDFs~[/indent][u]IRC.au3 - Allows you to connect to IRC ServersINetCon.au3 - Connects/Disconnects/Check Status of InternetHardware Key - Creates a unique hardware hashScriptComm - Allows you to communicate between scripts using WM_COPYDATA[/u][indent]~Programs~[/indent][indent]SimonAu3ForumsIRC Bot~Web Site~Web Autoit Example[/indent][indent][b][/b][/indent][u][/u] Link to comment Share on other sites More sharing options...
Psibernetic Posted January 14, 2007 Author Share Posted January 14, 2007 (edited) One easy exploit with this is that the password is easily unencryptable. Meaning that you can find the password and get the file. Chip: Any ideas of make this less exploitable?PartyPooper: I certainly do need to add that, do you know of any UDF's for multi-Drive folder selection? Edited January 14, 2007 by Psibernetic [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
McGod Posted January 14, 2007 Share Posted January 14, 2007 _StringEncrypt(1,$xEncryptPassword,"PsiPhi",2) to _StringEncrypt(1,"PsiPhi", $xEncryptPassword,2) So you encrypt the word PsiPhi by the password not the other way around. [indent][center][u]Formerly Chip[/u][/center]~UDFs~[/indent][u]IRC.au3 - Allows you to connect to IRC ServersINetCon.au3 - Connects/Disconnects/Check Status of InternetHardware Key - Creates a unique hardware hashScriptComm - Allows you to communicate between scripts using WM_COPYDATA[/u][indent]~Programs~[/indent][indent]SimonAu3ForumsIRC Bot~Web Site~Web Autoit Example[/indent][indent][b][/b][/indent][u][/u] Link to comment Share on other sites More sharing options...
PartyPooper Posted January 14, 2007 Share Posted January 14, 2007 (edited) Try: case $xBrowseMethod=1 $xRetrievedPath=FileOpenDialog("Choose your file to hide/unhide...", "", "All (*.*)", 1+2+4+8) ControlSetText("","",$xFilePath, $xRetrievedPath) case $xBrowseMethod=2 $xRetrievedPath=FileSelectFolder("Choose your directory to hide/unhide...", "") ControlSetText("","",$xFilePath, $xRetrievedPath) Edit: codeblock is useless Edited January 14, 2007 by PartyPooper Link to comment Share on other sites More sharing options...
Psibernetic Posted January 14, 2007 Author Share Posted January 14, 2007 Try: case $xBrowseMethod=1 $xRetrievedPath=FileOpenDialog("Choose your file to hide/unhide...", "", "All (*.*)", 1+2+4+8) ControlSetText("","",$xFilePath, $xRetrievedPath) case $xBrowseMethod=2 $xRetrievedPath=FileSelectFolder("Choose your directory to hide/unhide...", "") ControlSetText("","",$xFilePath, $xRetrievedPath)Edit: codeblock is useless..ya suprisingly the FileSelectFolder() only supports C:\ that should be changed in next version...perhaps I will request it [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Psibernetic Posted January 14, 2007 Author Share Posted January 14, 2007 (edited) _StringEncrypt(1,$xEncryptPassword,"PsiPhi",2)to_StringEncrypt(1,"PsiPhi", $xEncryptPassword,2)So you encrypt the word PsiPhi by the password not the other way around.Then the passwod PsiPhi is forced as the system level password, in other words no matter wat password u set on the first-run, it will always be decrypted to PsiPhi, wouldnt generate a problem also? Edited January 14, 2007 by Psibernetic [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Moderators SmOke_N Posted January 14, 2007 Moderators Share Posted January 14, 2007 ..ya suprisingly the FileSelectFolder() only supports C:\ that should be changed in next version...perhaps I will request it Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer. Link to comment Share on other sites More sharing options...
phantom Posted January 14, 2007 Share Posted January 14, 2007 (edited) At the moment it's creating another folder in same directory as the one I'm trying to hide and calls it "(file/folder name)PsiE_N" and the original file/folder stays the same. EDIT: to make the FileSelectFolder() show more than just C:/ change it to FileSelectFolder("", "C:\"& @CommonFilesDir) Edited January 14, 2007 by phantom Link to comment Share on other sites More sharing options...
Psibernetic Posted January 14, 2007 Author Share Posted January 14, 2007 (edited) At the moment it's creating another folder in same directory as the one I'm trying to hide and calls it "(file/folder name)PsiE_N" and the original file/folder stays the same.EDIT: to make the FileSelectFolder() show more than just C:/ change it to FileSelectFolder("", "C:\"& @CommonFilesDir)Ya thats an error I havent submitted the fix to yet, it has to do with the filename processing and lack of folder enryption... I would recommend not using folder securing for the moment sorry for the inconveience....I am working diligently...1 person is a small workforce...anyone wanna be a co-author?Also thank you for that snippet it fixed the problem Edited January 14, 2007 by Psibernetic [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Psibernetic Posted January 16, 2007 Author Share Posted January 16, 2007 News Update: srry for the lack of a release.. we have been having our power go on and off with our winter stor... still workiing hard hope to release soon.. I didnt receive help from RazorM on the encryption so I am stuudying it now hope to keep you guys interested [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Psibernetic Posted January 19, 2007 Author Share Posted January 19, 2007 Finally Securacy Beta r2 is available!!!! feedback is highly appreciated!! also sorry for the lack of release...encountered unknown errors..severe debugging was required [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Psibernetic Posted January 23, 2007 Author Share Posted January 23, 2007 Securacy 0.9.3 is now available, fixed a huge problem of regestering the XZip Dll [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
theguy0000 Posted January 24, 2007 Share Posted January 24, 2007 Failed straight up for me - asked for a password which I haven't been set yet.Shows ya how secure it really is! but i know, its been fixed.really cool! Nice. The cake is a lie.www.theguy0000.com is currentlyUP images.theguy0000.com is currentlyUP all other *.theguy0000.com sites are DOWN Link to comment Share on other sites More sharing options...
Psibernetic Posted January 24, 2007 Author Share Posted January 24, 2007 lol yea... stupidty beats security.... the problem ws a file the program reads to see if it is the first run...well I forgot to erase its contents before I distributed it....oops lmao...but thank you for the compliment...not too many of them these days lol [sup]Psibernetic[/sup]My Creations:X-HideSecuracy Link to comment Share on other sites More sharing options...
Cowboybebop Posted January 25, 2007 Share Posted January 25, 2007 Hi just tried your program works really well. I have one problem though after i had downloaded the zip and extracted i decided to move the folder to my programs directory after i had done this could not access the program and then could not delete the directory could you help 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