momo971
May 7th, 2009, 01:25 PM
Open Skype without login.
Open terminal an enter this command to get PID's:
ps aux | grep skype
You should get something like :
momo 30234 0.0 0.0 4024 584 ? S 19:03 0:00 /bin/sh /usr/bin/skype
momo 30235 4.1 0.9 87708 39120 ? Rl 19:03 0:25 /usr/bin/skype.real
momo 30554 0.0 0.0 7540 912 pts/0 R+ 19:14 0:00 grep skype
Get PID from skype.real ( here 30235 )
Now let's use some system calls and signals application over skype ( strace) :
strace -f -p30235 &>skype.log &
Now log into your skype account.
After login into skype launch this command in terminal:
grep bookmarks skype.log
This shows us the result of system calls and signals application of skype :[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarks.html", {st_mode=S_IFREG|0644, st_size=28240, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-06.json", {st_mode=S_IFREG|0600, st_size=8807, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-04-30.json", {st_mode=S_IFREG|0600, st_size=6286, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-05.json", {st_mode=S_IFREG|0600, st_size=6651, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-04-29.json", {st_mode=S_IFREG|0600, st_size=6286, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-07.json", {st_mode=S_IFREG|0600, st_size=8807, ...}) = 0
So why a chat and VOIP software looks for my bookmarks ???
Open terminal an enter this command to get PID's:
ps aux | grep skype
You should get something like :
momo 30234 0.0 0.0 4024 584 ? S 19:03 0:00 /bin/sh /usr/bin/skype
momo 30235 4.1 0.9 87708 39120 ? Rl 19:03 0:25 /usr/bin/skype.real
momo 30554 0.0 0.0 7540 912 pts/0 R+ 19:14 0:00 grep skype
Get PID from skype.real ( here 30235 )
Now let's use some system calls and signals application over skype ( strace) :
strace -f -p30235 &>skype.log &
Now log into your skype account.
After login into skype launch this command in terminal:
grep bookmarks skype.log
This shows us the result of system calls and signals application of skype :[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarks.html", {st_mode=S_IFREG|0644, st_size=28240, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-06.json", {st_mode=S_IFREG|0600, st_size=8807, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-04-30.json", {st_mode=S_IFREG|0600, st_size=6286, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-05.json", {st_mode=S_IFREG|0600, st_size=6651, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-04-29.json", {st_mode=S_IFREG|0600, st_size=6286, ...}) = 0
[pid 30848] stat64("/home/momo/.mozilla/firefox/kpu1qtt3.default/bookmarkbackups/bookmarks-2009-05-07.json", {st_mode=S_IFREG|0600, st_size=8807, ...}) = 0
So why a chat and VOIP software looks for my bookmarks ???