Skip to Main Content
Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals
book

Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals

by James C Foster
April 2005
Intermediate to advanced content levelIntermediate to advanced
700 pages
20h 39m
English
Syngress
Content preview from Sockets, Shellcode, Porting, and Coding: Reverse Engineering Exploits and Tool Coding for Security Professionals
93 /*
94 * custom code goes here.
95 */
96
97
while(g_bStop == FALSE)
98 {
99 Sleep(1000);
100 }
101
102
UpdateService(SERVICE_STOPPED);
103 }
104
105
int
106 main(DWORD argc, LPSTR argv[])
107 {
108 SERVICE_TABLE_ENTRY dispTable[2];
109 BOOL ret = FALSE;
110
111
memset(&dispTable, 0x00, sizeof(SERVICE_TABLE_ENTRY) * 2);
112
113
dispTable[0].lpServiceName = SERVICE_NAME;
114 dispTable[0].lpServiceProc = ServiceMain ;
115
116
// start service, service execution
117 // begins in ServiceMain function
118 ret =
119 StartServiceCtrlDispatcher(dispTable);
120
121
return(ret == FALSE ? 1 : 0);
122 }
Analysis
At line 106, the program’s main() function is declared.This function serves only
to set up the ServiceMain function.The ServiceMain function is then executed as
the service’s main ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

32/64-Bit 80x86 Assembly Language Architecture

32/64-Bit 80x86 Assembly Language Architecture

James Leiterman

Publisher Resources

ISBN: 9781597490054