HaydenM Posted December 24, 2016 Share Posted December 24, 2016 Hey everyone, So I have been working on a project to accompany the USB rubber ducky. It's a toolkit has some nice features (imo of course ). Probably the its best feature is the Ducky Emulator, it can read a duckyscript txt file and emulate exactly what it would do (without the need of compiling to a bin, copying to sd card etc). Another feature is it's validator, which can look at DuckyScript and basically error check it like a IDE would. For example if you wrote DELAY hi It would say "DELAY must be followed by an integer". It has these kind of error checks for all valid functions in the DuckyScipt language. I'm a student currently in school full-time (CS of course), and I like open-source which is why I'm now posting this project here to see if anyone would be interested in contributing/helping. (The project is written in C# with .NET) Even if you are unable to help out with coding, things like beta-testing would also be much appreciated Overall, I'm looking to what everyone thinks about this! You can check out the project over on GitHub here: https://github.com/HaydenMeloche/USB-Rubber-Ducky-Toolkit -Hayden Quote Link to comment Share on other sites More sharing options...
xcoder Posted December 25, 2016 Share Posted December 25, 2016 (edited) so cool my fast review: I got error on formEncoding.Show() when open it secound times maybe need add: formEncoding formEncoding = new formEncoding(); formEncoding.Show();//show encoding form remove this //theDialog.InitialDirectory = @"C:\"; error reading script at REM or empty line! you need add Validation for REM and "\r\n" EncodeToBin need to set user selected input file at first place and make it real something like: new ProcessStartInfo("java", "-jar duckencode.jar -i " + inPutFilePath + " -o " + outPutFilePath); sorry I use VB.NET ,C# a little familiar Good Work,Thank you Edited December 25, 2016 by xcoder Quote Link to comment Share on other sites More sharing options...
HaydenM Posted December 26, 2016 Author Share Posted December 26, 2016 @xcoder Thanks! Quote Link to comment Share on other sites More sharing options...
Tamasco Posted December 26, 2016 Share Posted December 26, 2016 Nice project! I started something similar months ago (just encoder) in Visual Basic .NET, but haven´t finish the multi language UI yet (just Spanish and English). https://github.com/Borja-Garduno/DuckEncoder Quote Link to comment Share on other sites More sharing options...
xcoder Posted December 26, 2016 Share Posted December 26, 2016 Thank you for sharing I like Validation idea I added to my project All credits goes to you Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.