Run VLC as root in kali linux 2.0

This error says straight forward vlc can not be run as root privileged user. What to do now? Don’t be panic. Here is the hacked solution :-D
vi /usr/bin/vlc
search for geteuid and replace it with getppid

Save file & Exit.

Now it should work, try to run it again ;-)

 

courtesy: http://www.hackersgarage.com/

Add permanent static route in Windows 7

What is a Routing Table?

A routing table is table that contains dictates who and what interface traffic should be sent to depending on the destination IP address. It is the primary component in the configuration of routers to ensure internetwork connectivity as packets are routed to their destination. For a Windows machine it is used to override the default gateway configured so you can introduce multiple networks and have the two networks be able to communicate with each other.

Display Current Routes

On the command prompt window type route print

This will display all the routes currently available on your system

Add a permanent route

Syntax: route  -p add <destination subnet> mask <Destination subnet mask> <Your gateway>

route -p add 10.1.0.0 mask 255.255.255.0 10.0.0.254

here -p is for permanent route.

 

to delete a route the command is

route delete <destination subnet>
eg.
route delete 172.16.8.0

 

WordPress- how to hide sidebar in front page

wordpress logo

Screen Shot 2015-05-16 at 10.49.58 AMWhile sidebar is important, sometimes it is not necessary for the homepage.

In this article, we will share how you can hide the sidebar on your WordPress homepage.

 

you can simply make the change by using the Theme file editor  below

First  Click Appearence ->Editor ,

then open your index.php (Main Index Template) and locate the following code:

<?php get_sidebar(); ?>

Then Replace the code with:

<?php if (!is_front_page()) {
get_sidebar();
} ?>

And thats it. Now your Front Page will NOT have the sidebar.

Screen Shot 2015-05-16 at 10.50.24 AM

solve periodic mouse lagg on elementary OS (Ubuntu flavor)

though my CPU ideal time is bery high, the mouse lagg or jerk most of the time
here is my top looks like

top

tried apt-get update and upgrade but no luck,

got this solution over google search and seems helpful.

Fix:

 

sudo -i
echo N> /sys/module/drm_kms_helper/parameters/poll
echo "options drm_kms_helper poll=N">/etc/modprobe.d/local.conf


it is moving much faster and better, "PLEASE DONT CHANGE MOUSE SETTINGS AFTER THIS"

Download: The Database Hacker’s Handbook: Defending Database Servers (a $50 value) FREE

database hacking handbook

Today I wanna give this Awesome book to you guys for free.

In The Database Hacker’s Handbook, four of the world’s top security experts teach you to break into and defend the seven most popular database servers. The bad guys already know all the information in this book. You need to know it too.
Identify and plug the new holes in Oracle and Microsoft(r) SQL Server
Learn the best defenses for IBM’s DB2(r), PostgreSQL, Sybase ASE, and MySQL(r) servers
Discover how buffer overflow exploitation, privilege escalation through SQL, stored procedure or trigger abuse, and SQL injection enable hacker access
Recognize vulnerabilities peculiar to each database
Find out what the attackers already know

Download

 

WP Twitter Auto Publish Powered By : XYZScripts.com