Tu comunidad de Seguridad Informatica

C# file Pumper Info1810 Para ver Todo el contenido del foro es necesario estar Registrado! C# file Pumper Info1810
C# file Pumper Info1810 Antes de comentar o Aportar es Obligado Leer Las: Reglas | Rules C# file Pumper Info1810
C# file Pumper Info1810Ya Esta Disponible al publico "LeProject" el Videojuego del Foro Click Aquí Para Ver el Post. C# file Pumper Info1810
C# file Pumper Info1810Pitbull Security Labs "Extras" Esta Disponible! [ENTRA]C# file Pumper Info1810

No estás conectado. Conéctate o registrate

Ver el tema anterior Ver el tema siguiente Ir abajo  Mensaje [Página 1 de 1.]

1-Slandg- 

-Slandg-
Administrador
Administrador

http://www.pitbullsecurity.org
Mar Jul 12, 2011 8:03 pm
Código:
//cs@codershed.us
[Tienes que estar registrado y conectado para ver este vínculo]
//codershed
using System;
using System.IO;

namespace FilePumpNet
{
    class Program
    {
        static void Main(string[] args)
        {
            addbytes(2030, @"C:\demo.exe");
        }

        ///
        /// Add bytes to the end of a file
        ///
        /// size of the bytes to add
        /// the file to add them too
        static void addbytes(decimal dSize, string sPath)
        {
            FileStream f = File.OpenWrite(sPath);
            long lnd = f.Seek(0, SeekOrigin.End);
            decimal dgr = dSize * 1024;

            while (lnd < dgr)
            {
                lnd++;
                f.WriteByte(0);
            }

            f.Close();
        }
    }
}
                  
                  

Autor: Codershed

Ver el tema anterior Ver el tema siguiente Volver arriba  Mensaje [Página 1 de 1.]

Permisos de este foro:
No puedes responder a temas en este foro.