Category: blog
-
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…
-
SMASH THE STACK LEVEL 5
Read more: SMASH THE STACK LEVEL 5still smashing 😀 level5@io:/levels$ ./level05 level5@io:/levels$ ./level05 a a level5@io:/levels$ echo one 😀 let’s see the source code level5@io:/levels$ cat level05.c #include #include int main(int argc, char **argv) { char…
-
SMASH THE STACK LEVEL4
Read more: SMASH THE STACK LEVEL4level 4 😀 level4@io:~$ cd /levels/ level4@io:/levels$ ./level04 Welcome level5 level4@io:/levels$ ./level04 d Welcome level5 level4@io:/levels$ ./level04 $(python -c “print ‘A’ * 1024”) Welcome level5 so i will read the…
-
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.…
-
SMASH THE STACK LEVEL3
Read more: SMASH THE STACK LEVEL3pretty good level I learned a few new stuff so lets hit the game level3@io:/levels$ ./level03 level3@io:/levels$ ./level03 9 level3@io:/levels$ ./level03 $(python -c “print ‘a’ * 10000 “) Segmentation fault…