Xylo Dll injector
Project description
Xylo – Usage Guide
Requirements
- Windows
- Python 3.8+
- A valid DLL file
- A running target process
Installation
pip install xylo
Basic Usage
from xylo import Xylo
Create an instance:
xylo = Xylo()
Required Configuration
You must configure:
A DLL path
Either a process name OR a process ID
If no DLL is provided, execution will fail.
Configuration Methods
Set target by process name
xylo.Name("example.exe")
Set target by process ID
xylo.Pid(1234)
Set DLL path
xylo.Dll(r"C:\Path\To\example.dll")
Execution
Inject
xylo.Inject()
Examples
Inject using process name
from xylo import Xylo
Xylo()
.Name("notepad.exe")
.Dll(r"C:\Dlls\test.dll")
.Inject()
Inject using PID
from xylo import Xylo
Xylo()
.Pid(4321)
.Dll(r"C:\Dlls\test.dll")
.Inject()
Full Script Example
from xylo import Xylo
def main(): xylo = Xylo()
xylo.Name("explorer.exe") \
.Dll(r"C:\Dlls\payload.dll") \
.Inject()
if name == "main": main()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file xylo_injector-1.0.0.tar.gz.
File metadata
- Download URL: xylo_injector-1.0.0.tar.gz
- Upload date:
- Size: 109.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
170a9e1edff4d87595fb7c1c17a1d92e5582171c51c71387d74566e2a702427e
|
|
| MD5 |
fb6c360284c8518c2e50b3cda3ac8e1c
|
|
| BLAKE2b-256 |
601f3ec3ed964a35527b19852c38257eb522e7ab486654aeba932fde3d680a2f
|
File details
Details for the file xylo_injector-1.0.0-py3-none-any.whl.
File metadata
- Download URL: xylo_injector-1.0.0-py3-none-any.whl
- Upload date:
- Size: 108.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.11.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8f1da8c0438bc6aff6c8ae1a82897f0d1a2c32fd85e4b9915fe98fb1f1bb8e83
|
|
| MD5 |
e2cca2cde557af1aeb3a725d7e721553
|
|
| BLAKE2b-256 |
322f4b1f6519aa57b929fff5131afc8949a86fcf9061c092414652bbc07358e2
|