Skip to main content

Posts

Arabic Threat Group Attacking Thousands of Victims Globally

Kaspersky Lab security expert Dmitry Bestuzhev presents research on “Desert Falcons” at the Kaspersky Lab Security Analyst Summit on Feb. 17. CANCUN, Mexico  – Kaspersky Lab Security Analyst Summit – Threat actors with Arabic roots are targeting multiple high profile organizations and individuals from Middle Eastern countries, according to a new report from Kaspersky Lab. The attack group, dubbed “Desert Falcons” by the security firm, appears to be the first known Arabic cyber-espionage group to develop and run full-scale cyber-espionage operations, researchers said. Details of the campaign, which has been active for at least two years, were unveiled at Kaspersky Lab's Security Analyst Summit in Cancun, Mexico on Tuesday. According to Kaspersky researchers, the peak of their activity occurred at the beginning of 2015, and so far, the attackers have been able to steal more than one million files from more than 3,000 victims in over 50 countries. Kaspersky Lab began its

Cyber Security Week, 2015

In the same week as the Global Conference on CyberSpace (GCCS2015) and One Conference, a Cyber Security Week (13 till 17 April) will be held at the Campus of The Hague Security Delta, the largest security cluster in Europe. Aim is to show the world the innovative strength of The Netherlands created by the triple helix cooperation within the security cluster. During this week, The Hague Security Delta will be putting on an action-packed programme consisting of workshops, debates, networking events, and many  other side-events.  And, of course, the Cyber Security Week 2015 just wouldn't be complete without an Innovation Room with demonstrations of innovations in cyber security. To create a unique programme for our visitors from around the world, we are looking for participation of  businesses, governments, and knowledge institutions working on Cyber Security.   Cyber Security Week Website A special website will be launched by the end of February. It will provide an overv

Railfence Cipher

The rail fence cipher (also called a zigzag cipher) is a form of transposition cipher. It derives its name from the way in which it is encoded. In the rail fence cipher, the plaintext is written downwards and diagonally on successive "rails" of an imaginary fence, then moving up when we reach the bottom rail. When we reach the top rail, the message is written downwards again until the whole plaintext is written out. The message is then read off in rows. The file is available below railfence.java Feb 11, 2015

Play Fair Cipher (Version 2-with some corrections)

In my last post, I attached a file ( PlayFairCipher.java ) as my Play Fair Cipher Crypto System. But, I found out that it has an error when converting single row or column-wise words (E.g. WORD, PICO). Hence, I re-edited the file and my second version of it. Now it was working as expected. File : PlayFairCipherv2.java Comments are welcome.

Play Fair Cipher

The best-known multiple-letter encryption cipher is the Play fair, which treats diagrams in the plaintext as single units and translates these units into ciphertext diagrams.3 The Playfair algorithm is based on the use of a 5 × 5 matrix of letters constructed using a keyword. This cipher was actually invented by British scientist Sir Charles Wheatstone in 1854, but it bears the name of his friend Baron Playfair of St.Andrews, who championed the cipher at the British foreign office. We had to create our own version of PlayFairCipher. I used Java as my Programming language and created this file  PlayFairCipher.java . My Cipher's Key is "WORD". I used 'I' instead of 'J' and 'X' for inserting within double letters

Doubts in C++ to JAVA conversion

In my Numerical Computing I recently created a C++ program to normalize a number to a certaing number. The program is  Normalization.cpp Then, I converted it to a JAVA program. But, I got an liitle bit of problem when converting it. If anyone know the solution, please help me. The converted ptogram is  RelativeError.java