comrade's bureau

comments?

Sources


This page contains various source codes I have written over the years. Most of the stuff here is probably outdated/obsolete/deprecated/irrelevant. Though you may find something useful :). Let me know if there any problems by leaving a comment at the bottom of the page.

Most of the source codes here that were written for FASM will probably require a version 1.4x of FASM (which is quite old). They will also require additional include/macro files that do not come with the standard FASM package. You can download these here.


, version 1.1 10.03.2004 cmdasm

dll2inc

Lists the exports of a given DLL and produces a FASM include file. Now has the ability to import in ANSI or UNICODE (/a and /u switches). I used this back in the day FASM was still at v1.4, so this might be irrelevant now. Who knows.

download
, version 1.0 24.01.2004 vbasicscript

Dynamic Page Generator

An old VBScript I used to generate an older version of this site. Not sure why anyone would want to look at this.

download
, version 1.0 03.01.2004 cmdasm

mkpath

Utility for creation of nested path: mkpath.exe c:\dir\subdir - will create c:\dir, and then c:\dir\subdir.

download
17.12.2003 asm

dns-mx

Some assembly code for MX record look-up from a DNS server. Tons of spaghetti code back from the days when I thought asm was really cool. To compile, see the notice above about FASM code.

download
, version 1.0 14.12.2003 guiasm

Linked List

An example of linked lists in assembly. Has a Win32 dialog GUI, made in FASM.

download
, version 1.0 16.10.2003 cmdasm

Service Control Manager

Utility for quickly loading a kernel-mode driver and executing it. How it works: connects to NT SCM, creates a new service, runs it.

download
12.08.2003 winguidelphi

DetectSpy

Detect if spying (for trainers). Checks if any known trainer-spying programs are running, as well as if APIs like ReadProcessMemory/WriteProcess memory have been hooked by someone. The routines can be adapted to your own Delphi trainer.

download
03.06.2003 graphicsdosasm

circle

Draws circles in mode 13h (DOS).

download
31.05.2003 graphicsdosasm

roto256

rotozoomer in 256 bytes (asmcompo #7). In DOS.

download
, version 1.0 17.05.2003 asm

Library Name

Retrieves library name from module handle. Really, I forgot what this does. I think somebody asked me to make this.

download
, version 1.0 02.05.2003 guiasm

Knob

Example of radial knob in win32 assembly. I remember someone on the Win32asm community boards wanted an example of doing arctangent, so I wrote this.

download
27.01.2003 winguiasm

Dialog Colour

Displays how to colour dialogs in Win32 environment.

download, readme, screenshot
27.01.2003 winguiasm

Raw Bitmap

Displays monochrome bitmap (32x32) on dialog.

download, readme, screenshot
14.01.2003 winguiasm

SelfSave

SelfSave is application that attaches code to foreign process and writes new data onto its own executable using this attached code. How it works: opens the explorer.exe process, creates a remote thread in there; the remote thread waits until selfsave.exe quits, at which point it opens selfsafe.exe file for writing, and updates a string inside it.

download, readme, screenshot
12.01.2003 winguiasm

GVIHook

This utility hooks GetVolumeInformation() API in foreign process and prompts user for new volume name when this API is called. This is a really quirky way of hooking APIs, but it works. These were my first attempts at API hooking.

download, readme, screenshot
31.12.2002 wincmdasm

Machine Reader

Machine Reader is tool that iterates through given file-mask and reads PE machine word from file header.

download, readme
15.12.2002 winvbasic

ImgInfo

COM library for retrieving dimensions of image.

download
09.12.2002 graphicsdoscmdasm

mBMPView

Limited 95-byte BMP viewer for DOS.

download, readme
08.12.2002 winguigraphicsasm

TopText

Demonstrates displaying of transparent text on top of screen. Uses GDI paths and regions to trace out the path drawn by rasterizing a string with some font, converts that path to a region, and sets the region to the window, creating a transparent window.

download, readme
06.12.2002 winguiasm

Threads

Example of how to use threads using Win32 API. It has 3 threads running in parallel, all updates a variable. Uses no locks on the variable because I didn't know really know thread programming in 2002. Plus I had a single processor machine back then, so I never really cared.

download, readme, screenshot
, version 1.01 01.12.2002 wincmdasm

Format File

Template file formatting utility. Marginally useful for batch files to insert variables into a template file. Not very flexible.

download, readme, screenshot
28.11.2002 winasm

Linker Version

This utility retrieves linker version from PE file. I think someone on the forums asked me to make this.

download, readme
24.11.2002 winpatchguiasm

Trillian MSN Static IP Patcher

Patch for Trillian's msn.dll to enable users behind firewalls transfer files through MSN. Probably outdated a thousand times over, considering this was made in 2002.

download, readme
23.11.2002 wincmdasm

strdel

Assembly routine for removal of bytes inside string.

download, readme
, version 1.01 14.10.2002 winguigraphicsasm

4kb Keygen Template

4kb keygen template for AntiCrack Contests (http://contests.anticrack.de). I got like 4th place or something, I don't remember.

download, readme, screenshot
22.08.2002 scriptmirc

HTTP Downloader mIRC Script

Provides interface to download files inside mIRC.

download, readme
18.08.2002 scriptasp

Guestbook ASP Script

Simple text-file-based guestbook for Active Server Pages.

download
11.08.2002 wingraphicsasm

Tross Intro

Intro for Tross/CRO (http://www.scener.tk/). Contains some mediocre effects: a sine-waved image, 3D bobs with morphing.

download, screenshot
08.08.2002 cmdasm

rc4

RC4 encryptor/decryptor.

download
18.07.2002 wincmdasm

Lempel-Ziv 77 Implementation

x86 assembly implementation of Lempel-Ziv 77 compression algorithm. Contains assembly routines, plus a command-line interface. The code is pretty well tested, and I actually successfully used in some other projects I had. With the regards to compression ratio, its pretty bad.

download, readme
, version 1.11 15.07.2002 winguiasm

Image Viewer

JPEG/GIF/BMP image viewer, using OLE interface. How it works: we have a simple Win32 window, and we use OleLoadPicture to load a picture. This is useful because you can load JPEG/GIF for your intro/cracktro/keygen/whatever with very little code (the alternatives are ijg/inteljpeg which weigh a lot of kilobytes).

download, readme, screenshot
13.07.2002 wincmdasm

Match Routine

x86 assembly implementation of wildcard string matching routine. Supports * and ? characters. This is really bad spaghetti code which I don't understand anymore. Might have bugs, but I do use it extensively in lots of projects and haven't found a problem so far.

download, readme
29.06.2002 winguiasm

Auto-Complete Combo Box

Demonstration of an auto-complete combo box with Win32 API and asm.

download, readme
, version 1.01 25.05.2002 winpatchasm

WinMX Loader

Memory loader (in-memory patcher) for WinMX v2.6 to delete files for real, instead of moving them to Recycle Bin. Probably outdated since WinMX no longer exists.

download, readme
17.03.2002 scriptmirc

Google mIRC Script

Provides interface to retrieve best Google search result in mIRC. Might not work anymore, considering it was made in 2002.

download, readme
, version 2.1 10.03.2002 winasm

No Imports

Demonstrates non-import-table API resolving. Still very useful snippet of code for injected code/shell code to get a pointer to LoadLibrary/GetProcAddress.

download, readme
, version 1.1 28.02.2002 wingraphicsasm

Flares 4kb Intro

4kb intro for asmcompo #6. I got 2nd place with this, losing out to matja whose entry was in C!

download, readme, screenshot
04.12.2001 graphicsdosasm

1kb Intro

1kb intro for asmcompo #5. Its for DOS, just draws sine-waved palette circles.

download
22.10.2001 winguiasm

Own API Hooker

Hooks MessageBoxIndirectA() inside own process.

download, readme
16.08.2001 wincmdasm

HTTP Scanner

Scans for 401 (password protected) in Class-C IP range.

download, readme
11.08.2001 winguigraphicscasm

Scroller

Several simple and sine-wave side-scrollers in C and win32 assembly.

download, readme
, version 1.1 06.07.2001 graphicsdosasm

Tiny Snow

95-byte DOS snow.

download, readme
, version 1.01 28.05.2001 winguiasm

Anaglyph

Image channel combination utility.

download, readme
27.05.2001 winguiasm

Structured Exception Handling

x86 assembly implementation of error handling. Not very good code, I still didn't fully understand Win32's SEH when I wrote this.

download, readme
June 25, 2002 wincmdasm

Text File Format Converter

Utility to convert to/from UNIX/DOS text-file formats.

download, readme, screenshot

Comments

reply (2008-06-23 17:25:40) heh wrote:
You asked for comments... seems like you've gotten few :P
reply (2008-07-30 03:00:59) ajkiller wrote:
Better
reply (2008-08-07 17:11:21) (anonymous) wrote:
what happened to desktop icon saver ?
Its by far single most useful app.
cheers,

RM
reply (2008-08-31 04:46:06) comrade replied:
Its incompatible with Vista and non-English icon names. I will post it as soon as I update and give it an interface. (Just a menu item when you right-click the desktop).
reply (2008-10-05 03:54:38) el8 wrote:
elite
reply (2008-11-09 21:46:06) (anonymous) wrote:
Lots of helpful stuff here!
reply (2008-11-13 15:22:17) wht wrote:
Many thanks for the sources! I was looking for a wildcard matching routine, and yours was very helpful! Thank you very much again for your generosity!
reply (2008-11-14 01:56:06) Hsfaryjq wrote:
Very Good Site pornhub porn 44830
reply (2008-11-14 03:03:27) Gtaivfsg wrote:
Wonderfull great site xrated movies ssul
reply (2008-11-14 04:40:50) Iihcpnuz wrote:
magic story very thanks gay porntube %))
reply (2008-11-14 05:41:03) Vjzpfygs wrote:
Best Site Good Work youngporn toplist ghg
reply (2008-11-14 07:40:05) Oqzsfzri wrote:
real beauty page redtube similar 238
reply (2008-11-14 08:19:21) Isxhpawr wrote:
Excellent work, Nice Design free xxxtv porno channels >:-DDD
reply (2008-11-14 10:34:04) Wsyqamsx wrote:
real beauty page free porn movies sextube =-D
reply (2008-11-14 10:53:46) Mqxozryf wrote:
Best Site good looking porntv flash >:-OOO
reply (2008-11-14 13:23:27) Gfrztbqi wrote:
magic story very thanks free xxxrated :-)
reply (2008-11-14 13:32:01) Ftbrwnnr wrote:
Good crew it's cool :) free sextv1 :OO
reply (2008-11-14 16:17:51) Rxammejv wrote:
Excellent work, Nice Design porntv sex >:-(((
reply (2008-11-14 16:22:33) Sqqbjveg wrote:
Best Site Good Work xhamsters hjzo
reply (2008-11-14 18:56:58) Hvomgjyd wrote:
It's serious pornotv :]]
reply (2008-11-14 21:23:26) Fwbrmwlv wrote:
Best Site Good Work porntv online ctlsmk
reply (2008-11-14 22:13:15) Oyypkuqg wrote:
i'm fine good work Sex Porntv Online 37010
reply (2008-11-14 23:40:17) Ougaqzhb wrote:
Cool site goodluck :) sextv 1 %OO
reply (2008-11-15 00:48:26) Eaedkpmk wrote:
Thanks funny site Free Online Porntv kiula
reply (2008-11-15 02:02:09) Ecyyiqyj wrote:
Jonny was here sextv online dlb
reply (2008-11-15 03:35:16) Behfqony wrote:
Gloomy tales Porntv Sex 282150
reply (2008-11-15 04:32:11) Xrmrmklj wrote:
Good crew it's cool :) cliphunter videos akyv
reply (2008-11-15 06:30:55) Bzzytpbf wrote:
I'm happy very good site 18 Sextv :PPP
reply (2008-11-15 09:17:05) Tpoocofa wrote:
Best Site Good Work Free Online Porntv 385
reply (2008-11-15 09:40:25) Eolpulfy wrote:
this is be cool 8) porn pichunter 2158
reply (2008-11-15 12:01:45) Xgalnkkr wrote:
this post is fantastic Sextv Online 205217
reply (2008-11-15 12:11:39) Umhlmlel wrote:
Gloomy tales pornhub video =((
reply (2008-11-15 14:54:15) Cexpvkch wrote:
Cool site goodluck :) adult website like porntube 3630
reply (2008-11-15 14:57:56) Ivcjjkjm wrote:
Thanks funny site Porntv Online 8))
reply (2008-11-15 18:01:33) Kbocwhao wrote:
good material thanks Porntv Sex 566274
reply (2008-11-15 20:16:18) Hnbalfhc wrote:
Good crew it's cool :) hard sextube 682509
reply (2008-11-15 20:55:03) Wxrntcec wrote:
Very Good Site Xxxtv 918575
reply (2008-11-15 22:44:30) Trrxpwjn wrote:
Excellent work, Nice Design you tube8tv %DDD
reply (2008-11-15 23:39:08) Nghihdzs wrote:
Best Site good looking Sextv >:-]]]
reply (2008-11-16 01:04:16) Hjckednq wrote:
Good crew it's cool :) xxxrated 7317
reply (2008-11-16 02:19:23) Wukkgrms wrote:
Best Site good looking Xxxtv Online 81485
reply (2008-11-16 03:30:01) Ysepiuei wrote:
free porn videos xhamster >:]]
reply (2008-11-16 05:57:38) Ozhurugz wrote:
This site is crazy :) watch free xmovies :OO
reply (2008-11-16 07:53:04) Hsvatymi wrote:
lolitasex %-(
reply (2008-11-16 08:29:44) Myfiwbru wrote:
Best Site good looking xnxx Downloads 80704
reply (2008-11-16 10:42:46) Xrrxsxuq wrote:
magic story very thanks lolitas fucking 066
reply (2008-11-16 11:09:42) Lfqxyhfb wrote:
Gloomy tales youporn xtube ffz
reply (2008-11-16 13:35:51) Cemfaawg wrote:
I'm happy very good site lolitateens 244700
reply (2008-11-16 16:38:52) Jbsyujli wrote:
This site is crazy :) free lolita girl porn pics >:)))
reply (2008-11-16 16:40:23) Ipriugpm wrote:
I'm happy very good site youporn gay >:]]]
reply (2008-11-16 19:15:24) Reeaxuog wrote:
free incesttube %]
reply (2008-11-16 19:27:04) Bzbktdee wrote:
This site is crazy :) young little preteen adolescent lolita porn nude bhttvm
reply (2008-11-16 21:47:53) Qqqbergm wrote:
this is be cool 8) zoo toob =-(((
reply (2008-11-16 22:09:38) Cdvtqqcr wrote:
Jonny was here young girls little lolita preteen, lolitas xxx =PP
reply (2008-11-17 00:18:59) Vaadvuqj wrote:
Good crew it's cool :) redporntube =O
reply (2008-11-17 02:58:35) Nhmpuxzo wrote:
real beauty page Terra patrick porn %]]
reply (2008-11-17 03:50:38) Okgetcrh wrote:
magic story very thanks preteen lolita sex preteen porn ysdzn
reply (2008-11-17 08:31:21) Mlpbltol wrote:
Good crew it's cool :) Porntv Free 088
reply (2008-11-17 12:45:20) Iuvfyadw wrote:
little preteen lolitas, lolitas :(
reply (2008-11-17 14:14:49) Wesuqyyb wrote:
Very interesting tale Free Xhamster ybej
reply (2008-11-17 15:53:18) Ztpqikwp wrote:
i'm fine good work boys food movies 617
reply (2008-11-17 17:13:27) Hbhbpkap wrote:
Best Site Good Work Porntv touvbp
reply (2008-11-17 20:06:29) Dxsfclum wrote:
Excellent work, Nice Design Sextv 631357
reply (2008-11-18 09:07:50) Zxowxwwx wrote:
Very funny pictures xxx cliphunter >:-[[[
reply (2008-11-18 11:56:45) Qrwhxqum wrote:
i'm fine good work free maxporn movies xyjg
reply (2008-11-18 17:35:09) Uoepctok wrote:
perfect design thanks free porntube clips 14229
reply (2008-11-18 20:20:08) Juzxfvse wrote:
real beauty page redtube fisting vvlcpd
reply (2008-11-18 22:57:38) Vlneovjb wrote:
Good crew it's cool :) sextube similar 8[[[
reply (2008-11-19 04:49:22) Lanxulga wrote:
Good crew it's cool :) free xrated videos 8DD
reply (2008-11-19 07:38:25) Qcnbypfa wrote:
Best Site good looking free porn videos xhamster :-(
reply (2008-11-19 10:21:17) Makegoww wrote:
It's serious xmovies wmv kpophe
reply (2008-11-19 13:12:43) Vslhmmes wrote:
Jonny was here Lesbiantube bpsxys
reply (2008-11-19 16:00:40) Ijgtctjx wrote:
good material thanks free xtube porn xnimld
reply (2008-11-19 16:13:51) Clvvazns wrote:
Excellent work, Nice Design boysfood com hxkz
reply (2008-11-19 18:38:35) Slqjzmwy wrote:
Best Site good looking yobt porn galleries :(((
reply (2008-11-19 19:05:19) Cddbajpj wrote:
It's funny goodluck free streaming porntv %[[
reply (2008-11-19 21:13:35) Kosyoemv wrote:
real beauty page free youporn movies 310
reply (2008-11-19 21:56:39) Mdfwkjgu wrote:
i'm fine good work Free sexmovies >:[
reply (2008-11-19 23:46:37) Gykfbffb wrote:
It's funny goodluck maturetube %-[
reply (2008-11-20 00:43:12) Uvroeiyr wrote:
Gloomy tales free online porntv wwep
reply (2008-11-20 02:21:20) Pdvrbhmh wrote:
Cool site goodluck :) free pussytube 0603
reply (2008-11-20 03:33:24) Ltcwzuve wrote:
Punk not dead xxxtv free 8-DDD
reply (2008-11-20 04:57:15) Jdjazvpu wrote:
Thanks funny site Tube videos 486
reply (2008-11-20 06:22:38) Wrioyptc wrote:
this post is fantastic sexy xxxtv pqqrt
reply (2008-11-20 07:32:07) Ouimkqou wrote:
It's serious gratuit porntv podij
reply (2008-11-20 09:20:02) Qqgjkdvx wrote:
Punk not dead free 100 live xxxtv >:-[[
reply (2008-11-20 10:17:50) Qvrhgjyb wrote:
real beauty page download xxxtv gkwrh
reply (2008-11-20 12:14:44) Qauitrot wrote:
It's serious free 100 live xxxtv =-)))
reply (2008-11-20 13:08:03) Eaguyxzo wrote:
Very Good Site hardsextube 5126
reply (2008-11-20 15:12:29) Cwipsqba wrote:
Very funny pictures porntv teen aipv
reply (2008-11-20 15:52:19) Dxmclpcq wrote:
Very funny pictures freeyouporn 4861
reply (2008-11-20 18:09:22) Arjvnext wrote:
Punk not dead sites like porntube 5121
reply (2008-11-20 18:32:18) Mayldmhy wrote:
good material thanks Pornn 233

Post a comment


Allowed HTML tags: <b> for bold, <i> for italics, <u> for underline, <pre> for code.