8000 GitHub - IULOVE/ansicon: Process ANSI escape sequences for Windows console programs.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
/ ansicon Public
forked from adoxa/ansicon

Process ANSI escape sequences for Windows console programs.

License

Notifications You must be signed in to change notification settings

IULOVE/ansicon

 
 

Repository files navigation

ANSICON Latest release

ANSICON provides ANSI escape sequences for Windows console programs. It provides much the same functionality as ANSI.SYS does for MS-DOS.

Requirements

  • 32-bit: Windows 2000 Professional and later (it won't work with NT or 9X).
  • 64-bit: AMD64 (it won't work with IA64).

How it Works

ANSICON injects a DLL into a process, hooking its functions.

Injection

One of three methods is used to inject the DLL.

  • LoadLibrary via CreateRemoteThread for a running process.

  • LdrLoadDll via CreateRemoteThread for a 64-bit .NET AnyCPU process.

  • Adding the DLL directly to the import table, otherwise.

Hooking

Hooking is achieved by modifying import addresses, or the return value of GetProcAddress.

52B5

About

Process ANSI escape sequences for Windows console programs.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 99.7%
  • Batchfile 0.3%
0