Page 1 of 2 12 LastLast
Results 1 to 15 of 24
  1. #1
    XxDragonSharKxX's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    290
    Reputation
    10
    Thanks
    44
    My Mood
    Aggressive

    Cool [Injector] Pornject ++ Internet Stream v2

    Here's my new new Version with Dotnetbar. The Design is my first test
    Just try it out ^.^
    I'll try to add save function but I don't know how xDD
    Ok I know how to add save and load function but the write function is not working correctly.
    It cant write the dll path and name so that it can be used for injection. Can someone help me ?

    Screen:


    Scan:

    1


    Last edited by XxDragonSharKxX; 06-30-2010 at 02:10 AM.

  2. The Following User Says Thank You to XxDragonSharKxX For This Useful Post:

    akosihart01 (06-02-2012)

  3. #2
    EndRiT's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    USSR
    Posts
    12,751
    Reputation
    170
    Thanks
    4,294,967,295
    File approved.

  4. #3
    dddrrr's Avatar
    Join Date
    Nov 2009
    Gender
    male
    Location
    Yesterday it was USA but todays lookin more like China
    Posts
    2,196
    Reputation
    5
    Thanks
    153
    My Mood
    Tired
    LOl daddy cant run

  5. #4
    bosniana's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Alphen,Netherland
    Posts
    22
    Reputation
    10
    Thanks
    4
    My Mood
    Aggressive
    true doesnt work for me -.-

  6. #5
    XxDragonSharKxX's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    290
    Reputation
    10
    Thanks
    44
    My Mood
    Aggressive
    what happens ? just normal design ?

  7. #6
    GER-Domi.'s Avatar
    Join Date
    May 2010
    Gender
    male
    Posts
    277
    Reputation
    15
    Thanks
    823
    My Mood
    Cool
    wt**** is that??????

  8. #7
    Katie_Perry's Avatar
    Join Date
    Feb 2009
    Gender
    male
    Posts
    3,082
    Reputation
    31
    Thanks
    175
    My Mood
    Sneaky
    Nice . Also nice name :/

  9. #8
    DeathHunter's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Naxxar,Malta.
    Posts
    4,018
    Reputation
    13
    Thanks
    1,385
    My Mood
    Brooding
    Quote Originally Posted by XxDragonSharKxX View Post
    Here's my new new Version with Dotnetbar. The Design is my first test
    Just try it out ^.^
    I'll try to add save function but I don't know how xDD
    Ok I know how to add save and load function but the write function is not working correctly.
    It cant write the dll path and name so that it can be used for injection. Can someone help me ?

    Screen:


    Scan:

    1


    Nice,injector and design suckful name.

  10. #9
    XxDragonSharKxX's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    290
    Reputation
    10
    Thanks
    44
    My Mood
    Aggressive
    I want a Save/Load function ^^
    but it's not possible to save and load the path by listbox -.-

  11. #10
    DeathHunter's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Naxxar,Malta.
    Posts
    4,018
    Reputation
    13
    Thanks
    1,385
    My Mood
    Brooding
    Quote Originally Posted by XxDragonSharKxX View Post
    I want a Save/Load function ^^
    but it's not possible to save and load the path by listbox -.-
    I can help you with the saving option.

  12. #11
    XxDragonSharKxX's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    290
    Reputation
    10
    Thanks
    44
    My Mood
    Aggressive
    yay ;D thank you Add me in Skype I send you the source project nsg_dragonshark

  13. #12
    DeathHunter's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Naxxar,Malta.
    Posts
    4,018
    Reputation
    13
    Thanks
    1,385
    My Mood
    Brooding
    Quote Originally Posted by XxDragonSharKxX View Post
    yay ;D thank you Add me in Skype I send you the source project nsg_dragonshark
    I won't do everything for you I just give you a simple source code and you need to edit it etc...
    Because the source code is for something else you just need to edit some parts of it(you edit the things you want to be saved)
    [php]Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
    My.Settings.TxtBox1 = TextBox1.Text
    My.Settings.TxtBox2 = TextBox2.Text
    My.Settings.TxtBox3 = TextBox3.Text
    My.Computer.FileSystem.WriteAllText( "TheFile.txt", My.Settings.SettingsKey. ToString, True)
    End Sub

    Private Sub Button2_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button2.Click
    My.Settings.SettingsKey = My.Computer.FileSystem. ReadAllText ("TheFile.txt") .ToString
    TextBox1.Text = My.Settings.TxtBox1
    TextBox2.Text = My.Settings.TxtBox2
    TextBox3.Text = My.Settings.TxtBox3
    End Sub
    ______________________________________…[/php]

  14. #13
    XxDragonSharKxX's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Germany
    Posts
    290
    Reputation
    10
    Thanks
    44
    My Mood
    Aggressive
    I already got a code, but I cant save the path of the dll that is in the listbox.

    Code:
    Private Sub Button6_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
            Dim INI As New INIDatei, i As Integer
            INI.Pfad = My.Application******.DirectoryPath & "\savedlls.ini"
            For i = 1 To Dlls.Items.Count
                INI.WertSchreiben("Files", "Number of Files", Dlls.Items.Count)
                INI.WertSchreiben("Files", CStr(i), Dlls.Name)
            Next i
    
        End Sub
    
        Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click
            Dim INI As New INIDatei, max As Integer, i As Integer
            INI.Pfad = My.Application******.DirectoryPath & "\savedlls.ini"
            max = CInt(INI.WertLesen("Files", "Number of Files"))
    
            For i = 1 To max
                Dlls.Items.Add(INI.WertLesen("Files", CStr(i)))
            Next i
        End Sub
    "Dll.name" this have to be changed. That the path will be saved and be loaded and something like this.
    Dll is the listbox's name.
    ini.wertlesen is reading the ini file.
    ini.wertschreiben is writing into the file.
    The first is saving the second loading at the Buttons.

    In loading I can only load one of the dlls.

  15. #14
    Hahne's Avatar
    Join Date
    Aug 2009
    Gender
    male
    Location
    M.P.G.H
    Posts
    4,551
    Reputation
    57
    Thanks
    797
    My Mood
    Asleep
    naw ... daddy got degmodded
    Everybody wanting to post in crossfire section read these
    https://www.mpgh.net/forum/175-crossf...-5-2011-a.html

    EX.

  16. #15
    DeathHunter's Avatar
    Join Date
    May 2009
    Gender
    male
    Location
    Naxxar,Malta.
    Posts
    4,018
    Reputation
    13
    Thanks
    1,385
    My Mood
    Brooding
    Quote Originally Posted by XxDragonSharKxX View Post
    I already got a code, but I cant save the path of the dll that is in the listbox.

    Code:
    Private Sub Button6_Click_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
            Dim INI As New INIDatei, i As Integer
            INI.Pfad = My.Application******.DirectoryPath & "\savedlls.ini"
            For i = 1 To Dlls.Items.Count
                INI.WertSchreiben("Files", "Number of Files", Dlls.Items.Count)
                INI.WertSchreiben("Files", CStr(i), Dlls.Name)
            Next i
    
        End Sub
    
        Private Sub Button8_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button8.Click
            Dim INI As New INIDatei, max As Integer, i As Integer
            INI.Pfad = My.Application******.DirectoryPath & "\savedlls.ini"
            max = CInt(INI.WertLesen("Files", "Number of Files"))
    
            For i = 1 To max
                Dlls.Items.Add(INI.WertLesen("Files", CStr(i)))
            Next i
        End Sub
    "Dll.name" this have to be changed. That the path will be saved and be loaded and something like this.
    Dll is the listbox's name.
    ini.wertlesen is reading the ini file.
    ini.wertschreiben is writing into the file.
    The first is saving the second loading at the Buttons.

    In loading I can only load one of the dlls.
    So,you mean you can only inject one dll?

Page 1 of 2 12 LastLast