EvilZone
Programming and Scripting => Scripting Languages => : bubzuru August 27, 2012, 04:55:53 AM
-
let me just say its late , im high, and iv had a long day so bare with me.
now i see the same questions\answers all the time.
how do be a 1337 h4x0r ??
learn to code
well where do i start, language and so on ?
try batch or vbs and progress
etc etc etc etc ^^ that was kinda short and sweet but you get the idea
i remember making my first batch file, it felt great. ok im rambling so whats the idea ?
Script Master:
A basic all in one ide\compiler(of sorts) for windows scripting languages. with everything you need all there in one tool. here is a screenshot of the first alpha version the gui will change alot as stuff gets added
(http://img705.imageshack.us/img705/3884/99152877.png)
this version only supports powershell scripts, the highlighting is C#, scripts are not encrypted and there are probably alot of bug but its an alpa,
i think it could be a very good tool for people wanting to learn to code, i wish i had something like thus when i wrote my first batch file. and now with powershell the possibility are endless
Features\Good Points
*Everything you need in one app (run\edit\etc)
*quick access to needed console (powershell.exe, cmd.exe, cscript.exe)
*Compile your scripts into an executable file (only 8kb overhead)
*Auto indentation in code editor
Ideas
*i have a few ideas about encrypted ps1 files (can allready run some commands from memory)
*lua suport
*python Suport
Download and help to test improve
http://qshare.com/get/1110265/SM.rar.html (http://qshare.com/get/1110265/SM.rar.html)
-
little bug, you will need the pascal.xml file in the same dir (attatched rename to pascal.xml)
just as a quick example of the power of this. crate a new script in script master and add this code then run
$mysource = @"
public class CinaScript
{
public static int RuncCode()
{
return 100 + 100;
}
}
"@
Add-Type -TypeDefinition $mysource
$var = [CinaScript]::RuncCode()
write-host $var #will output 200. we just ran c# code so we can even call winapi