Flame Injector[Multi][New]

Posts 19 of 9 · Page 1 of 1
Flame Injector[Multi][New]
ScreenShot:


Features:
  • Auto Admin Privileges
  • 100% x86/x64 Compatible
  • 100% Super Fast And Efficient
  • 100% Clean From Virus Scanner


Whats New?:
  • New Slick GUI
  • Fixed some errors so x86 users can enjoy the Injector as well.
  • Added about 10 new lines of code to help on errors


Usage:
  1. Download Below
  2. Run Flame Injector.exe
  3. Type in your Process or Choose your game
  4. Choose your options
  5. Just a FYI if you tick Manual but you want to do Auto you'll have to Restart the program. Same goes for the opposite.
  6. Select Your DLL
  7. Run the Game as Admin as well
  8. Enjoy a simple and easy to use injector For ANY Game.


Things to Come:
  • The Ability to select multiple Dlls at the same time.
  • If the Injector fails to inject it will kill the Game Process
  • Launch Game function to allow a more easy way of life


VirusScans:
Flame Injector.zip - Jotti's malware scan
Flame Injector.zip - VirusTotal malware scan

Approve:
@.REZ @Drake @aeronyx @BACKD00R @Polo


Flame Injector_mpgh.net.zip49 KB · 202 downloads Scanning…
/ Approved
Quote Originally Posted by Drake View Post
/ Approved
Thank you for the quick approve.
Multi select
Code:
        Dim OP As New OpenFileDialog
        OP.Filter = "Dynamic Link Library (*.dll)|*.dll"
        OP.Multiselect = True
        If OP.ShowDialog = DialogResult.OK Then
            For Each S As String In OP.FileNames
                'Add S to list
            Next
        End If
Quote Originally Posted by Pingo View Post
Multi select
Code:
        Dim OP As New OpenFileDialog
        OP.Filter = "Dynamic Link Library (*.dll)|*.dll"
        OP.Multiselect = True
        If OP.ShowDialog = DialogResult.OK Then
            For Each S As String In OP.FileNames
                'Add S to list
            Next
        End If
You my Friend are a god!
Thanked
Quote Originally Posted by Pingo View Post
Multi select
Code:
        Dim OP As New OpenFileDialog
        OP.Filter = "Dynamic Link Library (*.dll)|*.dll"
        OP.Multiselect = True
        If OP.ShowDialog = DialogResult.OK Then
            For Each S As String In OP.FileNames
                'Add S to list
            Next
        End If
Only problem is I cant seem to get the File Selected to show up in the ListBox

.....
@Pingo
And this, not sure if this is a good way of doing it or not.
It should work fine if you have WaitForSingleObject setup correctly.

Kill process
Code:
    Public Sub DllLoaded(ByVal DllPath As String, ByVal ProcessName As String)
        Dim P As Process() = Process.GetProcessesByName(ProcessName)
        If P.Length <> 0 Then
            For Each M As ProcessModule In P(0).Modules
                If M.FileName = DllPath Then
                    Return
                End If
            Next
            P(0).Kill()
        End If
    End Sub
Use it after you inject. It loops the process module collection and if the dll you injected isnt in the collection, it'l kill the process.
usage:
DllPath - full path
ProcessName - without .exe
No i left that blank cause i didnt know what you called the listbox.
Say you left it as default
Code:
        Dim OP As New OpenFileDialog
        OP.Filter = "Dynamic Link Library (*.dll)|*.dll"
        OP.Multiselect = True
        If OP.ShowDialog = DialogResult.OK Then
            For Each S As String In OP.FileNames
                ListBox1.Items.Add(S)
            Next
        End If
Just do it the way you had it from the start but enable multiselect
and loop the filenames.
Posts 19 of 9 · Page 1 of 1
This thread is closed for replies.

Similar Threads

Tags for this Thread

None

Need help?