| bio | website | |
|---|---|---|
| location | Greece | |
| age | ||
| visits | member for | 2 years, 6 months |
| seen | 1 hour ago | |
| stats | profile views | 1,221 |
A freelance Computer Engineer, with experience mainly on C, Java and all things Un*x...
|
Dec 5 |
comment |
messaging in unix I think the OP is asking about messages as sent using the 'write' command. The question needs to be a lot more specific for an answer to be possible... |
|
Dec 5 |
revised |
Is it possible to decrypt Wireshark packages using web browser certificates? added 127 characters in body |
|
Dec 5 |
comment |
Is it possible to decrypt Wireshark packages using web browser certificates? @Andre White: please read up on Public Key Cryptography before commenting. The browser has the server's per-session public key and this allows it to decrypt the packets that the server encrypts using its per-session private key. The per-session server public key is encrypted with the server private key when it is sent to the browser, therefore a network sniffer cannot compromise it. You would have to compromise the browser itself (e.g. spyware) to do that. |
|
Dec 5 |
answered | Is it possible to decrypt Wireshark packages using web browser certificates? |
|
Dec 5 |
revised |
Does this mean my university is storing passwords insecurely? added 176 characters in body; added 1 characters in body |
|
Dec 5 |
answered | Does this mean my university is storing passwords insecurely? |
|
Dec 5 |
revised |
How to enable a shared object accessing a data file in runtime (UNIX) added 207 characters in body |
|
Dec 5 |
answered | How to enable a shared object accessing a data file in runtime (UNIX) |
|
Dec 5 |
awarded | Nice Answer |
|
Dec 5 |
comment |
gdb appears to ignore executable capabilities Would you mind mentioning the exact error message? |
|
Dec 5 |
comment |
gdb appears to ignore executable capabilities GDB uses the ptrace subsystem. Does it have the CAP_SYS_PTRACE capability ? Does it work with any other binary? E.g. a hello world program ? |
|
Dec 5 |
answered | Is it faster to connect/use MySQL at localhost instead of a domain (even if the domain resolves to the same computer)? |
|
Dec 5 |
comment |
Is it faster to connect/use MySQL at localhost instead of a domain (even if the domain resolves to the same computer)? No, this is not correct. While it is true that using a hostname will result in a DNS query, packets from the local host to ANY IP of the local host go through the loopback interface. They most certainly do NOT go all around the web! |
|
Dec 5 |
revised |
using xor operation to encrypting struct elements added 3 characters in body |
|
Dec 5 |
revised |
Debugging a system call from FUSE added 296 characters in body; added 41 characters in body |
|
Dec 4 |
comment |
Debugging a system call from FUSE Just attach gdb to your filesystem process and set a break point at the start of the callback function. Then you access the filesystem through its mountpoint and trigger the operation you whose callback you want to study. GDB should break at the callback and you can analyse the operaiton of your callback step by step. |
|
Dec 4 |
answered | Semaphores and Locks in Ubuntu |
|
Dec 4 |
revised |
using xor operation to encrypting struct elements added 16 characters in body; added 244 characters in body |
|
Dec 4 |
comment |
using xor operation to encrypting struct elements @Jonathan Leffler: I made my answer more clear on this point, thanks |
|
Dec 4 |
revised |
using xor operation to encrypting struct elements added 311 characters in body |