Results 1 to 13 of 13
  1. #1
    pr0h4x0r's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    BoobieLand
    Posts
    134
    Reputation
    10
    Thanks
    20
    My Mood
    Relaxed

    Web based injector

    so yeah i wanna know how to like download a dll from internet into a secret folder and make it inject i know how to make it inject i just wanna know how to access the webserver to get the dll and download it to a secret folder then inject U KNOW WHAT IM SAYING!

  2. #2
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    That's not what "web based" means.

    But anyways...

    I believe it's something like:

    Code:
            Dim FileURL as string = *insert file URL here* 
            Dim FileLocation as string = *insert file location + name here*
            Dim web1 As System.Net.WebClient = New System.Net.WebClient
            web1.DownloadFile(FileURL, Filelocation)
    Then to delete the file you made:

    Code:
    do
    If system.io.file.exists(FileLocation) then
    System.io.file.delete(FileLocation)
    end if
    loop
    Last edited by Lolland; 02-06-2010 at 07:29 PM.

  3. #3
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Basic Snippets :

    Ping Website With
    Code:
    '500 = 500MS 1/2 a second :D
    If My.Computer.Network.Ping("www.mpgh.net", 500) Then
      		MsgBox("Server pinged mpgh.net successfully.")
    	Else
      	'half a second to time out, increase to 1000 or 2000 depending on your needs	
          MsgBox("Ping request timed out.")
    	End If
    Download a file from a server

    Code:
    	My.Computer.Network.DownloadFile _
    'from
        	("filelocationurl/yourfile.entenstion", _
    'to
        	"filelocation\yourfile.extenstion")
    Upload a file to a server (ftp access username and password may be required)

    Code:
    	My.Computer.Network.UploadFile( _
    'from	
    "filelocation\file.extension", _
    'to , with trailing slash /, but no filename or extension, otherwise you will error
    "FileTargetUrl/")


     


     


     



    The Most complete application MPGH will ever offer - 68%




  4. #4
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Lol that's not what he was asking for.

    I already answered his problem, don't try to steal my thunder!

    Lol just kidding.

  5. #5
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Oh... Thought he needed "how to download into location" I just added the other two because it is going to be asked sometime in this thread, maybe not now, maybe a res 5 months from now, but it's going to happen.....I am planning ahead
    Last edited by NextGen1; 02-06-2010 at 09:08 PM.


     


     


     



    The Most complete application MPGH will ever offer - 68%




  6. #6
    mnpeepno2's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    In a barren wasteland
    Posts
    905
    Reputation
    10
    Thanks
    81
    he also needs code for an injector :/


    -----------------------------------------------

    My site: here
    My Blog: here
    My member's area: here
    Minecraft Sever Forum: here


    Minecraft Servers:

    Public:



    Private:



  7. #7
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    Quote Originally Posted by mnpeepno2 View Post
    he also needs code for an injector :/
    I don't think so

    Quote Originally Posted by guywhopostedthisuptop
    I already know how to inject, I Just wanna


     


     


     



    The Most complete application MPGH will ever offer - 68%




  8. #8
    pr0h4x0r's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    BoobieLand
    Posts
    134
    Reputation
    10
    Thanks
    20
    My Mood
    Relaxed
    ok thanks guys

    loland i get this error with ur code:
    An exception occurred during a WebClient request.
    Last edited by pr0h4x0r; 02-07-2010 at 12:32 PM.

  9. #9
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Hmm...

    Post your code, perhaps?

    Here, I'll show you the proper way of doing it:

    Code:
            Dim FileURL as string = "https://www.mpgh.net/forum/images/vuel/buttons/reply.gif"
            Dim FileLocation as string = "C:\Users\Alex\Desktop\test.gif"
            Dim web1 As System.Net.WebClient = New System.Net.WebClient
            web1.DownloadFile(FileURL, Filelocation)
    Is that similar to yours?

  10. #10
    NextGen1's Avatar
    Join Date
    Dec 2009
    Gender
    male
    Location
    Not sure really.
    Posts
    6,312
    Reputation
    382
    Thanks
    3,019
    My Mood
    Amazed
    This issue is the File location, If you copy that code exactly you are trying to copy a file to C:\Users\Alex.....

    There is not C:\Users\Alex.... on the OP comp,

    Change the FileLocation to C:\test.gif

    It should work then


     


     


     



    The Most complete application MPGH will ever offer - 68%




  11. #11
    pr0h4x0r's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    BoobieLand
    Posts
    134
    Reputation
    10
    Thanks
    20
    My Mood
    Relaxed

    omg

    Code:
    Dim FileURL As String = "https://www.mpgh.net/forum/images/vuel/buttons/reply.gif"
            Dim FileLocation As String = "C:\test.gif"
            Dim web1 As System.Net.WebClient = New System.Net.WebClient
            web1.DownloadFile(FileURL, FileLocation)
    I put that in for timer1
    Error:
    Code:
    web1.DownloadFile(FileURL, FileLocation)
    then it give me the same error i told u about highlighting ^ code!

  12. #12
    Lolland's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Location
    Lolland!
    Posts
    3,156
    Reputation
    49
    Thanks
    868
    My Mood
    Inspired
    Quote Originally Posted by hellldog View Post
    i have no clue what you guys are talkin about
    Then don't spam.

    Quote Originally Posted by pr0h4x0r View Post
    Code:
    Dim FileURL As String = "https://www.mpgh.net/forum/images/vuel/buttons/reply.gif"
            Dim FileLocation As String = "C:\test.gif"
            Dim web1 As System.Net.WebClient = New System.Net.WebClient
            web1.DownloadFile(FileURL, FileLocation)
    I put that in for timer1
    Error:
    Code:
    web1.DownloadFile(FileURL, FileLocation)
    then it give me the same error i told u about highlighting ^ code!
    You need to have administrative rights to make a file in the C:\ folder, (at least on vista...).

    Try saving yours to your desktop as a test.

  13. #13
    pr0h4x0r's Avatar
    Join Date
    Jan 2010
    Gender
    male
    Location
    BoobieLand
    Posts
    134
    Reputation
    10
    Thanks
    20
    My Mood
    Relaxed
    OMG I GOT IT THANKS VERY MUCH!

Similar Threads

  1. [Request] Java Web Browswer Based Game
    By Newbiee in forum Hack Requests
    Replies: 2
    Last Post: 07-21-2011, 11:13 AM
  2. Web Based Launch Wont Change Hacking
    By (Corndog) in forum Combat Arms Discussions
    Replies: 21
    Last Post: 11-12-2009, 08:14 PM
  3. text web based mmo game hack.. help..
    By paan92 in forum General Hacking
    Replies: 1
    Last Post: 09-18-2009, 11:52 AM
  4. Replies: 11
    Last Post: 08-28-2007, 02:49 AM
  5. Web-based game hacking..
    By Krilliam in forum General Game Hacking
    Replies: 7
    Last Post: 02-20-2006, 01:12 PM