Jump to content

run apps from the web


emoyasha
 Share

Recommended Posts

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 application

this way a user would have to download one application and could then place an application name in a box, or select one from a list

and 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 was

clock.au3

inside 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 continue

source:

#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.au3

you 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.

Spoiler

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)-----------------------------------

 

Link to comment
Share on other sites

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 error

Posted Image

even 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.bxv

using

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 by emoyasha
Spoiler

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)-----------------------------------

 

Link to comment
Share on other sites

i also uploaded the includes to here

http://notmyspace.info/run/Include/

for future use.

also

can anyoen tell me why the above problem occurs?

Spoiler

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)-----------------------------------

 

Link to comment
Share on other sites

of course not.

Spoiler

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)-----------------------------------

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...