Category: Python
-
Python Progress Bar
Read more: Python Progress Barsimple standalone bar u can implement it on your code it will show a progress bar of items range from time import sleep import sys for i in range(21): sys.stdout.write(‘\r’)…
-
Duplicate File Finder By MD5SUM
Read more: Duplicate File Finder By MD5SUMHello this is a simple script to find the duplicated files by md5sum so if u have 2 files with the same content but with different names, u still can catch…
-
TrueCrypt Password bruteforce
Read more: TrueCrypt Password bruteforcehello, guys, this script will simply mount the container with the password form the given password list #!/usr/bin/env python #TrueCrypt Crack Passowrd Based In Dic Attack #Author : N1X import…
-
Django Notes
Read more: Django NotesORM Notes objects.all() objects.all().count() objects.filter(published=True).count() objects.filter(published=True).exists() objects.filter(published=True)[:2] objects.filter(published=True).values(‘title’,’created’)[:2] objects.filter(published=True).order_by(‘created’) objects.filter(published=True).order_by(‘-created’) objects.filter(published=True, created__gt=datetime(2011,05,01)) objects.filter(published=True, created__lt=datetime(2011,05,01)) objects.filter(published=True, created__lt=datetime(2011,05,01)).count() objects.filter(published=True, created__lt=datetime(2011,05,01)).order_by(‘id’) objects.filter(published=True, created__year=2011.order_by(‘id’) objects.filter(published=True, created__month=5, created__year=2011.order_by(‘id’)
-
Automatic flight ticket script
Read more: Automatic flight ticket scriptpython script to demonstrate the splinter library this script keep searching till finding a ticket and book it 🙂 rest and wait your reservation number
-
Bitcoin Speech Price Tracker
Read more: Bitcoin Speech Price Trackersimple python script to bitcoin price speech is the target price reached it takes argument 1 as a target price simple but still useful to monitor bitcoin price via speech…
-
underc0de 3 WalkThrough
Read more: underc0de 3 WalkThroughloaded the virtual machine and run netdiscover to get the machine IP oot@n1x:~# netdiscover Currently scanning: 192.168.39.0/16 | Screen View: Unique Hosts 4 Captured ARP Req/Rep packets, from 4 hosts.…
-
Script : MySQL Create Database UTF-8 with user and password
Read more: Script : MySQL Create Database UTF-8 with user and passwordwe do create many databases every day and i love UTF-8 data formate so i decided to make something simple and save my time here is the syntax to create a…