Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~4K People Reached
Favorite Tags

10 Posted Topics

Member Avatar for ivanCeras

[B]Com structure :=>[/B] jump here data1 db ? data2 db ? . . . . here : call ActualCode . . . . call _exit [B]EXE structure [/B] db 'MZ' 510 byte or more in multiple of 16 :=> MZ header which contains jump ip,SP,BP,filesize in paragraph,number of relocatable entry, …

Member Avatar for NotNull
0
2K
Member Avatar for Scribbller
Member Avatar for originof

Linux runs in 32bit protected mode whre all ports are blocked . The code u r showing will only gonna work in real mode (i.e. 16 bit , MsDos style). If you really need to execute in/out instruction then consider coding the above prog as a device driver or kernel …

Member Avatar for Lord Soth
0
158
Member Avatar for joshilay

Mainly used in TSR programming in old days , where old IVT vector function 's address is stored as a pointer to a function.

Member Avatar for Laiq Ahmed
0
115
Member Avatar for CrazyDieter

Just do a while(1) loop and inside read all running prosesses by using PSAPI . CreateToolhelpSnapshot(..) as far i can remember . Next do a CreateRemoteThread for all process (you need to have suffiecient permission , u can override it). Next Run the thread by ResumeThread or RunThread ... (can't …

Member Avatar for Eddy Dean
0
664
Member Avatar for vov4ik

Var contains data which will be evaluated as ASCII , but as 4 is in deciaml it will be evaluated as ASCII value 4 , which is a nonprintable chracter. [B]You need to convert 4 to ASCII "4" [/B] . To convert 4 to ASCII "4" you need to add …

Member Avatar for vov4ik
0
160
Member Avatar for Fede

You need to learn how to write network programming using Socket . Use the socket to connect to a host by ip or resolve the ip by DNS search , and to the port 23. Upon connect you need to parse the user input as a prompt . It will …

Member Avatar for thandermax
0
703
Member Avatar for Tyreses

You r tring to write a GUI programming but using Console output . Please change the Console.**** to something else in GUI

Member Avatar for Lord Soth
0
112
Member Avatar for viermus

DOS uses a internal DTA buffer to do it's internal disk access job. Also u shold not interrupt the DOS in the middle of some work.. As DOS in nonreentrant. U shold check the status of DOS BUSY FLAG , if it is 0 then run ur code or sheddule …

Member Avatar for thandermax
0
136
Member Avatar for thandermax

Dear all members, I have a problem . As i use dial up network as a mean to get to the internet it is some times costly to upload my code to internet and then test . As i am learning PHP recently , if any body suggest any way …

Member Avatar for darklordsatan
0
180

The End.