Thread: File Pumper

Results 1 to 7 of 7

Threaded View

  1. #1
    Intellectual's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Location
    GDI
    Posts
    5,389
    Reputation
    785
    Thanks
    16,091
    My Mood
    Yeehaw

    File Pumper

    Hey guy in this tutorial you gonna learn how to make a file pumper , it simply adds bytes to increase the file size first of all include Imports System**** on your source code.
    • 1 The tools we need:
      - 2 Buttons
      - 1 TextBox
      - 1 NumericTextBox



    • 2 Changing tool names: (Tool name not tool text)
      - Button1 = Browse Exe
      - Button2 = Pump File
      - And set the minimum on the NumericTextBox to 10


    • 3 Coding:
      Browse Exe Button
      Code:
      Dim ofd As New OpenFileDialog
              ofd.Filter = "Exe File|*.exe"
              ofd.ShowDialog()
              TxtFileName.Text = ofd.FileName


      Pump File Button
      Code:
       Dim sfd As New SaveFileDialog
              sfd.Filter = "Exe Files|*.exe"
              sfd.ShowDialog()
              Dim filesize As Double = Val(NumericUpDown2.Value)
              IO.File.Copy(TxtFileName.Text, sfd.FileName)
              If rbtnMegaByte.Checked Then
                  filesize = filesize * 1048576
              End If
              Dim filetopump = IO.File.OpenWrite(sfd.FileName)
              Dim size = filetopump.Seek(0, IO.SeekOrigin.End)
              While size < filesize
                  filetopump.WriteByte(0)
                  size += 1
              End While
              filetopump.Close()
              Interaction.MsgBox("File Pumped!", MsgBoxStyle.Information)

  2. The Following 2 Users Say Thank You to Intellectual For This Useful Post:

    [MPGH]Mayion (05-26-2013),Nexero (05-27-2013)

Similar Threads

  1. File Pumper V1.0
    By Bombsaway707 in forum General Hacking
    Replies: 11
    Last Post: 10-29-2017, 02:59 AM
  2. File Scan here
    By Neogaidenx in forum Spammers Corner
    Replies: 4
    Last Post: 08-14-2008, 11:30 AM
  3. Free File Hosts
    By Paolo1993 in forum Spammers Corner
    Replies: 5
    Last Post: 04-12-2008, 08:33 PM
  4. Looking for the old Warrock Game Files
    By Zededarian in forum WarRock - International Hacks
    Replies: 2
    Last Post: 01-10-2006, 02:30 PM