Category: blog

  • Python Progress Bar

    simple 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’)…

    Read more: Python Progress Bar
  • Duplicate File Finder By MD5SUM

    Hello 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…

    Read more: Duplicate File Finder By MD5SUM
  • TrueCrypt Password bruteforce

    hello, 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…

    Read more: TrueCrypt Password bruteforce
  • Django Notes

    ORM 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’)

    Read more: Django Notes
  • Automatic flight ticket script

    python script  to demonstrate  the splinter library this script keep searching till finding a ticket and book it  🙂 rest and wait your reservation number

    Read more: Automatic flight ticket script
  • Bitcoin Speech Price Tracker

    simple 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…

    Read more: Bitcoin Speech Price Tracker
  • SMASH THE STACK LEVEL 5

    still 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…

    Read more: SMASH THE STACK LEVEL 5
  • SMASH THE STACK LEVEL4

    level 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…

    Read more: SMASH THE STACK LEVEL4
  • underc0de 3 WalkThrough

    loaded 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.…

    Read more: underc0de 3 WalkThrough
  • SMASH THE STACK LEVEL3

    pretty 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…

    Read more: SMASH THE STACK LEVEL3