March 26, 2007 at 19:08
· Tags: apache, Brent Baccala, Cape Town, csr reader, csr viewer, Linux, Maryland, openSSL, OU=Certification Services Division, Pasadena, Public Key, Public Key Algorithm, read csr, ssl, Thawte Consulting, United States, view csr, view csr contents, Western Cape, www.freesoft.org/emailAddress=baccala
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:
- Howto Create Generate a Certificate Signing Request
- SSL: Verifying that a Certificate matches a Private Key
- View x509 certificate details
- HTTP Request Smuggling
- Howto: Convert an OpenSSL key to a public/private OpenSSH key-pair
- an ex-microsoft employee’s view on Linux and the open source community
- GnuPG/GPG: Exporting your Public Key
- SSH Key for Login Without Password
- Openssl to create an unencrypted key from an encrypted one (Remove password)
Permalink
March 25, 2007 at 19:00
· Tags: CRM, Linux, Open Standards, PHP, SOA, vtiger soap, vtiger web service, vtiger web services, vtiger webservice, vtiger webservices
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:
- Generic SOAP/WSDL Client
- Online WSDL Validator and Invocation Tester
- array2object and object2array (PHP)
- Howto Create a libstdc++ Compat on Debian (e.g. libstdc++-libc6.2-2.so.3)
- soapUI: Easy Webservice Invocation and Testing Application
- Howto: Create your own Debian or Ubuntu package repository
- Android Open Source Phone Shown at CES 2008
- PHP Professional Tip #1 – Type Hinting
- Use an old PC to create your own free SqueezeBox
- Monitor Configuration Files
Permalink
March 25, 2007 at 9:58
· Tags: News
Related posts:
- Ønsker 2006
Permalink
March 22, 2007 at 21:25
· Tags: Links
My 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:
- Fighting Form Spam with CSS
- WordPress plugins
- Syntax Highlight Code in WordPress Posts
- Block referer spam easily
- Avoid Spam in Input Forms
- Sending Spam with SWT
- Add del.icio.us Bookmarks to WordPress
- Crack or Recover Read-only Password Protected Word Document
- Use an old PC to create your own free SqueezeBox
- Convert Hex Color to RGB
Permalink
March 22, 2007 at 7:32
· Tags: apache, databases, InnoDB, Linux, low memory mysql, MySQL, mysql low memory, mysql memory limit, mysql memory optimization, Open Source, optimization, performance, reduce mysql memory usage
MySQL 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:
- MySQL Optimization and Performance Tips
- Optimize MySQL Performance With MySQLTuner
- Howto: How to Reset the MySQL Root Password
- MDB Tools to export (migrate) from mdb (Microsoft Access format) to MySQL
- Sun acquires MySQL
- Slow Query Log Analyzes Tools
- WSJ: Sun to Use Flash Memory in Servers
- WSJ: Sun to Use Flash Memory in Servers
- MySQL Performance Monitoring and Optimization Tools
- Compressing mysqldump output – mysql, gzip, bzip2 and LZMA (7z)
Permalink