& its working like a charm…
December 16th, 2005
“”" After 2 days of hair pulling, 1 day of slogging, finally… its working… as expected, without any major setbacks to the design
“”"
[root@hddlntd6010590 sticker]# make clean; make
/bin/rm -f main.o sticker.o stickerDebug.o stickerRegisters.o stickerException.o stickerBase.o sticker *~
g++ -c -g main.cpp -o main.o
g++ -c -g sticker.cpp -o sticker.o
g++ -c -g stickerDebug.cpp -o stickerDebug.o
g++ -c -g stickerRegisters.cpp -o stickerRegisters.o
g++ -c -g stickerException.cpp -o stickerException.o
g++ -c -g stickerBase.cpp -o stickerBase.o
g++ main.o sticker.o stickerDebug.o stickerRegisters.o stickerException.o stickerBase.o -o sticker
[root@hddlntd6010590 sticker]# ./sticker
Enter PID : 1
Sticker[debug] : Initializing Sticker
Sticker[debug] : Sticker initialized
Sticker[debug] : Entering doPtrace
Sticker[debug] : Attaching to victim
Sticker[debug] : Entering ptrace stub
Sticker[debug] : Insufficient privileges to trace the process
Exception (main) : Insufficient privileges to trace the process
[root@hddlntd6010590 sticker]# ./sticker
Enter PID : 100
Sticker[debug] : Initializing Sticker
Sticker[debug] : Sticker initialized
Sticker[debug] : Entering doPtrace
Sticker[debug] : Attaching to victim
Sticker[debug] : Entering ptrace stub
Sticker[debug] : Specified process does not exists
Exception (main) : Specified process does not exists
[root@hddlntd6010590 sticker]
Posted in It calls for a blog..., Sticker | Comments (0)