xCal Injector v2.0
================================================== =============
By ImWhacky
================================================== =============
Features:
Process Selector
Write-in Process
Multiple-dll Injection
Manual Injection
Auto Injection
Auto Close on Injection
Injection Delay
Millions of color options
================================================== =============
Images:

================================================== =============
Virus Scan:
(it shows results, but the results are because of the way it injects dll's)
(I will put the source code down below as well if you don't believe me)
virustotal - h tt ps://
www.virustota l. com/en/file/abda43 87e6094927e018ebc5c917bf1 3c165717239d9214b115a51c02925e 106/ analysis/144 3389334/b897d3ed/analysis/ 144324 7476/
jotti - h ttp s: //v irussca n.jo tti.org/e n-US/fil escanjob / 07r4ni72 vo
(cant post links for some reason, just remove spaces)
================================================== =============
Change-log:
v1.0
- First Release
v1.1
- Added 64-bit Support
- Added Auto Injection
- Added Close On Injection
v1.2
- Stylized Main GUI
v1.3
- Updated to support windows 10
v1.4
- Added Process Selector
- Added Injection Status
v1.5
- Re-did Entire Injector Design
v1.6
- Removed Select Process Button
- Added Font Options
- Custom Color Options
- Optinal Background color options
- Multi Tab Injector
- Home Tab (Main Injection Page)
- Options (Injector Customization options,) (will be expanded upon in future, just colors for this release)
v2.0 (Big update, Skipped 1.7, 1.8, and 1.9)
- Expanded custom color spectrum
- Removed "Clear Process Name" button
- Removed force process loading
- Removed Processes loading bar
- Removed Process loading status
- Removed Color Demo window in appearance options
- Re-Sized "Custom Color" and "Font Options" buttons
- Re-Sized font demo box
- Added Opacity Slider (adjust transparency of injector)
- Added optional injection delay
- Added Spanish and French Languages
- Added CPU Monitor (Make sure your game isn't running too hot)
- Added "Save List" option (Saves your currently loaded dll's to be used for later)
- Added "Open List" option (Loads your pre-saved list for fast injection abilities, only 2 buttons now.
- Added Game Selector
- Added Automatic Process Loading
- Added "Refresh Processes" button
================================================== =============
Next Version features (possibilities)
- Design Overhaul (too cramped at the moment)
- Exclude Dll's from injection (people with large dll lists)
-
Leave your ideas down below and ill try to add them
Thanks!
-
ImWhacky
================================================== =============
Source (v1.5):
I will be releasing the source code of the last release on every new release.
Code:
Imports System.Diagnostics
Public Class Form1
Private TargetProcessHandle As Integer
Private pfnStartAddr As Integer
Private pszLibFileRemote As String
Private TargetBufferSize As Integer
Dim proc As Process
Public Const PROCESS_VM_READ = &H10
Public Const TH32CS_SNAPPROCESS = &H2
Public Const MEM_COMMIT = 4096
Public Const PAGE_READWRITE = 4
Public Const PROCESS_CREATE_THREAD = (&H2)
Public Const PROCESS_VM_OPERATION = (&H8)
Public Const PROCESS_VM_WRITE = (&H20)
Dim DLLFileName As String
Public Declare Function ReadProcessMemory Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpBaseAddress As Integer,
ByVal lpBuffer As String,
ByVal nSize As Integer,
ByRef lpNumberOfBytesWritten As Integer) As Integer
Public Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (
ByVal lpLibFileName As String) As Integer
Public Declare Function VirtualAllocEx Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpAddress As Integer,
ByVal dwSize As Integer,
ByVal flAllocationType As Integer,
ByVal flProtect As Integer) As Integer
Public Declare Function WriteProcessMemory Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpBaseAddress As Integer,
ByVal lpBuffer As String,
ByVal nSize As Integer,
ByRef lpNumberOfBytesWritten As Integer) As Integer
Public Declare Function GetProcAddress Lib "kernel32" (
ByVal hModule As Integer, ByVal lpProcName As String) As Integer
Private Declare Function GetModuleHandle Lib "Kernel32" Alias "GetModuleHandleA" (
ByVal lpModuleName As String) As Integer
Public Declare Function CreateRemoteThread Lib "kernel32" (
ByVal hProcess As Integer,
ByVal lpThreadAttributes As Integer,
ByVal dwStackSize As Integer,
ByVal lpStartAddress As Integer,
ByVal lpParameter As Integer,
ByVal dwCreationFlags As Integer,
ByRef lpThreadId As Integer) As Integer
Public Declare Function OpenProcess Lib "kernel32" (
ByVal dwDesiredAccess As Integer,
ByVal bInheritHandle As Integer,
ByVal dwProcessId As Integer) As Integer
Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (
ByVal lpClassName As String,
ByVal lpWindowName As String) As Integer
Private Declare Function CloseHandle Lib "kernel32" Alias "CloseHandleA" (
ByVal hObject As Integer) As Integer
Dim ExeName As String = IO.Path.GetFileNameWithoutExtension(Application.ExecutablePath)
Private Sub Inject()
On Error GoTo 1 ' If error occurs, app will close without any error messages
Timer1.Stop()
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
TargetProcessHandle = OpenProcess(PROCESS_CREATE_THREAD Or PROCESS_VM_OPERATION Or PROCESS_VM_WRITE, False, TargetProcess(0).Id)
pszLibFileRemote = OpenFileDialog1.FileName
pfnStartAddr = GetProcAddress(GetModuleHandle("Kernel32"), "LoadLibraryA")
TargetBufferSize = 1 + Len(pszLibFileRemote)
Dim Rtn As Integer
Dim LoadLibParamAdr As Integer
LoadLibParamAdr = VirtualAllocEx(TargetProcessHandle, 0, TargetBufferSize, MEM_COMMIT, PAGE_READWRITE)
Rtn = WriteProcessMemory(TargetProcessHandle, LoadLibParamAdr, pszLibFileRemote, TargetBufferSize, 0)
CreateRemoteThread(TargetProcessHandle, 0, 0, pfnStartAddr, LoadLibParamAdr, 0, 0)
CloseHandle(TargetProcessHandle)
1: Me.Show()
End Sub
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
TextBox1.Clear()
End Sub
Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
If IO.File.Exists(OpenFileDialog1.FileName) Then
End If
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
If TargetProcess.Length = 0 Then
Label3.Text = ("Waiting for: " + TextBox1.Text + ".exe...")
Else
Timer1.Stop()
Label3.ForeColor = Color.Green
Label3.Text = "Injection Successful!"
Call Inject()
If CheckBox1.Checked = True Then
Me.Close()
Else
End If
End If
End Sub
Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Close()
End Sub
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
OpenFileDialog1.Filter = "DLL|*.dll"
OpenFileDialog1.ShowDialog()
Dim FileName As String
FileName = OpenFileDialog1.FileName.Substring(OpenFileDialog1.FileName.LastIndexOf("\"))
Dim DllFileName As String = FileName.Replace("\", "")
Me.Dlls.Items.Add(DllFileName)
End Sub
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
For i As Integer = (Dlls.SelectedItems.Count - 1) To 0 Step -1
Dlls.Items.Remove(Dlls.SelectedItems(i))
Next
End Sub
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
Dlls.Items.Clear()
End Sub
Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
If IO.File.Exists(OpenFileDialog1.FileName) Then
Dim TargetProcess As Process() = Process.GetProcessesByName(TextBox1.Text)
If TargetProcess.Length = 0 Then
Label3.Text = ("Waiting for:" + TextBox1.Text + ".exe" + "....")
Else
Timer1.Stop()
Label3.Text = "Injection Successful!"
Call Inject()
If CheckBox1.Checked = True Then
Me.Close()
End If
End If
End If
End Sub
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)
Timer1.Interval = 2
Timer1.Start()
Label6.Visible = False
ProgressBar1.ForeColor = Color.Cyan
End Sub
Private Sub RadioButton1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
Timer1.Start()
End Sub
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton2.CheckedChanged
Timer1.Stop()
End Sub
Private Sub Form1_Load_1(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
ShowIcon = True
End Sub
Private Sub Button7_Click_1(sender As Object, e As EventArgs) Handles Button7.Click
For Each proc As Process In Process.GetProcesses
ListBox1.Items.Add(proc.ProcessName)
Next
ProgressBar1.Value = 100
Label7.Text = ProgressBar1.Value
Label6.Visible = True
End Sub
Private Sub Button8_Click(sender As Object, e As EventArgs) Handles Button8.Click
TextBox1.Text = ListBox1.SelectedItem
End Sub
Private Sub ListBox1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles ListBox1.SelectedIndexChanged
TextBox1.Text = ListBox1.SelectedItem
End Sub
Private Sub Label2_Click(sender As Object, e As EventArgs) Handles Label2.Click
MessageBox.Show("Made by ImWhacky (eblank)" & vbCrLf & "If you have any errors, report them to the MPGH thread and i will try to fix them in the next update." & vbCrLf & " " & vbCrLf & "Thanks!",
"xCal v1.5")
End Sub
End Class
Credits:
Crazywink's (auto close, auto inject)



