All Projects → NaxAlpha → shellcode-loader

NaxAlpha / shellcode-loader

Licence: other
Shellcode Loader Engine for Windows

Programming Languages

C++
36643 projects - #6 most used programming language
assembly
5116 projects

Projects that are alternatives of or similar to shellcode-loader

gioc
golang ioc framework
Stars: ✭ 33 (+37.5%)
Mutual labels:  inject
cordova-plugin-wkwebview-inject-cookie
Injects a cookie in order to start the sync processs with wkWebView
Stars: ✭ 43 (+79.17%)
Mutual labels:  inject
kar98k public
pwn & ctf tools for windows
Stars: ✭ 24 (+0%)
Mutual labels:  inject
Rage
Rage allows you to execute any file in a Microsoft Office document.
Stars: ✭ 68 (+183.33%)
Mutual labels:  inject
NbInjection
PoC for inject zygote process by replacing system native bridge support
Stars: ✭ 70 (+191.67%)
Mutual labels:  inject
MicaForEveryone
Mica For Everyone is a tool to enable backdrop effects on the title bars of Win32 apps on Windows 11.
Stars: ✭ 2,006 (+8258.33%)
Mutual labels:  win32
HiFramework.Unity
Based on component to manage project's core logic and module used in unity3d
Stars: ✭ 22 (-8.33%)
Mutual labels:  inject
vaca
C++ Win32 wrapper to develop GUI apps
Stars: ✭ 64 (+166.67%)
Mutual labels:  win32
gloation
A badass notion theme. Name inspired by the words glass and notion
Stars: ✭ 23 (-4.17%)
Mutual labels:  inject
AndroidStartup
模块化启动框架
Stars: ✭ 126 (+425%)
Mutual labels:  inject
packiffer
lightweight cross-platform networking toolkit
Stars: ✭ 52 (+116.67%)
Mutual labels:  inject
CrashLogger
A dll injected into process to dump stack when crashing.
Stars: ✭ 19 (-20.83%)
Mutual labels:  inject
wxAutoExcel
wxAutoExcel is a wxWidgets library attempting to make Microsoft Excel automation with C++ a bit less painful.
Stars: ✭ 27 (+12.5%)
Mutual labels:  win32
flutter web import js library
Import & use javascript libraries in your flutter web projects
Stars: ✭ 28 (+16.67%)
Mutual labels:  inject
asm tutorial
Code samples for the Understanding Windows x64 Assembly tutorial.
Stars: ✭ 131 (+445.83%)
Mutual labels:  win32
inject
A simple Kotlin multi-platform abstraction around the javax.inject annotations.
Stars: ✭ 42 (+75%)
Mutual labels:  inject
MouseInjectDetection
Simple method of checking whether or not mouse movement or buttons (<windows 10) are injected
Stars: ✭ 29 (+20.83%)
Mutual labels:  inject
ILject
Provides a way which you can load a .NET dll/exe from disk, modify/inject IL, and then run the assembly all in memory without modifying the file.
Stars: ✭ 25 (+4.17%)
Mutual labels:  inject
dhcpoptinj
DHCP option injector
Stars: ✭ 35 (+45.83%)
Mutual labels:  inject
AtomicX
Browse, Download and Install GSC Mods for Black Ops II (PlayStation 3 & Xbox 360)
Stars: ✭ 20 (-16.67%)
Mutual labels:  inject

Shellcode Loader

Shellcode Loader Engine for Windows. This makes testing and debugging shellcode easier. This is quite simple shellcode loader which simply loads shellcode (binary file) in memory and runs it.

Usage

Start scLoader.exe with commandline and first argument should be path of shellcode to be tested.

scLoader <Path_To_ShellCode>

Shellcode

In hacking, a shellcode is a small piece of code used as the payload in the exploitation of a software vulnerability. -Wikipedia

Resources

Shellcodes are pieces of machine code which run can independently.

  • They are mostly used in Hacking but its applications are not limited to it.
  • They can be used as functions which perform specific task just like plugin.
  • In managed (.Net) or interpreted environment, they can be used to execute performance critical tasks.
  • They sre generated by JIT Compilers which compile high level languages to machine code when needed.

Normally shellcodes are written in assembly language and then compiles using NASM, but there are techniques which allow shellcode development through C/C++.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].