Facebook
From Tiny Mockingjay, 5 Years ago, written in Python.
">

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

from

A PHP Error was encountered

Severity: Notice

Message: Trying to access array offset on value of type bool

Filename: view/view.php

Line Number: 33

- view diff
Embed
Download Paste or View Raw
Hits: 395
  1. import hashlib
  2. import time
  3. from random import randint
  4. konpie = "Konrad Pierzynski (442333)\n"
  5.  
  6. p = 1
  7. hashlast = '000701ade3e5ab9ccbb7e74ffef6d100'+'\n'
  8. while 1:
  9.         while 1:
  10.                 str = ''
  11.                 for k in range(32):
  12.                         str = str + hex(randint(0,15))[2:]
  13.                 str = str + '\n'
  14.                 hash = hashlib.md5( (konpie+hashlast+str).encode('utf-8') ).hexdigest()
  15.                 if hash[0:2] == '00' and hash[30:32] == '00':
  16.                         print( repr(p) )
  17.                         f = open( (repr(p)+'.txt'),'w+')
  18.                         f.write(konpie+hashlast+str)
  19.                         f.close()
  20.                         break
  21.         p = p + 1
  22.         hashlast = hash+'\n'
  23.  
  24.  

Replies to Re: DlaCiembie rss

Title Name Language When
Re: Re: DlaCiembie Smelly Gorilla python 5 Years ago.