Monday, November 17, 2014

Android 5.0 (Lollipop) is ready for Nexus 5


Form today Android Lollipop(Android 5.0) update is available for Nexus 5 smart phones. Today I installed the update. It seems the Gallery disappeared and only Photo feature remained. It seems Google is very interested to upload all of out photos on the cloud ;) However you can disable the sync. There are many new features and major graphical change which soon I might send a post about them.
This update is available for Nexus 4, Nexus 5, Nexus 7, and Nexus 10.

System update is available
System update is available

Wednesday, November 5, 2014

OWASP Malaysia Chapter Meeting

Tobias Gondrom (OWASP Foundation)


Yesterday I attended an event by OWASP Malaysia Chapter which conducted at Advanced Informatics School, UTM. Few security professional had interesting talks. 
First, Prof. Shamsul opened the session by a talk about UTM AIS and its activities in field of Information Security. Next Mr. Tobias Gondrom from OWASP foundation, introduced OWASP activities and project, then he had a talk on injection flaws. He covered SQL injection and XSS. Then, Wann Senn present his talk about the "Missing Link". Next, Mr. Amir Haris Ahmad presented an interesting speech on DNS security. And finally, Mr. Megat Muazzam Abdul Mutalib from CyberSecurity Malaysia,

Run Cron Jobs on Windows


Cron is name of a tool in Unix based operating systems. Cron is a time based scheduler which helps to run specific command on a specific date and time. Basically it used for automation of a service or software. For instance in a web application,if the developer want to send an email to the users everyday, this action can be automated using Cron jobs. Otherwise somebody need to call (run) the webpage everyday. In Linux server, user simply write a PHP webpage for sending the email and ask Cron to run it everyday on a specific time.
Now the problem with windows is that, you don't have access to Cron. But no worries here in this article we will teach you how to simulate the Cron in Windows environment.


  • First, right click on your favorite browser icon, and select properties. 
  • Second, copy the address in "Target" field.
  • Next, open the notepad and paste the address that you copied in middle of pair of double quotation signs.
  • Then, add a white space, and write the address of your PHP/ASP page which you want to run on a spspecificchedule in middle of pair of double quotation sign. (example below)
  • "C:\Users\User\AppData\Local\Google\Chrome\Application\chrome.exe" "http://localhost/myproject/send_mail.php"
  • Now, save the file with your desire name but with ".bat" extension. for instance cron.bat 
  • Go to "Control Panel" and open "Schedule tasks".
  • Click on "Create Basic Task"
  • Chose a name for your task (example: "SendMail Cron") and click Next.
  • Chose the timing schedule for the calling of the web page. And click Next.
  • In "Action" part, chose "Run a program" click next.
  • Now select the batch file which you created sooner (ex "cron.bat")
  • Finish
Now "Windows task scheduler" will run the batch file ("cron.bat") on that specific date and time which you adjusted. Consequently the batch file call your browser with the address of the web page which should be run.

Social Networks Sharing