Posts

Showing posts from January, 2015

How to add Custom Drivers to VMware Esxi iso image !

Image
How to add Custom Drivers to VMware Esxi iso image ! Hi friends once i have try to install VMware Esxi in my old pc . but it failed because absence of network driver in it , so i have to customise Esxi image and add driver to it For this you will need ESXi-Customizer Download from this link  used this driver  vmware-bootbank-net-r8168.vib Run ESXi-Customizer-v2.7.2 as Admin This will extract to a folder open it and run "ESXi-Customizer.cmd " as Admin Brwose VMware.iso Browse Destination Browse Driver Browse VMware.iso Run Enjoy 

NoSql Injection

JavaScript (server-side) injection vulnerabilities are not limited. NoSQL database engines that process JavaScript containing user-specified parameters can also be vulnerable.  For example, MongoDB supports the use of JavaScript  functions for query specifications etc. Since MongoDB databases do not have strictly defined database schemas, using JavaScript for query syntax allows developers to write complex queries against disparate  document structures. For example,we have a MongoDB collection that contains some documents representing books, some documents representing movies, and some documents representing music albums.  This JavaScript query function  will select all the documents in the specified collection that were either written, filmed, or recorded in the specified time: function() { var search_time = input_value; return this.publishingTime == search_time || this.filmingTime == search_Time || this.recordingTime == search_Time; } If the application developer wer