Jump to content

remkow

Active Members
  • Posts

    205
  • Joined

  • Last visited

Posts posted by remkow

  1. You won't find the passwords in plaintext, but if you copy key3.db and signons.txt/signons2.txt from the Firefox profile folder (C:Documents and SettingsUsernameApplication DataMozillaFirefoxProfilesabcd123.default), you can easily crack the files and read all saved passwords.

    Not hard to do at all

  2. Like I said, read the whole page:

    A few more findings:

    1. I thought that my Symantec AV may be the problem, but after removal it made no difference.

    2. Read and writes are much faster under Linux than under Vista/XP.

    3. It's faster in Vista to mount a Trucrypt volume off the thumbdrive, then run your apps off of it then it is to run the app straight off of the thumbdrive.

    4. Changing the device options in control panel from the default "Optimize for removal" to "Optimize for performance".

    the bold thing is ur answer

  3. My white hat payload does this a bit, only with registry fixes. If you're talking about fixing security holes on windows using hotfixes, it can be done easily, because you can install them automatically (and i think hidden, too). Although I don't see the need of doing it silently, it is possible.

    Mortiffer, if u have problems, contact me on msn

  4. You really could've done some research on your own man.. Replace the lines which delete temporary files with this:

    del C:WINDOWSTemp*.tmp /Q
    
    del C:Documents and Settings%username%Local SettingsTemp*.* /Q
    
    del C:Documents and Settings%username%Local SettingsTemporary Internet Files*.* /Q
    
    del C:Documents and Settings%username%Cookies*.txt /Q
    
    del C:WINDOWSPrefetch*.* /Q

    And I chose a-squared because I've used it before as a command line, and had it on my HDD already, and I have never seen a command line version of AVG.

  5. I guess that was me :P

    This is the original source of the autorun file:

    Set objFSO = CreateObject("Scripting.FileSystemObject")
    
    Set colDrives = objFSO.Drives
    
    For Each objDrive in colDrives
    
    If objFSO.FileExists(objDrive.DriveLetter & ":wipcmdgo.cmd") Then
    
    strPath = objDrive.DriveLetter & ":wipcmd"
    
    strcmd = """" & strPath & "" & "go.cmd" & """"
    
    CreateObject("Wscript.Shell").CurrentDirectory = strPath
    
    CreateObject("Wscript.Shell").Run strcmd, 0, False
    
    End If
    
    Next

×
×
  • Create New...