Twelve Years of Service
Posts: 392
Threads: 114
Points: 0€
Would this work? (Methodology) 12-05-2010, 08:04 AM
#1
I want to make a spreading tool for free so that all of these $200 tools will die in fire. But me being a HTML/CSS programmer only right now, I don't know jack shit about coding in objective (other than my past 2 week fuck arounds with C++ and Java), so how could I go about doing this? I know a lot of .bat commands and have friends who could add more to the list that I could convert using a converter into (insert language here) I guess? Like ShockLabs .bat to .exe converter that I have. When it converts it to an .exe, what is it doing exactly? Is it transcribing the .bat code into, say for instance, vb.net? Or is it doing something completely different? Then if, say it does convert into vb.net, can I decompile the source of the program and modify to add other features that I can't make in .bat to develop it more into a bot? I am really, really, really new to this obviously.
Even if on the slightest you take a smidget
Or dare touch my revenue I slice you with the razor, quit it
Icey till I make it frigid... (BURRRR)...
The laws of physics says it's getting cold...
My money taller than a hall of midgets
-Busta Rhymes
•
Twelve Years of Service
Posts: 392
Threads: 114
Points: 0€
RE: Would this work? (Methodology) 12-05-2010, 10:44 AM
#3
(12-05-2010, 10:12 AM)Coder Wrote: Those converters don't convert exes to a specific language compiled exe, they just add it in an exe which just runs it via cmd, as it would be pointless hassle.
If you want to run a batch code via vb.net all you have to do is:
Code:
Private Sub Button1_Click()
Shell ("cmd /c " & IO.ReadAllText("C:\yourbatch.bat"), vbHide)
'Or
'Shell ("cmd /c " & "del C:\hello.txt", vbHide)
End Sub
Would I be able to set this up to a GUI? Each button has its own process behind it.
Even if on the slightest you take a smidget
Or dare touch my revenue I slice you with the razor, quit it
Icey till I make it frigid... (BURRRR)...
The laws of physics says it's getting cold...
My money taller than a hall of midgets
-Busta Rhymes
•
Twelve Years of Service
Posts: 2,366
Threads: 170
Points: 0€
RE: Would this work? (Methodology) 12-05-2010, 03:58 PM
#5
um.. what exactly does he want to make? XD
Pierce the life fibers with your drill.
•
Twelve Years of Service
Posts: 2,622
Threads: 213
Points: 0€
RE: Would this work? (Methodology) 12-05-2010, 04:07 PM
#6
Maybe a GUI for his batch applications.
![[Image: rytwG00.png]](http://i.imgur.com/rytwG00.png)
Redcat Revolution!
•
Twelve Years of Service
Posts: 392
Threads: 114
Points: 0€
RE: Would this work? (Methodology) 12-05-2010, 09:33 PM
#7
Yeah, I am wanting to make a GUI for a Auto-Spread program with all sorts of useful things like anti's, auto-spread, disablers, and things of the sort that can be updated on to the botnet to gain extra spreads. I am hoping to learn a little vb.net just to do this. It will probably be a while before it will be out though ;P. I was just curious as to what a .bat to .exe converter actually does, other than the obvious. I was wanting to convert my .bat into something like vb.net, which Coder explained to me.
Even if on the slightest you take a smidget
Or dare touch my revenue I slice you with the razor, quit it
Icey till I make it frigid... (BURRRR)...
The laws of physics says it's getting cold...
My money taller than a hall of midgets
-Busta Rhymes
•