Archive | January, 2009

Forcing ARP table flush

I just ran across this method for remotely forcing a gateway to flush an arp entry when you move IP addresses around. 1) Download/install “arping” from the following URL. System will need libnet-devel and libpcap: http://www.habets.pp.se/synscan/programs.php?prog=arping 2) Run this command: arping -c 1 -S a.a.a.a b.b.b.b Where “a.a.a.a” is the IP you’ve moved, and “b.b.b.b” [...]

I just ran across this method for remotely forcing a gateway to flush an
arp entry when you move IP addresses around.

1) Download/install “arping” from the following URL. System will need
libnet-devel and libpcap:

http://www.habets.pp.se/synscan/programs.php?prog=arping

2) Run this command: arping -c 1 -S a.a.a.a b.b.b.b

Where “a.a.a.a” is the IP you’ve moved, and “b.b.b.b” is the gateway IP.
Run this from the server to which you moved the IP. This should force
the gateway to flush its arp entry for that source IP.

View Comments Continue Reading →

Plesk Horde Vulnerablity Fix

Below is the quick fix for the Plesk-Horde vulnerability. Manually apply a patch to the Horde Permission’s User Interface code to “remove” the “All Authenticated Users” option from the HTML form: A quick fix to hide this setting in the UI code is to add HTML comments (“<! –” … “–>”) around the “All Authenticated [...]

Below is the quick fix for the Plesk-Horde vulnerability.

Manually apply a patch to the Horde Permission’s User Interface code to
“remove” the “All Authenticated Users” option from the HTML form:

A quick fix to hide this setting in the UI code is to add HTML comments
(“<! –” … “–>”) around the “All Authenticated Users” options in the
HTML form. Basically, it is to add “<! –” at line 63 and “–>” at
(original) line 81 in /usr/share/psa-horde/templates/shares/edit.inc

View Comments Continue Reading →

Convert SSL cert from PK12 to PEM

Here’s the openssl command to convert an SSL cert/key from PK12 (windows) to PEM format: openssl pkcs12 -in cert.pfx -out cert.pem -nodes Bookmark on Delicious Digg this post Recommend on Facebook share via Reddit Share with Stumblers Tweet about it Subscribe to the comments on this post Print for later Bookmark in Browser Tell a [...]

Here’s the openssl command to convert an SSL cert/key from PK12 (windows) to PEM format:

openssl pkcs12 -in cert.pfx -out cert.pem -nodes
View Comments Continue Reading →