Archive for March, 2007

View The Contents Of A Certificate Signing Request (CSR)


openssl req -text -noout -in host.csr


Certificate:
   Data:
       Version: 1 (0x0)
       Serial Number: 7829 (0x1e95)
       Signature Algorithm: md5WithRSAEncryption
       Issuer: C=ZA, ST=Western Cape, L=Cape Town, O=Thawte Consulting cc,
               OU=Certification Services Division,
               CN=Thawte Server CA/emailAddress=server-certs@thawte.com
       Validity
           Not Before: Jul  9 16:04:02 1998 GMT
           Not After : Jul  9 16:04:02 1999 GMT
       Subject: C=US, ST=Maryland, L=Pasadena, O=Brent Baccala,
                OU=FreeSoft, CN=www.freesoft.org/emailAddress=baccala@freesoft.org
       Subject Public Key Info:
           Public Key Algorithm: rsaEncryption
           RSA Public Key: (1024 bit)
               Modulus (1024 bit):
                   00:b4:31:98:0a:c4:bc:62:c1:88:aa:dc:b0:c8:bb:
                   33:35:19:d5:0c:64:b9:3d:41:b2:96:fc:f3:31:e1:
                   66:36:d0:8e:56:12:44:ba:75:eb:e8:1c:9c:5b:66:
                   70:33:52:14:c9:ec:4f:91:51:70:39:de:53:85:17:
                   16:94:6e:ee:f4:d5:6f:d5:ca:b3:47:5e:1b:0c:7b:
                   c5:cc:2b:6b:c1:90:c3:16:31:0d:bf:7a:c7:47:77:
                   8f:a0:21:c7:4c:d0:16:65:00:c1:0f:d7:b8:80:e3:
                   d2:75:6b:c1:ea:9e:5c:5c:ea:7d:c1:a1:10:bc:b8:
                   e8:35:1c:9e:27:52:7e:41:8f
               Exponent: 65537 (0x10001)
   Signature Algorithm: md5WithRSAEncryption
       93:5f:8f:5f:c5:af:bf:0a:ab:a5:6d:fb:24:5f:b6:59:5d:9d:
       92:2e:4a:1b:8b:ac:7d:99:17:5d:cd:19:f6:ad:ef:63:2f:92:
       ab:2f:4b:cf:0a:13:90:ee:2c:0e:43:03:be:f6:ea:8e:9c:67:
       d0:a2:40:03:f7:ef:6a:15:09:79:a9:46:ed:b7:16:1b:41:72:
       0d:19:aa:ad:dd:9a:df:ab:97:50:65:f5:5e:85:a6:ef:19:d1:
       5a:de:9d:ea:63:cd:cb:cc:6d:5d:01:85:b5:6d:c8:f3:d9:f7:
       8f:0e:fc:ba:1f:34:e9:96:6e:6c:cf:f2:ef:9b:bf:de:b5:22:
       68:9f

Related posts:

  1. Howto Create Generate a Certificate Signing Request
  2. SSL: Verifying that a Certificate matches a Private Key
  3. View x509 certificate details
  4. HTTP Request Smuggling
  5. Howto: Convert an OpenSSL key to a public/private OpenSSH key-pair
  6. an ex-microsoft employee’s view on Linux and the open source community
  7. GnuPG/GPG: Exporting your Public Key
  8. SSH Key for Login Without Password
  9. Openssl to create an unencrypted key from an encrypted one (Remove password)

Comments

vtiger CRM Webservices: Create New Leads Using PHP-SOAP

The vtiger CRM has a number of Webservices that can be accessed through SOAP. The original examples from vtiger for accessing the services are implemented using NuSOAP. Here I have created an example using the built-in PHP SOAP implementation.


< ?php
$client = new SoapClient(
"http://crm.vtigersite.com/vtigerservice.php?service=webforms&wsdl",
array(
"location" => "http://crm.vtigersite.com/vtigerservice.php?service=webforms",
"compression" => SOAP_COMPRESSION_ACCEPT | SOAP_COMPRESSION_GZIP,
"login" => "admin", // default
"password" => "admin" // default
));

$params = array();
$params["lastname"] = "lastnamea";
$params["email"] = "email@email.com";
$params["phone"] = "phone";
$params["company"] = "company";
$params["country"] = "country";
$params["description"] = "description";

// user id to assign the lead in vtiger
$params["assigned_user_id"] = 1;

$result = $client->__soapCall("create_lead_from_webform", $params);
echo $result;
?>

Related posts:

  1. Generic SOAP/WSDL Client
  2. Online WSDL Validator and Invocation Tester
  3. array2object and object2array (PHP)
  4. Howto Create a libstdc++ Compat on Debian (e.g. libstdc++-libc6.2-2.so.3)
  5. soapUI: Easy Webservice Invocation and Testing Application
  6. Howto: Create your own Debian or Ubuntu package repository
  7. Android Open Source Phone Shown at CES 2008
  8. PHP Professional Tip #1 – Type Hinting
  9. Use an old PC to create your own free SqueezeBox
  10. Monitor Configuration Files

Comments (10)

Fødselsdagsønsker

Related posts:

  1. Ønsker 2006

Comments

Blog Comment Spam and WordPress Anti-Spam Plugins

SpamMy blog keep getting hit by massive spam amounts – for more than 4000 spam comments entries a week.

Most ( around 90% ) of the spam comments are recognized and trapped by the Akismet anti-spam plugin, but this still leaves me with a lot of comments to handle manually.

To get rid of this I installed a anti-spam plugin called Math Comment Spam Protection Plugin. This plugin ask the user a fairly simple math question while filling out the comment form – basic, but very effective.

Related posts:

  1. Fighting Form Spam with CSS
  2. WordPress plugins
  3. Syntax Highlight Code in WordPress Posts
  4. Block referer spam easily
  5. Avoid Spam in Input Forms
  6. Sending Spam with SWT
  7. Add del.icio.us Bookmarks to WordPress
  8. Crack or Recover Read-only Password Protected Word Document
  9. Use an old PC to create your own free SqueezeBox
  10. Convert Hex Color to RGB

Comments (2)

Optimize MySQL for Low Memory Use

MySQL LogoMySQL is a light database engine compared to many of it’s rivals, but for some reason the Debian MySQL-server package contains a setup that makes it very heavy and memory consuming. The Debian version of becomes memory consuming because it comes with config file where MySQL’s most memory consuming and seldom used storage engine InnoDB is enable. As result of this the MySQL server instance uses around 100MB of memory while almost idle.

And here comes the optimization tip.

Since the InnoDB storage engine is used very seldom it can be disable in most cases and let the server save almost about 100MB of memory.

To disable to InnoDB storage engine add this to my.cnf (the default MySQL configuration files) in /etc/mysql/
skip-innodb

More on MySQL and Apache optimization and here

Related posts:

  1. MySQL Optimization and Performance Tips
  2. Optimize MySQL Performance With MySQLTuner
  3. Howto: How to Reset the MySQL Root Password
  4. MDB Tools to export (migrate) from mdb (Microsoft Access format) to MySQL
  5. Sun acquires MySQL
  6. Slow Query Log Analyzes Tools
  7. WSJ: Sun to Use Flash Memory in Servers
  8. WSJ: Sun to Use Flash Memory in Servers
  9. MySQL Performance Monitoring and Optimization Tools
  10. Compressing mysqldump output – mysql, gzip, bzip2 and LZMA (7z)

Comments (5)

Novell Linux Spoof Ad

Comments

Repacked Code Snippet 2.0 With GeSHi Syntax Highlighter Version 1.0.7.18

Comments

Add del.icio.us Bookmarks to WordPress

del.icio.us LogoIt is simple to include remote RSS feeds into a wordpress template. Here a example using del.icio.us bookmarks.

My del.icio.us bookmarks

< ?php
require_once(ABSPATH . WPINC . "/rss-functions.php");
// url containing and the number of items to fetch
wp_rss("http://del.icio.us/rss/methmann", 10);
?>

Just copy and paste this into the template’s sidebar.php file.

Related posts:

  1. Syntax Highlight Code in WordPress Posts
  2. Moved to WordPress
  3. WordPress plugins
  4. Does MSN prefer IIS hosts more than apache hosts?
  5. How to Mount a Remote Filesystem Using SSH and sshfs
  6. Blog Comment Spam and WordPress Anti-Spam Plugins
  7. Novell Linux Dekstop 10 – a linux desktop redesign
  8. Remote Control Your Computer with Your iPhone
  9. GnuPG/GPG: Exporting your Public Key
  10. Emacs visual cheat sheet

Comments

« Previous entries Next Page » Next Page »