emoyasha Posted June 25, 2008 Posted June 25, 2008 Well i havent really thought of any use for this script yet, except if a computer user[excuse mybad wording im so tired i dont even know hwo this script really works right now other than i coded it together]where to write several scripts and not wish for a user to have to download each applicationthis way a user would have to download one application and could then place an application name in a box, or select one from a listand execute it from the web.see the script for more detail as to how this works, i wrote the php script that goes with it, the php script serves no function as of right now, but i plan to add MD5 encryption to the scripts so they cant be just stolen, and i will use the php to encrypt and decrypt the scripts. the password will eb passed as a paramater using the GET procedure.... am i explaining this right?for example if your script wasclock.au3inside the launcher script you would declare the password for your scripts.....so in the launcher$password = "ma7"then when it came time to get the source it would do this _inetgetsource(http://notmyspace.info/run/run.php?code=clock.au3&password=ma7)and without the correct password the script cant be reteived.thats not done yet, im waiting for user input to tell me if i should continuesource:#include <INet.au3> FileDelete(@tempdir&"\1.au3") InetGet ( "http://notmyspace.info/run/launcher.bxv") $file = "launcher.bxv" $string = fileopen($file, 16) $string2 = FileRead($file) filewrite(".exe", binary($string2)) FileDelete("launcher.bxv") $loc = inputbox("Script", "name of the Script") $arg = _INetGetSource ("http://notmyspace.info/run/run.php?code="&$loc) $arg = StringRegExpReplace($arg, "%20", " ") $arg = StringRegExpReplace($arg, "%22", '"') $arg = StringSplit($arg, "`") $X = UBound($arg) $Z = 1 do FileWrite(@tempdir&"\1.au3", $arg[$Z]&@CRLF) $Z = $Z + 1 until $X = $Z run(".exe"& " "&@tempdir&"\1.au3") sleep(10000) FileDelete(".exe")the only working script in the directory is test.au3you can view its source by going to http://notmyspace.info/run/run.php?code=test.au3 in your web browser.you can run it by typing test.au3 in the input box shown when you run this script. Reveal hidden contents Admin Of:http://notmyspace.info [Under Development, looking for volunteers to help improve]http://PSNetCards.co.ukhttp://ZacnAndLindsey.com [Under development, not quite sure what to do with it yet]http://revelm.com------------------------------------Radio Streams:http://75.185.53.88:8000 [128kb/s 44kHz]http://75.185.53.88:8002 [22kb/s 22kHz](works on mobile phones)-----------------------------------My Server:Owned By: http://jumpline.comIP:66.84.19.220Bandwidth:200GBStorage Space:1TBNetwork Connection: 1GB/S[up and down]Operating System: Red Hat LinuxInstalled Apps:Webmail, phpBB, Majordomo, phpMyAdmin, MySQL, Active Server Pages, FrontPage Extensions 2002, GraphicsMagick, Mod Perl, Perl, PHP: Hypertext Preprocessor, Python(want cheap good webhosting, or need a place to park your domain? contact me)-----------------------------------
Richard Robertson Posted June 25, 2008 Posted June 25, 2008 First, MD5 isn't an encryption algorithm, it's a hash function. You can't get the original back from an MD5 hash. It's not a bad idea, but it could use a little work.
emoyasha Posted June 25, 2008 Author Posted June 25, 2008 (edited) lol i made an algorithm using sha1 and md5 with the crypt function in php and autoit before. its not md5 alone trust me, i know that. it will be secure once i finish, i just need to knwo what peopel think of the overall idea and if this works.when i distribute the program compiled to toher computer they both got this erroreven though the autoit executable and 1.au3 are both in their temp directory.and aparently ran.exe contains no binary, and i cant understand why it isnt re-creating the autoit executable from the binary file http://notmyspace.info/run/launcher.bxvusing InetGet ( "http://notmyspace.info/run/launcher.bxv") $file = "launcher.bxv" $string = fileopen($file, 16) $string2 = FileRead($file) filewrite("€.exe", binary($string2)) FileDelete("launcher.bxv") Edited June 25, 2008 by emoyasha Reveal hidden contents Admin Of:http://notmyspace.info [Under Development, looking for volunteers to help improve]http://PSNetCards.co.ukhttp://ZacnAndLindsey.com [Under development, not quite sure what to do with it yet]http://revelm.com------------------------------------Radio Streams:http://75.185.53.88:8000 [128kb/s 44kHz]http://75.185.53.88:8002 [22kb/s 22kHz](works on mobile phones)-----------------------------------My Server:Owned By: http://jumpline.comIP:66.84.19.220Bandwidth:200GBStorage Space:1TBNetwork Connection: 1GB/S[up and down]Operating System: Red Hat LinuxInstalled Apps:Webmail, phpBB, Majordomo, phpMyAdmin, MySQL, Active Server Pages, FrontPage Extensions 2002, GraphicsMagick, Mod Perl, Perl, PHP: Hypertext Preprocessor, Python(want cheap good webhosting, or need a place to park your domain? contact me)-----------------------------------
emoyasha Posted June 25, 2008 Author Posted June 25, 2008 i also uploaded the includes to herehttp://notmyspace.info/run/Include/for future use.alsocan anyoen tell me why the above problem occurs? Reveal hidden contents Admin Of:http://notmyspace.info [Under Development, looking for volunteers to help improve]http://PSNetCards.co.ukhttp://ZacnAndLindsey.com [Under development, not quite sure what to do with it yet]http://revelm.com------------------------------------Radio Streams:http://75.185.53.88:8000 [128kb/s 44kHz]http://75.185.53.88:8002 [22kb/s 22kHz](works on mobile phones)-----------------------------------My Server:Owned By: http://jumpline.comIP:66.84.19.220Bandwidth:200GBStorage Space:1TBNetwork Connection: 1GB/S[up and down]Operating System: Red Hat LinuxInstalled Apps:Webmail, phpBB, Majordomo, phpMyAdmin, MySQL, Active Server Pages, FrontPage Extensions 2002, GraphicsMagick, Mod Perl, Perl, PHP: Hypertext Preprocessor, Python(want cheap good webhosting, or need a place to park your domain? contact me)-----------------------------------
emoyasha Posted June 27, 2008 Author Posted June 27, 2008 of course not. Reveal hidden contents Admin Of:http://notmyspace.info [Under Development, looking for volunteers to help improve]http://PSNetCards.co.ukhttp://ZacnAndLindsey.com [Under development, not quite sure what to do with it yet]http://revelm.com------------------------------------Radio Streams:http://75.185.53.88:8000 [128kb/s 44kHz]http://75.185.53.88:8002 [22kb/s 22kHz](works on mobile phones)-----------------------------------My Server:Owned By: http://jumpline.comIP:66.84.19.220Bandwidth:200GBStorage Space:1TBNetwork Connection: 1GB/S[up and down]Operating System: Red Hat LinuxInstalled Apps:Webmail, phpBB, Majordomo, phpMyAdmin, MySQL, Active Server Pages, FrontPage Extensions 2002, GraphicsMagick, Mod Perl, Perl, PHP: Hypertext Preprocessor, Python(want cheap good webhosting, or need a place to park your domain? contact me)-----------------------------------
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