Powered By Blogger

Friday, 1 July 2011

MSRIT Students develop 110km / litre Engine


Have you ever imaged of a two-wheeler that runs on a diesel engine? Four engineering students from Bangalore have developed a diesel bike that gives a mileage of 110km/liter – a challenging task accomplished by the innovative brains.
A magnificent idea that can be of a great help to the common man who struggles with the never-ending fuel price hikes, the young brains from the at the M S Ramaiah Institute of Technology took the challenge of developing a two wheeler diesel engine with automatic gear and automatic clutch and have successfully carried out the project.
Guided by their project guide Dr. S V Prakash, four mechanical engineering students namely Naveen V V, Tony Paul, Nadeem Anwar and Sanjay Bhushan decided develop a diesel-run two-wheeler as our final year project. Fitting a Bullet engine to Kinetic Blaze, they had to do a lot of alterations. While spending four months on the project with various workshops in Bangalore and Coimbatore, they reduced 325cc engine to 200cc, flywheel weight reduced to 7kg and power reduced to 3.5 hp from 6.5 hp apart from many other alteration works.
“We have spent almost 72 thousand on the production of this prototype and with mass production, the cost would be around 55 to 60 thousand,” said Nadeem Anwar, a member of the team.
The highlight of the innovative work is that it gives a mileage of 110km/liter and it reduces travel expense to a great degree as diesel engine runs at 40 paise per km and petrol engine runs at Rs. 1.70 per km. The vehicle offers a smooth ride with automatic gear and clutches and is less polluting compared with other diesel-engine vehicles. In addition, the life of a diesel engine is generally about twice as long as that of a petrol engine.
Dr. S V Prakash, the project guide who has been a great help to the young students to materialize their dream project, said India’s largest engineering and construction conglomerate ‘Kirloskar Group’ has shown interest in the technology and has offered to further assistance to the project.

Introduction to the Premier Pen Testing Information Security Certification (Advanced Ethical Hacking)


EC Council Certified Security Analyst, ECSA an advanced ethical hacking training certification that complements the Certified Ethical HackerCEHcertification by exploring the analytical phase of ethical hacking. While the Certified Ethical Hacker  certification exposes the learner to hacking tools and technologies, the Certified Security Analyst course takes it a step further by exploring how to analyze the outcome from these  tools  and  technologies. Through groundbreaking network penetration testing methods and techniques, this pen testing computer security  certification helps students perform the intensive assessments required to effectively identify and mitigate risks to the information security of the infrastructure.

This makes the Certified Security Analyst "Pen Testing" certification a relevant milestone toward achieving EC Council’s Licensed penetration Tester, which also ingrains the learner in the business aspect of network penetration testing. The Licensed Penetration Tester standardizes the knowledge base for network penetration testing professionals by incorporating the best practices followed by experienced experts in the field. 

The objective of Certified Security Analyst “pen testing” certification is to add value to experienced Information security professionals by providing computer security training that will help them analyze the outcomes of their Vulnerability AssessmentsNetwork Penetration Testing Training leads the learner into the advanced stages of ethical hacking.

CEH by EC-Council: Certified Ethical Hacker and Penetration Testing

To beat a hacker, you need to think like one! This is exactly what this class will teach you. It is the pinnacle of the most desired information security training program any information security professional will ever want to be in.
The definition of an Ethical Hacker is very similar to a Penetration Tester. The Ethical Hacker is an individual who is usually employed with the organization and who can be trusted to undertake an attempt to penetrate networks and/or computer systems using the same methods as a Hacker. Hacking is a felony in the United States and most other countries. When it is done by request and under a contract between an Ethical Hacker and an organization, it is legal. The most important point is that an Ethical Hacker has authorization to probe the target.

This class will immerse the students into a hands-on environment where they will be shown how to conduct ethical hacking. They will be exposed to an entirely different way of achieving optimal information security posture in their organization; by hacking it! They will scan, test, hack and secure their own systems. The lab intensive environment gives each student in-depth knowledge and practical experience with the current essential security systems. Students will begin by understanding how perimeter defenses work and then be lead into scanning and attacking their own networks, no real network is harmed. Students then learn how intruders escalate privileges and what steps can be taken to secure a system. Students will also learn about Intrusion Detection, Policy Creation, Social Engineering, DDoS Attacks, Buffer Overflows, Virus Creation and others. 
 
When a student leaves this intensive 5 day class they will have hands on understanding and experience in Ethical Hacking.

But I'm not always behind another proxy! How can I switch settings?



Oh, good question! I couldn't find any autoproxy.pac style approach for this, so I opted for a fairly basic approach. I created two config files,config.txt.work (with forwarding and accept-intercepted-requests on) and config.txt.nofoward (which is just the default config file for me). I then wrote a little PowerShell script to switch between these (use at your own risk! :)):
$location=$args[0]
$target=$env:ProgramFiles + "\Privoxy\config.txt"
if ($location -eq "work") {
    $source=$target + ".work"
} else {
    $source=$target + ".noforward"
}
cp -force "$source" "$target"
Based on the argument given to the script, this will just copy the required configuration file over Privoxy's config.txt file. I then setup two shortcuts pointing to this script, one to turn on work mode and the other to turn it off. The shortcut target looks something like this:
C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe -noexit "C:\Users\davesquared\Documents\Applications\PrivoxySwitch\PrivoxySwitch.ps1" work
You don't need the -noexit option, I just had it in for debugging. Note the command ends with the "work" argument, so the other shortcut should have "noforward" or something similar. Finally I set both shortcuts to run as Administrator so it has permission to copy the files. I've got the shortcuts in a location indexed by Launchy, so now I can just activate Launchy, type "switch work", ok the admin prompt, and I'm in work mode.

Is it worth it?

Yes, yes it is. Chrome is so nice. And you can do lots of fancy stuff with Privoxy if you delve into it. Have a quick glance through the Privoxy Quickstart and give it a