Author Archive
How to disable Skype Home popup?
by d2 on Sep.05, 2011, under solution
Download older version of skype: http://download.skype.com/msi/SkypeSetup_5.3.0.120.msi Uninstall your current Skype Navigate to c:\Users\<YOUR_USERNAME>\AppData\Roaming\Skype\ Delete shared_dynco and shared_httpfe folders create files called shared_httpfe and shared_dynco (FILES not FOLDERS!) Install Skype 5.3 That’s it. No more annoying popups from Skype. Well, at least for now…
GPG FTW!
by d2 on Aug.01, 2011, under info
Here is my public key – sign any email or file you wish to send to me. Thanks!
Problem solving flowsheet
by d2 on Mar.09, 2011, under solution
For those who can’t solve some particular tasks….
how to change nginx server string?
by d2 on Jul.06, 2010, under bash, code, solution
If you want to hide web server string which is shown each time you perform request, this might be howto for you ;) Usual nginx response looks like that: HTTP/1.1 200 OK Date: Tue, 06 Jul 2010 08:14:19 GMT Server: nginx/0.7.67 To get rid of it you need to get source code, change it and [...]
mod_rpaf vulnerability?
by d2 on Jun.14, 2010, under bug, info
rpaf is for backend Apache servers what mod_proxy_add_forward is for frontend Apache servers. It does excactly the opposite of mod_proxy_add_forward written by Ask Bjørn Hansen. It will also work with mod_proxy in Apache starting with release 1.3.25 and mod_proxy that is distributed with Apache2 from version 2.0.36. It changes the remote address of the client [...]
calculating md5 sum under bash
by d2 on Jun.14, 2010, under bug, solution
Recently I wrote short bash script to check files integrity inside directory and saw that all sums were wrong :) This couldn’t be a coincidence, so I decided to check with other tools. Well, this is what I found: $ php -r “echo md5(‘test1234′);” 16d7a4fca7442dda3ad93c9a726597e4 echo test1234|md5sum|awk ‘{print $1}’ eddc02b200ae8a15a7e6b44ac05bf5f1 Reason? Pretty simple. I used [...]
Apache2 [emerg] (28)No space left on device: Couldn’t create accept lock
by d2 on Jun.10, 2010, under solution
When restarting Apache2 it’s possible to hit this error which reveals only in error.log. From console’s point of view, restart/start/stop looks OK, but Apache2 won’t come up ad won’t bind to any port. First check if you have enough space (# df -h) and then study logs and strace output: # tail -10 f /var/log/apache2/error.log [...]
New (old) bug in ThunderBird (3.0.4)
by d2 on Jun.08, 2010, under bug
Today, after some time spent on research HTML I thought I have discovered new bug in ThunderBird (v. 3.0.4). I prepared html code: <form action=”http://some.server.com/hcp/” method=”get”> <input type=”text” name=”u_firstname” value=”test”/ size=”25%” /> </form> And sent to myself as HTML using ThunderBird. Now, when I opened this email I input with default “test” text. Nothing wrong [...]
Directory Enumeration Killer
by d2 on Jun.02, 2010, under cfg, sysadmin
From time to time I see some scanning on my website. This usualy dies after 5 or so minutes, but it’s pretty annoying and space-consuming so I thought recently that it would be nice to get rid of those scans. An example – let say – attack looks like: ** IP ** – - [02/Jun/2010:14:35:59 [...]
SSH (no key forwarding)
by d2 on Jun.02, 2010, under solution
This sometimes happens on Linux. You are expecting private key to be forwarded to remote host, but it’s not. Root cause here is key-agent which for gnome might be ssh-agent. It sometimes dies for no reason but resides in system as zombie process. You can “kill” zombie process, but 99,9% you will fail :) Anyways, [...]