Tuesday, 30 August 2016

sql2csv converter python

This script converts .sql files to .csv files so they’re easily readable . It also has the ability to simply list tables from .sql file and can also list columns from the specified table .  so without further ado lets see some screenshots of the script in action .

  • TL;DR

We’ll change this

 sql2csv_python_virkid_5

into this

sql2csv_python_virkid_4

Cool eh ?

  • Screenshots

 

sql2csv_python_virkid

obligatory help screen

sql2csv_python_virkid_1

listing tables of the database

sql2csv_python_virkid_2

listing columns of the specified table  (courses in this case)

sql2csv_python_virkid_6

Dumped records from the the specified table

 

u should now have a file called Db_table.csv like

sql2csv_python_virkid_3

and it can be opened using any CSV file viewer .

  • Code


Sunday, 28 August 2016

MYSQL Db dump tool tbl-xtract

Tbl-Xtract is a script to dump huge databases Quickly . It can dump 5 thousand records in one request (Quite fast huh ? ) . It also supports Post SQLi and Custom limit . the default is 5 thousand . there’s also the handy –A for Apostrophe if required
  • Usage
Using the script requires a bit of work in that u have to know the total columns .. the vulnerable column .. the table name and the columns to dump . Having all that info at hand you just run the script using
python –c Total_columns –v Vulnerable_column –t Table_Name –n column_names 
  • Screenshots
tbl_xtract_python_virkid
Help text
tbl_xtract_python_virkid_1
in Action
tbl_xtract_python_virkid_2
Aha! The Dump File
tbl_xtract_python_virkid_3
Delicious info!
  • Code

Wednesday, 24 August 2016

Cricket Notifications Autoit

This is a bit different as I usually code in Python . But Autoit is another great language that came to my attention because of it’s low executable size and feature richness . I’m learning Autoit yet & this is probably the first useful (?) app i coded . It’s a Cricket Score notification app . It checks for Live matches of PAKISTAN and if there is a live match then it pops a tiny notification window with a match summary at 10 seconds interval .
  • Screenshots
cricket_notification_virkid_autoit
initial window
cricket_notification_virkid_autoit_1
Live Match of Pakistan is found
cricket_notification_virkid_autoit_2
Live Match Not not found
cricket_notification_virkid_autoit_3
score Window
  • Program Link
Cricket.zip

It’s tested on windows XP & windows 7 Please let me know if you face any problems

Monday, 22 August 2016

Kyuubi Reverse Admin Finder (Updated)

Kyuubi is a Reverse Admin Finder . It finds all the domains on a specific host using yougetsignal and then tries to find the Admin Panels of the domains on target host . It’s Multi-Threaded and has proxy support as well

  • Whats New ?
  • Script now goes over all the admins in the list instead of the first one
  • Improved JSON parsing 

  • Usage
Usage is pretty simple & self explanatory you can just type
python script.py  -h
to get the help text
  • Screenshots
kyuubi_reverse_admin_finder_virkid
Demo Execution with (tor) proxy , 5 threads and connection timeout of 3 Seconds
kyuubi_reverse_admin_finder_virkid_2
Script running and finding admin panels

Sunday, 21 August 2016

Symlink Bypass Script

So today I'll share the first useful script i coded .
It's a symlink script . unlike other symlink scripts this script doesn't need permission to read
/etc/named.conf
  • Usage
Usage is as simple as uploading the script and then executing
python script.py
  • Screenshots
kyuubi_symlink_python_virkid
Executed on server
kyuubi_symlink_python_virkid_1
Symlink Index
  • Code