Domain Name Industry Briefs by VeriSign

VeriSign is regularly maintaining “Domain Name Industry Brief” reports. Worth to have a look ๐Ÿ™‚

Verisign reviews the state of the domain name industry through a variety of statistical and analytical research.

An extract from the latest report

The fourth quarter of 2012 closed with a base of more than 252 million domain name registrations across all Top-Level Domains (TLDs). The base of Country Code Top-Level Domains (ccTLDs) was 110.2 million domain names…

TLDbysize2012

Direct links to reports

Posted in ICT News, ICT Training and Courses, Security Training, Awareness and Reports | Comments Off on Domain Name Industry Briefs by VeriSign

Cyber risk reports by HP

HP has published the latest revision of their report, available via Security Intelligence and Risk Management page.

The HP 2012 Cyber Risk Report is an annual collaboration among groups within HP Enterprise Security Products that gives organizations a view into the threat landscape

The report is also referred from pages like:

HP-report2012-mobileapplications

 

It is good information to have a look, in addition to other reports available via internet (search for “report” in this site; McAfee, IBM, Symantec, Verizon, Ponemon, PwC…).

The above mentioned pages most propably will contain link to the next years report as well ๐Ÿ™‚

Some direct links to existing reports are available:

Posted in Cybersecurity, Security Incidents and Cases, Security Management, Security Training, Awareness and Reports | Comments Off on Cyber risk reports by HP

Hugin, tool for creating panorama photos

Hugin is a good open source tool for creating panoramas of your overlapping photos of a scenary.

Example: combining 3 sky photos

Hugin contains several options for combining the images. The figure below is obtained after making manual alignment of the selected points (stars) in the photos.

hugin

 

The sky photos are, from left to right, shown below:

panorama3

panorama2

panorama1

The jpg version of the result is shown here (click to enlarge).
The orignal result was big 26MB tif file. No other editing nor filtering is done on the photos, neither there were no filters used in the digital pocket camera. (Except resizing to 50% due to blog upload problems).

hugin-panorama-result

 

Constellations

Stellarium was used to identify the constellations on this photo. The result is shown below (click to enlarge).

panorama-with-constallations

Posted in Audio and Video, Basic Tools, Hobbies and Other Interests, Recommended Free Tools | Comments Off on Hugin, tool for creating panorama photos

DIY Star Chart (planisphere)

There are 2 great sources if you wish to create yor own star chart.

DIY-planisphere-onlinetool

in Wikipedia:

A planisphere is a star chart in the form of two adjustable disks that rotate on a common pivot. It can be adjusted to display the visible stars for any time and date.

The disk and overlay are adjusted so that the observer’s local time of day on the overlay corresponds to that day’s date on the star chart disc. Users hold the planisphere above their head with the eastern and western horizons correctly aligned to match the chart to actual star positions.

One can printout the planisphere, and use hard paper or something else to make them a little stronger.

The final planispheres

First is the result using the planisphere tool, with latitude 60 degree and english language. The tool has another layout format too and that resembles more the Uncle Al’s layout. As the next step, I’ll print this out on bigger paper.

DIY-planisphere

The second is the Uncle Al’s starwheel.

DIY-planisphere-uncleal

Uncle Al’s site contains easy instructions for using it.

  • Set date and time of night by rotating the Star Wheel in the Star Holder until your desired time of night lines up with the desired date.
  • To find a constellation note which horizon it is closest to and orient the Star Holder so that horizon is near is at the bottom, making that part of the sky to look right-side up.
  • Constellations higher in the sky (closer to the zenith) are closer to the center of the map
Posted in DIY, For Fun or Interest, Gadgets, Hobbies and Other Interests | Comments Off on DIY Star Chart (planisphere)

ITU’s Facts and Figures, now data for 2013 is available

ITU is publishing yearly Facts and Figures estimates within the ICT Industry.
ITUT-facts2013-2

For example, the number of mobile subscriptions, see below.

ITUT-facts2013-1

Internet user’s proportion, see below, etc. etc.

ITUT-facts2013-3

Posted in ICT News, ITU-T | Comments Off on ITU’s Facts and Figures, now data for 2013 is available

Using ImageMagick to reveal existence of hidden steganographic messages with DIY IM-simpleGUI tool

Tools used

ImageMagick is a powerfull CLI tool for image processing. For different commands, see their www pages. The following commands are used in this blog:

  • compare
  • convert
  • montage

In addition ImageMagick contains image filters like Laplacian (IM, wikipedia), Sobel (IM, wikipedia) and Prewitt (IM, wikipedia). These filters are also used in steganography.

The hidden, secret, messages are embedded into the original PNG image by using some selected steganographic tools:

ImageMagick contains features to detect edges and to compare images, so it could be used to visualize how the secrect data is distributed over the image. (Naturally hash comparisons would indicated differences, but without showing where they are located)

Command line interface is practical for batch processing. However, for casual interactive testing, a GUI alternative can be comfortable. A simple GUI for ImageMagick can be done by AutoIt. The screenshot below shows the GUI made for this particular purpose.

IM-simpleGUI

 

Input Files

Original image is the Lenna 512*512 photo. The photo is widely used test image for processing algorithms.

Files hidden inside the lenna picture:

  • short.txt
    • 862 bytes
    • text extract from Lenna at wikipedia
  • Lenna in Wikipedia.pdf
    • 62 482 bytes
    • pdf printout from Lenna at wikipedia
  • sparky2012.png
    • 183 125 bytes
    • photo used in earlier blog

 

Result examples

Case 1 Applying filter for edge detection.

The images are: original and the applied Laplacian filter.

Lenna-laplace-concatenated

Case 2 Hidden Message

File short.txt is encrypted and hidden in original image, starting from the top. The images are: original, modified and the differences. In the differences image, it is visible that only the top part if affected, and the rest of the image is unchanged.

Lenna-short-DIIT-BlindHide-concatenated

 

Case 3 Hidden Message

File “Lenna in Wikipedia.pdf” is encrypted and hidden in original image using the Sobel filter. The images are: original, modified and the differences. In the differences image, it is visible that the changed pixels (white) are concentrated at the edges.

Lenna-wikipedia-DIIT-sobel

IM-simpleGUI tool

The source code is included in the IM-simpleGUI.zip package (hash by FileVerifier++):

  • favicon.ico: icon for the GUI
  • IM-simpleGUI.au3: the AutoIt based source code
  • IM-simpleGUI.exe: the executable compiled by AutoIt tools
  • IM-simpleGUI.ini: the main configuration file for the GUI

The tool is provided for learning purposes. It is kind of minimal example on how to develop a GUI for CLI tool.

IM-simpleGUI-ineditor

The source code contains example on howto:

  • use ini configuration file
  • define tooltip for controls
  • define menu structure
  • select file
  • define tool icon for the GUI
  • execute command and capture command output
  • use a function
  • use console printout for debugging

Example of the Imagemagick commands used in the tool are: (for details, please see source code)


compare -verbose -metric ae -compose Src -highlight-color White -lowlight-color Black C:\lenna\Lenna-orig-wikipedia.png C:\lenna\Lenna-sparky-openstego-random.png C:\lenna\Lenna-sparky-openstego-differences.png
C:\Windows\system32\cmd.exe /c convert C:\lenna\Lenna-orig-wikipedia.png -define convolve:scale='!' -bias 50% -morphology Convolve Laplacian:1 C:\lenna\Lenna-sparky-openstego-differences.png
C:\Windows\system32\cmd.exe /c convert C:\lenna\Lenna-orig-wikipedia.png -define convolve:scale='50%!' -bias 50% -morphology Convolve Sobel C:\lenna\Lenna-sparky-openstego-differences.png
C:\Windows\system32\cmd.exe /c convert C:\lenna\Lenna-orig-wikipedia.png -define convolve:scale='!' -bias 50% -morphology Convolve Prewitt C:\lenna\Lenna-sparky-openstego-differences.png

Note, The tool is provided in order for any modifications and learning. As it is, no support…

Posted in Anvanced Tools, Audio and Video, DIY, Recommended Free Tools, Security Training, Awareness and Reports, Tests, Tips | Comments Off on Using ImageMagick to reveal existence of hidden steganographic messages with DIY IM-simpleGUI tool

Flow diagram of payment card data, or personal data, in the cloud

The recent PCI DSS Information supplement “PCI DSS Cloud Computing Guidelines” emphasizes the same message as earlier guidelines like

They all emphasize that in order to protect data, one have to know where and when the data is used or stored.

Some highlights from the PCI DSS document:

  • Figure 3: How PCI DSS responsibilities may be shared between clients and CSPs.
  • Chp 4: Segmentation and Scoping
  • Appendices with samples:
    • Appendix A: Sample PCI DSS Responsibilities for Different Service Models
    • Appendix B: Sample Inventory
    • Appendix C: Sample PCI DSS Responsibility Matrix
    • Appendix D: PCI DSS Implementation Considerations

Related Links

Other Links

Posted in Cloud Security, Privacy, Security Management, Security Standardization and Practises, Security Training, Awareness and Reports | Comments Off on Flow diagram of payment card data, or personal data, in the cloud